diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md
new file mode 100644
index 000000000..bfc43dbcd
--- /dev/null
+++ b/.github/copilot-instructions.md
@@ -0,0 +1,137 @@
+# RobotCode Development Guidelines
+
+> Last Updated: 2025-01-25
+> Version: 1.0
+> Override Priority: Highest
+
+
+
+ - Process development patterns in sequential order
+ - Use exact patterns and templates provided
+ - Follow MUST/ALWAYS/REQUIRED directives strictly
+ - Never deviate from established architectural patterns
+
+
+ - encoding: UTF-8
+ - line_endings: LF
+ - indent: 2 spaces (Python) / 4 spaces (TypeScript)
+ - package_structure: packages/ for Python, vscode-client/ for TypeScript
+
+
+
+RobotCode is a comprehensive Robot Framework toolkit that provides IDE extensions (VS Code, IntelliJ), CLI tools, and Language Server Protocol implementation. It uses Robot Framework's native parser for full compatibility while extending it with modern development tools like DAP debugging, test discovery, and multi-workspace support.
+
+## Agent Communication Guidelines
+
+### Core Rules
+
+- **REVIEW/ANALYZE/CHECK/EXAMINE:** READ-ONLY operations. Provide analysis and feedback, NEVER make changes
+- **IMPLEMENT/ADD/CREATE/FIX/CHANGE:** Implementation required. ALWAYS ask for confirmation and wait for explicit user choice before proceeding
+- **IMPROVE/OPTIMIZE/REFACTOR:** Always ask for specific approach before implementing
+- **MANDATORY WAIT:** When presenting implementation options, ALWAYS wait for explicit user choice before proceeding
+
+### Communication Flow
+
+1. **Recognize Intent:** Review request vs. Implementation request?
+2. **For Reviews:** Analyze and suggest, but don't change anything
+3. **For Implementation:**
+ - ALWAYS ask for confirmation before implementing
+ - If multiple approaches exist, present numbered options A), B), C), D), ...)
+ - ALWAYS end with "Other approach"
+ - WAIT for user response before proceeding
+ - NEVER start implementation until user explicitly chooses an option
+4. **Critical Rule:** When presenting options, STOP and wait for user input. Do not continue with any implementation.
+
+## Tech Stack
+
+### Core Technologies
+- **Language Server:** Python 3.8-3.13 with asyncio
+- **Protocol:** Language Server Protocol (LSP) + Debug Adapter Protocol (DAP)
+- **Parser:** Robot Framework native parser for full compatibility
+- **Build System:** Hatch for package management and testing
+
+### VS Code Extension
+- **Language:** TypeScript
+- **Pattern:** Manager-based lifecycle with proper disposal
+- **Dependencies:** @vscode/test-electron, webpack, esbuild
+
+### IntelliJ Plugin
+- **Language:** Kotlin
+- **Integration:** LSP4IJ for Language Server communication
+- **Build:** Gradle with kotlin-gradle-plugin
+
+### Testing Matrix
+- **Python Versions:** 3.8, 3.9, 3.10, 3.11, 3.12, 3.13
+- **Robot Framework:** 5.0, 6.0, 6.1, 7.0, 7.1, 7.2, 7.3
+- **Test Framework:** pytest with regtest2 for snapshot testing
+
+## General Coding Guidelines
+
+### Clean Code Principles
+- **Readability First:** Code is read more often than written - prioritize clarity over cleverness
+- **Meaningful Names:** Use descriptive names for variables, functions, and classes that express intent
+- **Single Responsibility:** Each function/class should have one reason to change
+- **Small Functions:** Keep functions focused and under 20 lines when possible
+- **No Magic Numbers:** Use named constants or enums instead of hardcoded values
+- **Avoid Deep Nesting:** Use early returns and guard clauses to reduce cyclomatic complexity
+
+### Code Organization
+- **Consistent Structure:** Follow established patterns within each package
+- **Separation of Concerns:** Keep business logic separate from infrastructure code
+- **Interface Segregation:** Create focused interfaces rather than monolithic ones
+- **Dependency Inversion:** Depend on abstractions, not concrete implementations
+
+### Error Handling
+- **Explicit Error Handling:** Use proper exception/error types and hierarchies
+- **Fail Fast:** Validate inputs early and provide clear error messages
+- **Resource Management:** Use appropriate resource cleanup patterns (try-with-resources, RAII, etc.)
+- **Logging:** Provide meaningful log messages at appropriate levels
+
+### Documentation Standards
+- **Function Documentation:** All public functions/methods must have comprehensive documentation
+- **Type Annotations:** Use static type checking where available (TypeScript, Python type hints, etc.)
+- **README Files:** Each package/module should have clear usage documentation
+- **Inline Comments:** Explain *why*, not *what* - the code should be self-documenting
+
+### Testing Requirements
+- **Test Coverage:** Maintain high test coverage with meaningful test cases
+- **Test Naming:** Use descriptive test names that explain the scenario
+- **Test Structure:** Organize tests clearly with setup, execution, and verification phases
+- **Test Independence:** Each test should be able to run in isolation
+
+### Performance Considerations
+- **Async Patterns:** Use proper asynchronous programming patterns where applicable
+- **Resource Efficiency:** Minimize memory allocations and resource usage in hot paths
+- **Lazy Loading:** Load resources only when needed
+- **Caching Strategy:** Implement appropriate caching for expensive operations
+
+## Architecture Patterns
+
+### Package Structure
+```
+packages/
+├── core/ # Base utilities and shared functionality
+├── language_server/ # LSP implementation for IDE integration
+├── debugger/ # Debug Adapter Protocol implementation
+├── runner/ # Enhanced Robot Framework execution tools
+├── analyze/ # Static code analysis and validation
+├── jsonrpc2/ # JSON-RPC communication layer
+├── plugin/ # Plugin system foundation
+├── repl/ # Interactive Robot Framework shell
+├── repl_server/ # REPL server for remote connections
+├── robot/ # Robot Framework integration utilities
+└── modifiers/ # Code transformation tools
+
+vscode-client/ # VS Code extension (TypeScript)
+├── extension/ # Main extension code with manager pattern
+└── rendererLog/ # Log rendering components
+
+intellij-client/ # IntelliJ/PyCharm plugin (Kotlin)
+├── src/main/kotlin/ # Plugin implementation via LSP4IJ
+└── build.gradle.kts # Gradle build configuration
+```
+
+### Multi-Platform Support
+- **Python CLI:** Cross-platform command-line tools
+- **VS Code:** TypeScript extension with manager pattern
+- **IntelliJ:** Kotlin plugin via LSP4IJ bridge
diff --git a/.github/instructions/kotlin-intellij.instructions.md b/.github/instructions/kotlin-intellij.instructions.md
new file mode 100644
index 000000000..21a835163
--- /dev/null
+++ b/.github/instructions/kotlin-intellij.instructions.md
@@ -0,0 +1,77 @@
+---
+description: Kotlin IntelliJ Plugin Development Rules for RobotCode
+applyTo: intellij-client/**
+---
+
+# Kotlin IntelliJ Plugin Development Rules
+
+
+
+ - Process XML blocks first for structured data
+ - Execute instructions in sequential order
+ - Use exact patterns and templates provided
+ - Follow MUST/ALWAYS/REQUIRED directives strictly
+
+
+ - encoding: UTF-8
+ - line_endings: LF
+ - indent: 4 spaces
+ - plugin_structure: intellij-client/src/main/kotlin/
+
+
+
+## Plugin Architecture
+
+### LSP4IJ Integration
+- **Language:** Kotlin
+- **Integration:** LSP4IJ for Language Server communication
+- **Build:** Gradle with kotlin-gradle-plugin
+
+### Plugin Structure
+```
+intellij-client/
+├── src/main/kotlin/ # Plugin implementation via LSP4IJ
+└── build.gradle.kts # Gradle build configuration
+```
+
+## Development Commands
+
+### Building & Packaging
+```bash
+cd intellij-client && gradle buildPlugin # IntelliJ plugin
+```
+
+## LSP4IJ Best Practices
+
+### Language Server Communication
+- **IMPLEMENT** proper LSP4IJ bridge patterns
+- **HANDLE** multiple workspace folders with error isolation
+- **MAINTAIN** robust communication with RobotCode language server
+
+### Multi-Platform Consistency
+- **ENSURE** consistent behavior with VS Code extension
+- **MAINTAIN** unified configuration approach
+- **DOCUMENT** platform-specific differences where necessary
+
+## Configuration System
+
+### robot.toml Integration
+- **SUPPORT** robot.toml parsing and profile management
+- **VALIDATE** configuration options consistently with other platforms
+- **MAINTAIN** cross-platform configuration compatibility
+
+## Error Handling Standards
+
+### Plugin Lifecycle
+- **IMPLEMENT** proper plugin lifecycle management
+- **HANDLE** startup and shutdown gracefully
+- **MANAGE** resources properly to prevent memory leaks
+
+### LSP Communication
+- **ISOLATE** error handling per workspace
+- **MAINTAIN** robust communication with language server
+- **HANDLE** connection failures gracefully
+
+---
+
+*These Kotlin development rules ensure consistent, high-quality IntelliJ plugin development.*
diff --git a/.github/instructions/python-development.instructions.md b/.github/instructions/python-development.instructions.md
new file mode 100644
index 000000000..527b86194
--- /dev/null
+++ b/.github/instructions/python-development.instructions.md
@@ -0,0 +1,70 @@
+---
+description: Python Development Rules for RobotCode
+applyTo: **/*.py
+---
+
+# Python Development Rules
+
+
+
+ - Process XML blocks first for structured data
+ - Execute instructions in sequential order
+ - Use exact patterns and templates provided
+ - Follow MUST/ALWAYS/REQUIRED directives strictly
+
+
+ - encoding: UTF-8
+ - line_endings: LF
+ - indent: 2 spaces
+ - package_structure: packages/ directory
+
+
+
+## Package Development
+
+### Package Structure
+- **ALWAYS** develop in packages/ directory
+- **REQUIRED** follow package-based architecture
+- **MUST** use proper __init__.py files for package imports
+
+### Code Style Standards
+- **Formatting:** we use ruff for formatting
+- **Type Hints:** Required for all APIs
+- **Docstrings:** Google style for modules, classes, and functions, but follows clean code principles
+- **linting:** use ruff for static analysis and mypy for type checking
+
+
+### Code Quality
+```bash
+hatch run lint:all # All linting checks (black, isort, flake8)
+hatch run lint:fix # Auto-fix style issues
+```
+
+### Testing Requirements
+
+### Python Interpreter
+- **ask your tools** wich python interpreter to use for the project/workspace
+
+### Matrix Testing
+- **COMPREHENSIVE** testing across Python 3.8-3.13
+- **MATRIX** testing with Robot Framework 5.0-7.3
+- **INTEGRATION** tests in tests/robotcode/ with real scenarios
+- **SNAPSHOT** testing with pytest regtest2
+
+### Test Execution
+
+**IMPORTANT**use the correct Python environment selected in your IDE
+
+- **USE** `pytest .` to run unit tests,
+- **USE** `pytest --regtest2-reset` to update snapshots
+- **RUN** specific environments: `hatch run test.rf70.py311:test`
+- **COVERAGE** reporting with `hatch run cov`
+
+## Multi-Platform Consistency
+- **ENSURE** consistent behavior across VS Code and IntelliJ
+- **MAINTAIN** unified configuration approach
+- **DOCUMENT** platform-specific differences
+
+---
+
+*These Python development rules ensure consistent, high-quality code across all RobotCode packages.*
diff --git a/.github/instructions/typescript-vscode.instructions.md b/.github/instructions/typescript-vscode.instructions.md
new file mode 100644
index 000000000..2f200f9b3
--- /dev/null
+++ b/.github/instructions/typescript-vscode.instructions.md
@@ -0,0 +1,130 @@
+---
+description: TypeScript VS Code Extension Development Rules for RobotCode
+applyTo: vscode-client/**/*.ts
+
+---
+
+# TypeScript VS Code Extension Development Rules
+
+
+
+ - Process XML blocks first for structured data
+ - Execute instructions in sequential order
+ - Use exact patterns and templates provided
+ - Follow MUST/ALWAYS/REQUIRED directives strictly
+
+
+ - encoding: UTF-8
+ - line_endings: LF
+ - indent: 4 spaces
+ - extension_structure: vscode-client/extension/
+
+
+
+## Extension Architecture
+
+### Manager Pattern
+- **MUST** implement disposal pattern for all managers
+- **REQUIRED** proper lifecycle management
+- **ALWAYS** register disposables in constructor
+
+### Manager Template
+```typescript
+class XyzManager {
+ private _disposables: vscode.Disposable;
+
+ constructor() {
+ this._disposables = vscode.Disposable.from(
+ // ... register all disposables
+ );
+ }
+
+ dispose(): void {
+ this._disposables.dispose();
+ }
+}
+```
+
+## Code Style Standards
+
+### TypeScript Formatting
+- **Formatting:** 4-space indentation, semicolons required
+- **Naming:** PascalCase for classes, camelCase for methods/variables
+- **Patterns:** Manager pattern with dispose() lifecycle
+- **Exports:** Named exports preferred over default exports
+
+### File Organization
+- **Manager-based structure** in vscode-client/extension/
+- **Manager files:** `*Manager.ts` pattern
+- **Tests:** Mirror source structure
+
+## Development Commands
+
+### Building & Packaging
+```bash
+npm run compile && npm run package # VS Code extension (.vsix)
+```
+
+## Critical Development Patterns
+
+### Test Discovery Protocol
+**ALWAYS** use `--read-from-stdin` with real-time document content:
+```typescript
+const openFiles = {};
+vscode.workspace.textDocuments.forEach(doc => {
+ if (this.isRobotFrameworkFile(doc)) {
+ openFiles[doc.uri.toString()] = doc.getText();
+ }
+});
+
+const result = await this.executeRobotCode(
+ folder,
+ ["discover", "--read-from-stdin", "all"],
+ [],
+ JSON.stringify(openFiles)
+);
+```
+
+### Race Condition Prevention
+**MUST** use mutex for async operations:
+```typescript
+await this.refreshMutex.dispatch(async () => {
+ await this.refreshItem(item, token);
+});
+```
+
+### Multi-Workspace Support
+- **HANDLE** Multiple Robot Framework projects simultaneously
+- **ISOLATE** Error handling per workspace
+- **ENSURE** Proper context switching
+
+## Error Handling Standards
+
+### Extension Manager Disposal
+- **IMPLEMENT** proper disposal pattern to prevent memory leaks
+- **REGISTER** all disposables in constructor
+
+### LSP Communication
+- **HANDLE** multiple workspace folders with error isolation
+- **MAINTAIN** robust communication with language server
+
+### Development Server Conflicts
+- **CHECK** for running development servers before starting tasks
+- **PREVENT** port conflicts during testing
+
+## VS Code Extension Development Workflow
+
+### Adding New Features
+1. **ALWAYS** Use manager pattern for new functionality
+2. **REQUIRED** Implement proper disposal
+3. **MUST** Handle race conditions with mutex
+4. **ESSENTIAL** Test discovery with `--read-from-stdin`
+
+### Manager Lifecycle
+- **MUST** follow consistent lifecycle pattern
+- **REQUIRED** proper disposal implementation
+- **ALWAYS** register disposables in constructor
+
+---
+
+*These TypeScript development rules ensure consistent, high-quality VS Code extension development.*
diff --git a/.github/workflows/build-test-package-publish.yml b/.github/workflows/build-test-package-publish.yml
index 1eb31bfd3..bdc7e6205 100644
--- a/.github/workflows/build-test-package-publish.yml
+++ b/.github/workflows/build-test-package-publish.yml
@@ -33,7 +33,7 @@ jobs:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
- robot-version: ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71", "rf72"]
+ robot-version: ["rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73"]
exclude:
- os: macos-latest
python-version: "3.8"
diff --git a/.gitignore b/.gitignore
index 5d712265e..4deccd5cc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -331,4 +331,7 @@ output.xml
bundled/libs
# robotframework
-results/
\ No newline at end of file
+results/
+
+# kilocode
+.kilocode/
\ No newline at end of file
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 10a90faf1..41dc7df83 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -19,14 +19,6 @@ repos:
args: []
- repo: local
hooks:
- - id: lint_package_update
- name: Update package for lint environment
- entry: hatch run lint:install-packages
- pass_filenames: false
- language: system
- stages: [pre-commit]
- types:
- - "python"
- id: python_style
name: Check Python Style
entry: hatch run lint:style
diff --git a/.vscode/launch.json b/.vscode/launch.json
index f54f3f660..a7ead887e 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -6,29 +6,50 @@
"version": "0.2.0",
"configurations": [
{
- "name": "Attach to Node Process",
- "port": 9229,
+ "name": "Python: Attach Prompt",
+ "type": "debugpy",
"request": "attach",
- "skipFiles": [
- "/**"
- ],
- "type": "node",
- "autoAttachChildProcesses": true
+ "connect": {
+ "host": "localhost",
+ "port": "${input:portNumber}"
+ }
},
-
-
{
- "name": "esbuild.mjs",
- "program": "${workspaceFolder}/esbuild.mjs",
+ "name": "Python: Attach to 5678",
+ "type": "debugpy",
+ "request": "attach",
+ "connect": {
+ "host": "localhost",
+ "port": 5678
+ },
+ "justMyCode": false,
+ "subProcess": true,
+ "showReturnValue": true,
+ },
+ {
+ "name": "Python: Attach using Process Id",
+ "type": "debugpy",
+ "request": "attach",
+ "processId": "${command:pickProcess}",
+ "justMyCode": false
+ },
+ {
+ "name": "Python: Create Cmd Line Doc",
+ "type": "debugpy",
"request": "launch",
- "skipFiles": [
- "/**"
- ],
- "type": "node",
+ "program": "scripts/create_cmdline_doc.py",
"console": "integratedTerminal",
- "runtimeArgs": [
- "--experimental-modules"
- ]
+ "justMyCode": false,
+ "cwd": "${workspaceFolder}",
+ },
+ {
+ "name": "Python: Current File",
+ "type": "debugpy",
+ "request": "launch",
+ "program": "${file}",
+ "console": "integratedTerminal",
+ "justMyCode": false,
+ "cwd": "${workspaceFolder}",
},
{
"name": "Python: Debug in terminal",
@@ -39,6 +60,81 @@
],
"justMyCode": false
},
+ {
+ "name": "Python: Debug Tests",
+ "type": "debugpy",
+ "request": "launch",
+ "program": "${file}",
+ "purpose": [
+ "debug-test"
+ ],
+ "console": "integratedTerminal",
+ "justMyCode": false
+ },
+ {
+ "name": "Python: Pytest All Test",
+ "type": "debugpy",
+ "request": "launch",
+ "module": "pytest",
+ "args": [
+ "."
+ ],
+ "console": "integratedTerminal",
+ "justMyCode": false,
+ "cwd": "${workspaceFolder}",
+ },
+ {
+ "name": "Python: Pytest Current File",
+ "type": "debugpy",
+ "request": "launch",
+ "module": "pytest",
+ "args": [
+ "${file}"
+ ],
+ "console": "integratedTerminal",
+ "justMyCode": false,
+ "cwd": "${workspaceFolder}",
+ },
+ {
+ "name": "Python: Pytest Some Test",
+ "type": "debugpy",
+ "request": "launch",
+ "module": "pytest",
+ "args": [
+ "--full-trace",
+ "--tb=native",
+ "--regtest2-reset",
+ //"--regtest-reset",
+ //"tests/robotcode/language_server/robotframework/parts/test_foldingrange.py"
+ //"tests/robotcode/language_server/robotframework/parts/test_references.py"
+ //"./tests/robotcode/language_server/robotframework/parts/test_discovering.py::test_workspace_discovery"
+ //"tests/robotcode/language_server/robotframework/parts/test_document_highlight.py"
+ //"tests/robotcode/utils/test_dataclasses.py::test_really_complex_data"
+ //"tests/robotcode/language_server/robotframework/parts/test_foldingrange.py"
+ //"tests/robotcode/language_server/robotframework/parts/test_document_symbols.py",
+ // "./tests/robotcode/language_server/robotframework/parts/test_semantic_tokens.py "
+ "tests/robotcode/language_server/robotframework/parts/test_foldingrange.py::test[False-foldingrange.robot-123-001-try end]"
+ ],
+ "console": "integratedTerminal",
+ "justMyCode": false,
+ "cwd": "${workspaceFolder}",
+ },
+ {
+ "name": "Python: Remote-Attach",
+ "type": "debugpy",
+ "request": "attach",
+ "connect": {
+ "host": "localhost",
+ "port": 5678
+ },
+ "pathMappings": [
+ {
+ "localRoot": "${workspaceFolder}",
+ "remoteRoot": "."
+ }
+ ],
+ "justMyCode": true
+ },
{
"name": "Python: RobotCode",
"type": "debugpy",
@@ -98,102 +194,17 @@
// "package.json"
// "-v",
// "asd:asd"
-
]
},
{
- "name": "Python: Attach using Process Id",
- "type": "debugpy",
- "request": "attach",
- "processId": "${command:pickProcess}",
- "justMyCode": false
- },
- {
- "name": "Python: Current File",
+ "name": "Python: RobotCode Debugger",
"type": "debugpy",
"request": "launch",
- "program": "${file}",
- "console": "integratedTerminal",
- "justMyCode": false,
- "cwd": "${workspaceFolder}",
- },
- {
- "name": "Python: Create Cmd Line Doc",
- "type": "debugpy",
- "request": "launch",
- "program": "scripts/create_cmdline_doc.py",
- "console": "integratedTerminal",
- "justMyCode": false,
- "cwd": "${workspaceFolder}",
- },
- {
- "name": "Python: Attach to 5678",
- "type": "debugpy",
- "request": "attach",
- "connect": {
- "host": "localhost",
- "port": 5678
- },
- "justMyCode": false,
- "subProcess": true,
- "showReturnValue": true,
- },
- {
- "name": "Python: Attach Prompt",
- "type": "debugpy",
- "request": "attach",
- "connect": {
- "host": "localhost",
- "port": "${input:portNumber}"
- }
- },
- {
- "name": "Python: Pytest All Test",
- "type": "debugpy",
- "request": "launch",
- "module": "pytest",
- "args": [
- "."
- ],
- "console": "integratedTerminal",
- "justMyCode": false,
- "cwd": "${workspaceFolder}",
- },
- {
- "name": "Python: Pytest Some Test",
- "type": "debugpy",
- "request": "launch",
- "module": "pytest",
- "args": [
- "--full-trace",
- "--tb=native",
- "--regtest2-reset",
- //"--regtest-reset",
- //"tests/robotcode/language_server/robotframework/parts/test_foldingrange.py"
- //"tests/robotcode/language_server/robotframework/parts/test_references.py"
- //"./tests/robotcode/language_server/robotframework/parts/test_discovering.py::test_workspace_discovery"
- //"tests/robotcode/language_server/robotframework/parts/test_document_highlight.py"
- //"tests/robotcode/utils/test_dataclasses.py::test_really_complex_data"
- //"tests/robotcode/language_server/robotframework/parts/test_foldingrange.py"
- //"tests/robotcode/language_server/robotframework/parts/test_document_symbols.py",
- // "./tests/robotcode/language_server/robotframework/parts/test_semantic_tokens.py "
- "tests/robotcode/language_server/robotframework/parts/test_foldingrange.py::test[False-foldingrange.robot-123-001-try end]"
- ],
- "console": "integratedTerminal",
- "justMyCode": false,
- "cwd": "${workspaceFolder}",
- },
- {
- "name": "Python: Pytest Current File",
- "type": "debugpy",
- "request": "launch",
- "module": "pytest",
+ "module": "robotcode.ci",
"args": [
- "${file}"
+ "debugger",
+ "--no-wait-for-client"
],
- "console": "integratedTerminal",
- "justMyCode": false,
- "cwd": "${workspaceFolder}",
},
{
"name": "Python: robotcode language_server",
@@ -208,72 +219,68 @@
]
},
{
- "name": "Run Extension",
+ "name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
+ "runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
+ "--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
],
- "debugWebviews": true,
- "debugWebWorkerHost": true,
"outFiles": [
- "${workspaceFolder}/out/**/*.js"
+ "${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "npm: compile"
},
{
- "name": "Run Extension With Gherkin",
+ "name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
- "--extensionDevelopmentPath=${workspaceFolder}/../robotframework-gherkin-parser",
],
+ "debugWebviews": true,
+ "debugWebWorkerHost": true,
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm: compile"
},
{
- "name": "Extension Tests",
+ "name": "Run Extension With Gherkin",
"type": "extensionHost",
"request": "launch",
- "runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
- "--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
+ "--extensionDevelopmentPath=${workspaceFolder}/../robotframework-gherkin-parser",
],
"outFiles": [
- "${workspaceFolder}/out/test/**/*.js"
+ "${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm: compile"
},
{
- "name": "Python: Debug Tests",
- "type": "debugpy",
- "request": "launch",
- "program": "${file}",
- "purpose": [
- "debug-test"
+ "name": "Attach to Node Process",
+ "port": 9229,
+ "request": "attach",
+ "skipFiles": [
+ "/**"
],
- "console": "integratedTerminal",
- "justMyCode": false
+ "type": "node",
+ "autoAttachChildProcesses": true
},
{
- "name": "Python: Remote-Attach",
- "type": "debugpy",
- "request": "attach",
- "connect": {
- "host": "localhost",
- "port": 5678
- },
- "pathMappings": [
- {
- "localRoot": "${workspaceFolder}",
- "remoteRoot": "."
- }
+ "name": "esbuild.mjs",
+ "program": "${workspaceFolder}/esbuild.mjs",
+ "request": "launch",
+ "skipFiles": [
+ "/**"
],
- "justMyCode": true
+ "type": "node",
+ "console": "integratedTerminal",
+ "runtimeArgs": [
+ "--experimental-modules"
+ ]
}
],
"inputs": [
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 3efa76dad..73ce3f13d 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -3,12 +3,6 @@
{
"version": "2.0.0",
"tasks": [
- {
- "label": "robotcode: lint fix",
- "type": "shell",
- "command": "hatch run lint:fix",
- "problemMatcher": []
- },
{
"label": "robotcode: lint all",
"type": "shell",
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 835b3c48b..f096a77a8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,20 +2,159 @@
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
-## [Unreleased]
+## [1.7.0](https://github.com/robotcodedev/robotcode/compare/v1.6.0..v1.7.0) - 2025-07-31
### Bug Fixes
+- **diagnostics:** Correct overriding of imported variables in suite variables ([afed6db](https://github.com/robotcodedev/robotcode/commit/afed6db7cf9d5293b62a01eaaeba621517894ebd))
+
+
+### Features
+
+- **docs:** Add generated llms.txt and llms-full.txt to website ([1f23559](https://github.com/robotcodedev/robotcode/commit/1f23559ff9f26cb2dd9977c001b883493f1f32b4))
+
+
+### Refactor
+
+- **jsonrpc:** Fix some spellings and split up some methods ([3c71ce6](https://github.com/robotcodedev/robotcode/commit/3c71ce64f8a797a4f0db925c2379800a3e48a987))
+
+
+## [1.6.0](https://github.com/robotcodedev/robotcode/compare/v1.5.0..v1.6.0) - 2025-07-30
+
+### Bug Fixes
+
+- **core:** Remove unnecessary socket option for address reuse in find_free_port ([1ee754a](https://github.com/robotcodedev/robotcode/commit/1ee754abc7b27a8d2d70e15f39dad8ec0febc4da))
+- **debugger:** Enhance error handling in DAPClient and simplify port allocation for new testrun sessions ([43f242d](https://github.com/robotcodedev/robotcode/commit/43f242d61dc0e249e1912ac0d7be8df63478d802))
+
+ - every new test run gets it's own tcp port
+
+- **debugger:** Only sync when not in CallKeyword state ([709798a](https://github.com/robotcodedev/robotcode/commit/709798ac5cfbdf84ede7282d396bcae03a7e33f7))
+
+
+### Documentation
+
+- Remove robotframework-tidy from docs ([c259a0f](https://github.com/robotcodedev/robotcode/commit/c259a0f42819e25603ff333afdf6fc9c00b6b279))
+
+
+### Features
+
+- **debug:** Better synchronization between test view and execution in intellij-client, part 2 ([4ce87a2](https://github.com/robotcodedev/robotcode/commit/4ce87a2a86c72c944fab5de1288d08ecc33928e7))
+- **debugger:** Better synchronization between test view and execution in vscode, part 1 ([63c895f](https://github.com/robotcodedev/robotcode/commit/63c895f8d78ba0db64c32c4100ab09bf42941232))
+- **robotcode:** Remove robotframework-tidy from optional-dependencies ([205cfd1](https://github.com/robotcodedev/robotcode/commit/205cfd1a93aae3bfc4e062d1d16b0dd3ad2e4f98))
+
+
+### Refactor
+
+- **debugger:** Split get_variables method and splitup version specific behavior for exception handling ([c828202](https://github.com/robotcodedev/robotcode/commit/c828202021d8b0eb0e4862fec0e96713977cfe62))
+- **debugger:** Break down complex evaluate() method ([4c6b9af](https://github.com/robotcodedev/robotcode/commit/4c6b9afc988a0b4838e16bd9f57b4d57db278721))
+- **debugger:** Optimize cache management and improve regex matching performance ([2edfeea](https://github.com/robotcodedev/robotcode/commit/2edfeea3d884b486b19d3c6ab4b6e76e03572b57))
+- **debugger:** Enhance type safety by introducing protocols and type definitions for log messages and attributes ([a65b9b9](https://github.com/robotcodedev/robotcode/commit/a65b9b95cf66d3b513da2c50d1409a56887c9963))
+- **debugger:** Replace magic numbers with named constants for better readability ([65b0912](https://github.com/robotcodedev/robotcode/commit/65b091218e2ed5552e6d2a84ab61600ecbdc75a3))
+- **debugger:** Replace instance method calls with property access for consistency ([8ea82e4](https://github.com/robotcodedev/robotcode/commit/8ea82e45f4d343431aa42dfd525ed5ccb09d4df7))
+- **instructions:** Clarify implementation guidelines and communication flow ([b37be1c](https://github.com/robotcodedev/robotcode/commit/b37be1c683467ba4f3557127cb6337d5baad19c3))
+- **langserver:** Improve performance and memory consumption for semantic tokens ([e8297ff](https://github.com/robotcodedev/robotcode/commit/e8297ffc2f093cbab7eeff0bbecc7fba3dd5f330))
+- **langserver:** Remove unused semantic token types and update regression tests ([6b262b5](https://github.com/robotcodedev/robotcode/commit/6b262b54d3aa53e55f4661b289f7959baf1f260a))
+- **langserver:** Remove unused methods to simplify code ([96ba516](https://github.com/robotcodedev/robotcode/commit/96ba5162238fe04ca9b2473dcc512b94efc8cf7f))
+- **langserver:** Optimize memory consumption and perfomance in semantic token highlighter ([7e5e8e3](https://github.com/robotcodedev/robotcode/commit/7e5e8e3b9ebc0a3a1ce0a0dccee4cdf160d7bdb5))
+- **langserver:** Remove some unneeded casts ([c82a604](https://github.com/robotcodedev/robotcode/commit/c82a6040ea9b6d786e0af9cf5078780e2aaf7437))
+
+
+## [1.5.0](https://github.com/robotcodedev/robotcode/compare/v1.4.0..v1.5.0) - 2025-07-07
+
+### Features
+
+- **cli:** Add new command line switch `--log-config` to specify a python json log configuration ([31a11f2](https://github.com/robotcodedev/robotcode/commit/31a11f27b96fba6c879218c9b13cdea5f8bb89c3))
+- **jsonrpcl:** Simplify error message formatting in JsonRPCProtocol for better readability in clients ([75614b0](https://github.com/robotcodedev/robotcode/commit/75614b05820f57c98c416949abced03970e0b429))
+
+
+### Refactor
+
+- **langserver:** Remove some unused code ([fa429a5](https://github.com/robotcodedev/robotcode/commit/fa429a502e1901cfc0d4126c4047994a5fd5ee39))
+- **langserver:** Simplify keyword renaming ([3836362](https://github.com/robotcodedev/robotcode/commit/3836362073599bcc32d9cb38425645d34d681f91))
+- **langserver:** Simplify variable renaming ([779fd70](https://github.com/robotcodedev/robotcode/commit/779fd703339ce81124f03f08b73e2639d0729212))
+
+
+### Testing
+
+- Update regression tests for RF 7.3.2 ([fd1b89a](https://github.com/robotcodedev/robotcode/commit/fd1b89ac17b1f378bc66c6d944afc92252f13ecf))
+
+
+## [1.4.0](https://github.com/robotcodedev/robotcode/compare/v1.3.0..v1.4.0) - 2025-06-30
+
+### Bug Fixes
+
+- **langserver:** Remove timing messages from diagnostics in log ([c908485](https://github.com/robotcodedev/robotcode/commit/c90848514f713805fa330ccfc4344cc8775d0118))
+
+ - if you want to see it again, then you have to enable the log output for the language server
+
+
+
+### Documentation
+
+- Update Python and Robot Framework version requirements and deprecation notice ([6396b7e](https://github.com/robotcodedev/robotcode/commit/6396b7ef76fd8d41c3d79afc0bab871342eb8622))
+
+
+### Features
+
+- **langserver:** Improve and unify Robocop 6 configuration loading ([b3c5dd3](https://github.com/robotcodedev/robotcode/commit/b3c5dd3c50308116fc1e1de7adc156a6086cd8fd))
+
+ - Enhance configuration loading process
+ - Add notifications for faulty configurations
+
+
+
+### Refactor
+
+- Simpify some logging code ([5ea1ca1](https://github.com/robotcodedev/robotcode/commit/5ea1ca1c77269df8ebcc70e9a86e77a89d9249a6))
+- Switch lint environment to python 3.10 and corrected all linting errors and warnings ([19a2632](https://github.com/robotcodedev/robotcode/commit/19a26325454ba1b5e53b8548a16c0a3fbe8d5422))
+
+
+## [1.3.0](https://github.com/robotcodedev/robotcode/compare/v1.2.0..v1.3.0) - 2025-06-16
+
+### Bug Fixes
+
+- **cli:** Set case_sensitive default to False in EnumChoice ([3fd27d4](https://github.com/robotcodedev/robotcode/commit/3fd27d47cec9f515bc618b330b2dccf1acc6255d))
- **cli:** Corrected monkey patching for click>=8.2.0 ([425e64d](https://github.com/robotcodedev/robotcode/commit/425e64ddf8c6a9a54ec6fe3d801253c2e3a2156a))
+- **debugger:** Improve termination handling ([a890264](https://github.com/robotcodedev/robotcode/commit/a890264547341c190eaef5e0240f0cc81deb3c70))
+- **formatting:** Improve message clarity for robocop formatting ([f71d15d](https://github.com/robotcodedev/robotcode/commit/f71d15df40f8bfd1f9f325d35e1ba73bcf16c9aa))
+- **imports:** Corrected caching of already loaded resources ([4606c4f](https://github.com/robotcodedev/robotcode/commit/4606c4ff12906b54edfeb1e29927f61b2130332c))
+- **langserver:** Implemented support for robocop >= 6 checks ([8dc2f3c](https://github.com/robotcodedev/robotcode/commit/8dc2f3ce94bf6c6a771b6ffcc6a969ae617397e6))
+- **langserver:** Disable on-demand startup for the documentation server to ensure it launches on initialization ([81d63fa](https://github.com/robotcodedev/robotcode/commit/81d63faa5f0cfbcf95e293c53daeb80840117438))
+- **listener:** Add 'robocop.toml' to monitored project files to allow detection of changes in robocop configuration ([987ea42](https://github.com/robotcodedev/robotcode/commit/987ea421f22b133851a462b921b7c3e1e5802a4a))
+- **net:** Move SO_REUSEADDR socket option setting to the correct location to speeding up port discovery and preventing bind failures. ([b54cc93](https://github.com/robotcodedev/robotcode/commit/b54cc9300abb4c7060bfa94cb2e1bfa272936eda))
- **textmate:** Corrected highlightning of comments in variable section ([5204afb](https://github.com/robotcodedev/robotcode/commit/5204afbfdd7f745c3e00ebc8d59fa3ad992ec0a8))
- **textmate:** Enhance variable assignment handling ([7333eb9](https://github.com/robotcodedev/robotcode/commit/7333eb9b2f46e2af25583af2d5346b4b92dd1137))
- Corrected detection of robocop ([f06bcbc](https://github.com/robotcodedev/robotcode/commit/f06bcbc1c2514326567399f8e5179da6ff5f9ed7))
+### Documentation
+
+- **contributing:** Enhance development setup and workflow instructions ([b23331b](https://github.com/robotcodedev/robotcode/commit/b23331b8622ddd97c2030de96212323f5e7d4171))
+
+ Updated the contributing guide to include detailed development environment setup options, IDE configuration, and a comprehensive development workflow. Improved clarity and added troubleshooting tips for common issues.
+
+
+
### Features
+- **analyzer:** Support for converting resolvable variables with types ([17123a0](https://github.com/robotcodedev/robotcode/commit/17123a046015e57fc64aa73f1227309b78bed4a2))
+- **analyzer:** Support for types in embedded arguments ([35526a0](https://github.com/robotcodedev/robotcode/commit/35526a05fbfdccc2a250f86a8fe3d51bf510607c))
+- **analyzer:** Improve 'keyword not found' messages for old `FOR:` syntax ([94cdc54](https://github.com/robotcodedev/robotcode/commit/94cdc54dd017e6e3892ead8a4cd9d8068b6b88ca))
+- **debugger:** Update delayed logging handling for Robot Framework 7.3 compatibility ([0b51afc](https://github.com/robotcodedev/robotcode/commit/0b51afce6acace2de358120dae365f190719cd05))
- **intellij:** Reimplement and simplified parsing and syntax highlightning ([2dcdf7c](https://github.com/robotcodedev/robotcode/commit/2dcdf7ce846e8483fb427cdc7945a084fe4c3232))
+- **langserver:** Show variable type in hover for RF 7.3 ([10d981f](https://github.com/robotcodedev/robotcode/commit/10d981f657ba34db1449984fe4a28623632c5b64))
+- **langserver:** Implemented robocop 6.0 formatting and deprecate old robotidy ([310bc54](https://github.com/robotcodedev/robotcode/commit/310bc544be8306fb85a329698763b562cd9d85aa))
- **langserver:** Better support for indexed assignments ([6fad9b1](https://github.com/robotcodedev/robotcode/commit/6fad9b161b85b2412b6a9d5169e69b4ce37c43c3))
+- **robot:** Unify variable handling and prepare for RF 7.3 type parsing ([73cda66](https://github.com/robotcodedev/robotcode/commit/73cda6698959fd3cbdce0901b87a40701cbe4966))
+
+ - Added support for parse_type parameter in Robot Framework 7.3+
+ - Unified variable processing across different RF versions
+
+- **vscode:** Deprecate some robocop settings ([1b23965](https://github.com/robotcodedev/robotcode/commit/1b23965aec6dc00618bfe5c4927c9889f44cc4d1))
+- **vscode:** Add language model tool to get the library and resource imports from a robot file ([e5631f0](https://github.com/robotcodedev/robotcode/commit/e5631f042e42810b35d8694649cb76819b7b5866))
+- **vscode:** Add language model tools for retrieving library documentation and environment details ([a311e99](https://github.com/robotcodedev/robotcode/commit/a311e996cf95b2afaacc4b4402a4e2749b8d46bc))
+- **vscode:** Add deprecation messages for robotframework-tidy in configuration ([37c5371](https://github.com/robotcodedev/robotcode/commit/37c5371919d10a7ea1f46c91f1f7707b63fa96ce))
+- Basic support for Robot Framework 7.3 ([e6ffef7](https://github.com/robotcodedev/robotcode/commit/e6ffef7ded23ccab2bf3359891e5698f65a99ec4))
- Show editor hint for Python/Robot Framework issues instead of throwing error ([4c2a43b](https://github.com/robotcodedev/robotcode/commit/4c2a43b8fd2ece7f905fc10695f2d5b9487dc52a))
@@ -24,7 +163,14 @@ All notable changes to this project will be documented in this file. See [conven
### Refactor
+- **analyzer:** Some renamings ([5f1f5c3](https://github.com/robotcodedev/robotcode/commit/5f1f5c37f62ae6cb32bf7a1db5c6ddbb592d8337))
- **intellij:** Some code cleanup ([479a9c3](https://github.com/robotcodedev/robotcode/commit/479a9c3e6b1bc117e5c1222953b755a198cbc8c2))
+- **vscode:** Some refactorings and code cleanup ([d8eac38](https://github.com/robotcodedev/robotcode/commit/d8eac3808e23320fcb7efa92e85c574988d1a7ef))
+
+
+### Testing
+
+- Update regression tests for RF 7.3.1 ([93bef41](https://github.com/robotcodedev/robotcode/commit/93bef414711e069fe097251892e3cc63fccf6392))
## [1.2.0](https://github.com/robotcodedev/robotcode/compare/v1.1.0..v1.2.0) - 2025-05-07
@@ -3196,4 +3342,6 @@ All notable changes to this project will be documented in this file. See [conven
- Add tests for workspace discovery ([61f82ce](https://github.com/robotcodedev/robotcode/commit/61f82ced19f227c311fea3b64c9b53394d92feeb))
+## [0.2.0](https://github.com/robotcodedev/robotcode/compare/v0.19.1..v0.2.0) - 2021-09-16
+
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 05109c96f..e9554b827 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -5,12 +5,12 @@ First off, thanks for taking the time to contribute! ❤️
All types of contributions are encouraged and valued. See the [Table of Contents](#table-of-contents) for different ways to help and details about how this project handles them. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for us maintainers and smooth out the experience for all involved. The community looks forward to your contributions. 🎉
-> And if you like the project, but just don't have time to contribute, that's fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about:
-> - Star the project
-> - Tweet about it
-> - Refer this project in your project's readme
-> - Mention the project at local meetups and tell your friends/colleagues
-> - Sponsor this project by clicking on the sponsor button on the project page
+And if you like the project, but just don't have time to contribute, that's fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about:
+- Star the project
+- Tweet about it
+- Refer this project in your project's readme
+- Mention the project at local meetups and tell your friends/colleagues
+- Sponsor this project by clicking on the sponsor button on the project page
## Table of Contents
@@ -21,6 +21,15 @@ All types of contributions are encouraged and valued. See the [Table of Contents
- [Reporting Bugs](#reporting-bugs)
- [Suggesting Enhancements](#suggesting-enhancements)
- [Your First Code Contribution](#your-first-code-contribution)
+ - [Development Environment Setup](#development-environment-setup)
+ - [IDE Configuration](#ide-configuration)
+ - [Development Workflow](#development-workflow)
+ - [Pull Request Guidelines](#pull-request-guidelines)
+ - [Running Tests](#running-tests)
+ - [Building the Project](#building-the-project)
+ - [Additional Development Commands](#additional-development-commands)
+ - [Troubleshooting Development Setup](#troubleshooting-development-setup)
+ - [Development Tools & Code Generation](#development-tools--code-generation)
- [Improving The Documentation](#improving-the-documentation)
- [Styleguides](#styleguides)
- [Commit Messages](#commit-messages)
@@ -37,7 +46,7 @@ to .
## I Have a Question
-> If you want to ask a question, we assume that you have read the available [Documentation](https://robotcode.io).
+If you want to ask a question, we assume that you have read the available [Documentation](https://robotcode.io).
Before you ask a question, it is best to search for existing [Issues](https://github.com/robotcodedev/robotcode/issues) that might help you. In case you have found a suitable issue and still need clarification, you can write your question in this issue. It is also advisable to search the internet for answers first.
@@ -80,7 +89,9 @@ A good bug report shouldn't leave others needing to chase you up for more inform
- Make sure that you are using the latest version.
- Determine if your bug is really a bug and not an error on your side e.g. using incompatible environment components/versions (Make sure that you have read the [documentation](https://robotcode.io). If you are looking for support, you might want to check [this section](#i-have-a-question)).
-- To see if other users have experienced (and potentially already solved) the same issue you are having, check if there is not already a bug report existing for your bug or error in the [bug tracker](https://github.com/robotcodedev/robotcodeissues?q=label%3Abug).
+- To see if other users have experienced (and potentially already solved) the same issue you are having, check if there is not already a bug report existing for your bug or error in the [bug tracker](https://github.com/robotcodedev/robotcode/issues?q=label%3Abug).
+- Look or ask in the [Robot Framework Slack](https://robotframework.slack.com) in the channel [#vscode](https://robotframework.slack.com/archives/C0103745J7P) or in the [Robot Framework Forum](https://forum.robotframework.org) in the [Tools/Visual Studio Code(ium)](https://forum.robotframework.org/c/tools/vscode/28) category to see if other users have experienced (and potentially already solved) the same issue you are having.
+ - for questions about the intellj plugin there are also channels for pycharm
- Also make sure to search the internet (including Stack Overflow) to see if users outside of the GitHub community have discussed the issue.
- Collect information about the bug:
- Stack trace (Traceback)
@@ -137,33 +148,419 @@ Enhancement suggestions are tracked as [GitHub issues](https://github.com/robotc
### Your First Code Contribution
-
+Welcome to your first code contribution! Here's how to set up your development environment and get started.
+
+#### Development Environment Setup
+
+**Option 1: Using GitHub Codespaces (Easiest)**
+
+The quickest way to get started without any local setup:
+
+1. **Setup:**
+ - Go to the [robotcode repository](https://github.com/robotcodedev/robotcode)
+ - Click the green "Code" button
+ - Select "Codespaces" tab
+ - Click "Create codespace on main"
+ - Wait for the codespace to initialize (this uses the same dev container configuration)
+
+GitHub Codespaces provides a full VS Code environment in your browser with all dependencies pre-installed.
+
+**Option 2: Using Dev Container (Local)**
+
+For local development with containers:
+
+1. **Prerequisites:**
+ - Install [Docker](https://www.docker.com/get-started)
+ - Install [Visual Studio Code](https://code.visualstudio.com/)
+ - Install the [Dev Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)
+
+2. **Setup:**
+ - Clone the repository: `git clone https://github.com/robotcodedev/robotcode.git`
+ - Open the project in VS Code
+ - When prompted, click "Reopen in Container" or use the Command Palette (`Cmd+Shift+P` / `Ctrl+Shift+P`) and select "Dev Containers: Reopen in Container"
+ - The container will automatically install all dependencies including Python, Node.js, and required packages
+
+**Option 3: Local Development**
+
+If you prefer to set up locally:
+
+1. **Prerequisites:**
+ - Python 3.8+ (system Python is fine)
+ - Node.js 16+
+ - Git
+
+2. **Setup:**
+ ```bash
+ git clone https://github.com/robotcodedev/robotcode.git
+ cd robotcode
+
+ # Install Hatch (choose one method):
+ # Option A: Using system package manager (if available)
+ # Ubuntu/Debian: sudo apt install hatch
+ # Fedora: sudo dnf install hatch
+ # Arch: sudo pacman -S hatch
+
+ # Option B: Using pipx (recommended if not in package manager)
+ pip install pipx
+ pipx install hatch
+
+ # Option C: Check https://hatch.pypa.io/latest/install/ for other methods
+
+ # Create development environment
+ hatch env create devel
+
+ # install needed packages for the vscode and intellij packaging
+ hatch run build:install-bundled-editable
-TODO...
+ # Install Node.js dependencies
+ npm install --also-dev
+ ```
+
+#### IDE Configuration
+
+The project includes VS Code settings optimized for development:
+- Python testing with pytest
+- Code formatting with Prettier and Ruff
+- Type checking with mypy
+- Debugging configuration
+- Recommended extensions are automatically suggested
+
+**Important: Python Interpreter Selection**
+
+After setting up the development environment with `hatch env create devel`, you need to select the correct Python interpreter in VS Code:
+
+1. Open the Command Palette (`Cmd+Shift+P` or `Ctrl+Shift+P` or `F1`)
+2. Type "Python: Select Interpreter"
+3. Choose the interpreter from the Hatch environment
+4. Select the desired Python/Robot Framework version environment
+
+Hatch creates separate Python environments for each supported Python/Robot Framework version combination in your system's cache directory.
+
+You can also check available environments with: `hatch env show`
+
+#### Development Workflow
+
+1. **Create a branch:** `git checkout -b feature/your-feature-name`
+2. **Make your changes** following the project's coding standards
+3. **Run tests:** `hatch run devel.py312-rf73:test` (single combination for faster development)
+4. **Run linting:** `hatch run lint:all` (or use the VS Code task)
+5. **Fix linting issues:** `hatch run lint:style` for formatting
+6. **Commit your changes** with a descriptive commit message
+7. **Push and create a pull request**
+
+#### Pull Request Guidelines
+
+Before submitting your pull request:
+
+1. **Ensure all tests pass:** Run `hatch run test.rf73:test` (or your preferred combination)
+2. **Check linting:** Run `hatch run lint:all` and fix any issues
+3. **Write descriptive PR description:**
+ - Explain what changes you made and why
+ - Reference any related issues
+ - Include screenshots for UI changes
+ - List any breaking changes
+4. **Keep PRs focused:** One feature/fix per PR when possible
+5. **Update documentation:** Include relevant documentation updates
+6. **Sign your commits:** All commits must be signed (see [Signed Commits](#signed-commits-required))
+
+**PR Review Process:**
+- Automated checks must pass (tests, linting, etc.)
+- At least one maintainer review is required
+- Address any feedback promptly
+- Keep your PR up to date with the main branch
+
+#### Running Tests
+
+**Basic Test Execution:**
+- Use VS Code's built-in test runner (Testing tab in the sidebar)
+- Or run from terminal: `hatch run test` (⚠️ **Warning**: This runs tests against ALL Python/Robot Framework combinations in the matrix - can take a very long time!)
+- Run specific tests: `hatch run test tests/specific_test.py` (also runs against all matrix combinations)
+
+**Testing with Specific Python/Robot Framework Versions:**
+
+The project supports multiple Python and Robot Framework versions. You can run tests against specific combinations:
+
+```bash
+# Run tests with specific Robot Framework versions (single combination)
+hatch run test:test # ⚠️ Runs ALL matrix combinations (RF 4.1-7.3)
+hatch run test.rf70:test # Robot Framework 7.0.x
+hatch run test.rf71:test # Robot Framework 7.1.x
+hatch run test.rf72:test # Robot Framework 7.2.x
+hatch run test.rf73:test # Robot Framework 7.3.x (recommended for development)
+hatch run test.rf61:test # Robot Framework 6.1.x
+hatch run test.rf60:test # Robot Framework 6.0.x
+hatch run test.rf50:test # Robot Framework 5.0.x
+hatch run test.rf41:test # Robot Framework 4.1.x
+
+# Run tests in specific development environments (single combination)
+hatch run devel:test # ⚠️ Runs ALL matrix combinations (Python 3.8-3.13 × RF 4.1-7.3)
+hatch run devel.py39-rf73:test # Python 3.9 with Robot Framework 7.3.x (single combination)
+hatch run devel.py311-rf70:test # Python 3.11 with Robot Framework 7.0.x (single combination)
+hatch run devel.py312-rf73:test # Python 3.12 with Robot Framework 7.3.x (single combination)
+hatch run devel.py313-rf73:test # Python 3.13 with Robot Framework 7.3.x (single combination)
+
+# Test against development versions of Robot Framework
+hatch run rfbeta:test # Robot Framework beta/RC versions
+hatch run rfmaster:test # Robot Framework master branch
+hatch run rfdevel:test # Local Robot Framework development version
+```
+
+**⚠️ Important Matrix Behavior:**
+- `hatch run test` executes tests for **all combinations** in the matrix (48 combinations: 6 Python versions × 8 RF versions)
+- `hatch run devel:test` also runs **all matrix combinations**
+- For faster development, use specific combinations like `hatch run devel.py312-rf73:test`
+- For CI/full testing, use the matrix commands
+
+**Available Environment Matrix:**
+- **Python versions**: 3.8, 3.9, 3.10, 3.11, 3.12, 3.13
+- **Robot Framework versions**: 4.1.x, 5.0.x, 6.0.x, 6.1.x, 7.0.x, 7.1.x, 7.2.x, 7.3.x
+
+#### Building the Project
+
+- Package for distribution: `hatch run build:package`
+
+#### Additional Development Commands
+
+**Code Quality & Linting:**
+- Type checking: `hatch run lint:typing`
+- Code style check and formatting: `hatch run lint:style`
+- Run all linting checks: `hatch run lint:all`
+
+**Project Maintenance & Code Generation:**
+- Generate Robot Framework syntax files: `hatch run generate-tmlanguage`
+- Create JSON schema for robot.toml: `hatch run create-json-schema`
+- Generate Robot Framework options: `hatch run generate-rf-options`
+- Install bundled packages in editable mode: `hatch run build:install-bundled-editable`
+
+**Release & Documentation:**
+- Update changelog: `hatch run build:update-changelog`
+- Update git versions: `hatch run build:update-git-versions`
+- Bump version: `hatch run build:bump [major|minor|patch]`
+- Package for distribution: `hatch run build:package`
+- Publish to PyPI, VS Code Marketplace, etc.: `hatch run build:publish`
+ - you need the specific credentials set up in your environment for this to work
+
+#### Troubleshooting Development Setup
+
+**Common Issues:**
+
+1. **Hatch environment creation fails:**
+ ```bash
+ # Clear Hatch cache and try again
+ hatch env prune
+ hatch env create devel
+ ```
+
+2. **VS Code doesn't find the Python interpreter:**
+ - Use `hatch env find devel` to get the exact path
+ - Manually select the interpreter in VS Code using this path
+
+3. **Tests fail with import errors:**
+ - Ensure you're in the correct hatch environment
+ - Run `hatch run build:install-bundled-editable` to install development packages
+
+4. **Node.js dependencies issues:**
+ ```bash
+ # Clean and reinstall npm dependencies
+ rm -rf node_modules package-lock.json
+ npm install --also-dev
+ ```
+
+#### Development Tools & Code Generation
+
+The robotcode project includes several development tools and code generation scripts:
+
+**Syntax & Language Support:**
+- `hatch run generate-tmlanguage` - Regenerate VS Code syntax highlighting files for Robot Framework
+- `hatch run create-json-schema` - Create JSON schema for robot.toml configuration validation
+- `hatch run generate-rf-options` - Generate Robot Framework command-line options documentation
+
+**Maintenance & Release Tools:**
+- `hatch run build:update-changelog` - Update project changelog
+- `hatch run build:update-git-versions` - Update version information from git
+- `hatch run build:update-doc-links` - Update documentation links
+- `hatch run build:bump [major|minor|patch]` - Bump project version using semantic versioning
+
+These tools are typically used by maintainers, but contributors might need some of them when working on specific features (e.g., syntax highlighting changes require `generate-tmlanguage`).
### Improving The Documentation
-
+Documentation is crucial for helping users understand and use robotcode effectively. Here are ways you can help improve it:
+
+#### Types of Documentation Contributions
+
+1. **User Documentation** (`docs/` folder)
+ - Getting started guides
+ - Feature explanations
+ - Configuration examples
+ - Troubleshooting guides
+
+2. **Code Documentation**
+ - Docstrings for classes and functions
+ - Inline comments for complex logic
+ - Type hints and annotations
+
+3. **README Updates**
+ - Installation instructions
+ - Quick start examples
+ - Feature highlights
+
+#### Documentation Setup
+
+The documentation is built using modern web technologies and is located in the `docs/` folder:
-TODO ...
+```bash
+cd docs
+npm install
+npm run dev # Start development server at http://localhost:3000
+npm run build # Build for production
+npm run preview # Preview production build
+```
+
+#### Documentation Standards
+
+- **Clear and concise:** Write for users of all skill levels
+- **Examples:** Include practical code examples
+- **Screenshots:** Add visual aids where helpful (stored in `docs/images/`)
+- **Links:** Reference related concepts and external resources
+- **Testing:** Verify that code examples actually work
+
+#### Making Documentation Changes
+
+1. **Small fixes:** Edit files directly and submit a pull request
+2. **Major changes:** Open an issue first to discuss the approach
+3. **New sections:** Follow the existing structure in the `docs/` folder
+4. **Images:** Store in `docs/images/` and use relative paths
+
+#### Documentation Review Process
+
+- All documentation changes go through the same review process as code
+- Maintainers will check for accuracy, clarity, and consistency
+- Community feedback is encouraged on documentation pull requests
## Styleguides
### Commit Messages
-
+Good commit messages help maintain a clean project history and make it easier to understand changes. Please follow these guidelines:
+
+#### Format
+
+```
+():
+
+
+
+
+```
+
+#### Types
+
+- **feat:** A new feature
+- **fix:** A bug fix
+- **docs:** Documentation only changes
+- **style:** Changes that do not affect the meaning of the code (white-space, formatting, etc)
+- **refactor:** A code change that neither fixes a bug nor adds a feature
+- **perf:** A code change that improves performance
+- **test:** Adding missing tests or correcting existing tests
+- **chore:** Changes to the build process or auxiliary tools and libraries
+
+#### Scope
+
+The scope should indicate the package or area affected:
+- **core:** Core functionality
+- **language-server:** Language server features
+- **debugger:** Debugging functionality
+- **runner:** Test runner
+- **analyze:** Code analysis
+- **plugin:** Plugin system
+- **docs:** Documentation
+- **vscode:** VS Code extension
+
+#### Examples
+
+```
+feat(language-server): add auto-completion for robot keywords
+
+Add intelligent auto-completion that suggests Robot Framework
+keywords based on imported libraries and current context.
+
+Closes #123
+```
-TODO ...
+```
+fix(debugger): resolve breakpoint not hit in nested keywords
+
+Fixed an issue where breakpoints in nested keywords were not
+being triggered during debugging sessions.
+
+Fixes #456
+```
+
+```
+docs(contributing): update development setup instructions
+
+Updated the contributing guide to include dev container setup
+and improved local development instructions.
+```
+
+#### Guidelines
+
+- **Subject line:** 50 characters or less, imperative mood ("add" not "added")
+- **Body:** Wrap at 72 characters, explain what and why (not how)
+- **Footer:** Reference issues and breaking changes
+- **Breaking changes:** Start footer with "BREAKING CHANGE:" followed by description
+
+#### Signed Commits Required
+
+**All commits and pull requests must be signed** to be accepted into the project. This helps ensure the authenticity and integrity of the codebase.
+
+**Setting up commit signing:**
+- Follow GitHub's guide: [Managing commit signature verification](https://docs.github.com/en/authentication/managing-commit-signature-verification)
+- Configure Git to sign commits automatically: `git config --global commit.gpgsign true`
+- Verify your commits are signed: `git log --show-signature`
+
+**For pull requests:**
+- All commits in the PR must be signed
+- The PR will be automatically blocked if unsigned commits are detected
+- You can sign previous commits using: `git rebase --exec 'git commit --amend --no-edit -S' -i HEAD~`
## Join The Project Team
-
-TODO ...
+We're always looking for dedicated contributors to join the robotcode project team! If you've been actively contributing and are interested in taking on more responsibility, here's how you can get involved:
+
+#### Ways to Get More Involved
+
+**Regular Contributors:**
+- Consistently submit high-quality pull requests
+- Help with code reviews and testing
+- Assist in triaging and responding to issues
+- Contribute to documentation improvements
+
+**Maintainer Responsibilities:**
+- Review and merge pull requests
+- Manage releases and versioning
+- Guide project direction and roadmap
+- Mentor new contributors
+
+#### How to Apply
+
+If you're interested in joining the project team:
+
+1. **Build a track record** of meaningful contributions over time
+2. **Engage with the community** by helping other users and contributors
+3. **Reach out** to existing maintainers via email at
+4. **Express your interest** in specific areas where you'd like to contribute more
+
+#### What We Look For
+
+- **Technical expertise** in relevant areas (Python, Robot Framework, VS Code extensions)
+- **Communication skills** for working with contributors and users
+- **Reliability** in following through on commitments
+- **Collaborative mindset** and willingness to help others
+- **Alignment** with project goals and values
+
+We value diversity and welcome contributors from all backgrounds. The robotcode project benefits from different perspectives and experiences.
## Attribution
diff --git a/README.md b/README.md
index c17c59f81..1616398f6 100644
--- a/README.md
+++ b/README.md
@@ -53,15 +53,69 @@ With RobotCode, you can focus on building and testing your automation workflows
- **And More!**: Check out the [official documentation](https://robotcode.io) for more details.
+## Support RobotCode
+
+RobotCode is developed and maintained by volunteers. Your support helps us continue improving and adding new features.
+
+**Become a Sponsor:**
+- [GitHub Sponsors](https://github.com/sponsors/robotcodedev) - Monthly or one-time sponsorship
+- [Open Collective](https://opencollective.com/robotcode) - One-time or recurring donations
+
+**Corporate Sponsorship:**
+- Direct & transparent: Open Collective (https://opencollective.com/robotcode) – invoices, public ledger
+- Ecosystem support: Robot Framework Foundation membership (https://robotframework.org/foundation/) – indirectly benefits RobotCode
+
+**Other Ways to Support:**
+- Star the repository
+- Leave a review on the [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode) and [JetBrains Marketplace](https://plugins.jetbrains.com/plugin/26216)
+- Ask questions & help others ([Slack #robotcode](https://slack.robotframework.org/) / [Forum](https://forum.robotframework.org) / [Discussions](https://github.com/robotcodedev/robotcode/discussions))
+- Report bugs in the [issue tracker](https://github.com/robotcodedev/robotcode/issues)
+- Suggest enhancements or features (issues or [Discussions](https://github.com/robotcodedev/robotcode/discussions))
+- Share usage patterns & integration ideas ([Discussions](https://github.com/robotcodedev/robotcode/discussions))
+- Improve tests (edge cases, large suites, multi-root, versions)
+- Contribute code ([good first issue](https://github.com/robotcodedev/robotcode/labels/good%20first%20issue) / [help wanted](https://github.com/robotcodedev/robotcode/labels/help%20wanted))
+
+
## Requirements
-- Python 3.8 or newer
-- Robot Framework 4.1 or newer
+### Python and Robot Framework Versions
+- Python 3.10 or newer
+- Robot Framework 5.0 or newer
### IDE Support
-- Visual Studio Code 1.86 or newer
-- PyCharm 2024.3.2 or newer or IntelliJ IDEA 2024.3.2 or newer
+- Visual Studio Code 1.99 or newer
+- PyCharm 2025.1 or newer or IntelliJ IDEA 2025.1 or newer
+
+### Deprecated Python and Robot Framework Versions
+
+**⚠️ DEPRECATION WARNING:**
+Support for Python 3.8, 3.9, and Robot Framework 4.1 is deprecated and will be removed in a future release. To ensure compatibility and benefit from ongoing improvements, please upgrade to Python 3.10 or later and Robot Framework 5.0 or later.
+
+**Python Version Requirements:**
+Although Robot Framework still supports Python 3.8 and 3.9, RobotCode requires Python 3.10 or newer due to its use of more modern libraries and features. Many key tools in the ecosystem—such as robocop and the Browser library—have already dropped support for Python 3.8, which is no longer maintained. Python 3.9 will reach end-of-life on October 5, 2025.
+
+**Robot Framework Version Requirements:**
+Robot Framework 4.1 is outdated. Given the regular release cadence of Robot Framework—typically two major versions per year—maintaining support for older versions introduces significant overhead. That effort is better spent on supporting current and upcoming features.
+
+**Compatibility and Limitations:**
+RobotCode currently remains compatible with Python 3.8+ and Robot Framework 4.1+, but with important limitations:
+ • New features may not be available for older versions.
+ • Development and testing efforts are focused on newer versions.
+
+**Why Python 3.10:**
+After Python 3.9 reaches end-of-life, RobotCode will start using Python 3.10+ features that are not backward-compatible. Python 3.10 introduces several important improvements, including:
+ • Structural pattern matching
+ • More informative error messages
+ • Simplified type hints using the | operator
+ • Performance enhancements
+
+These capabilities enable cleaner, more efficient code and improved developer experience.
+
+**Recommendation:**
+To get the most out of RobotCode, we recommend using:
+ • Python 3.10 or newer
+ • Robot Framework 5.0 or newer
## Getting Started
@@ -132,4 +186,8 @@ This project is licensed under the [Apache 2.0 License](https://spdx.org/license
---
## Powered by
-[](https://jb.gg/OpenSourceSupport)
+
+[Robot Framework Foundation](https://robotframework.org/foundation)
+
+
+[Jetbrains](https://jb.gg/OpenSourceSupport)
diff --git a/bundled_requirements.txt b/bundled_requirements.txt
index cc02961af..b5113c31c 100644
--- a/bundled_requirements.txt
+++ b/bundled_requirements.txt
@@ -4,4 +4,4 @@ pluggy>=1.0.0
tomli>=2.0.0
tomli_w>=1.0.0
platformdirs>=3.2.0,<4.4.0
-colorama>=0.4.6
+colorama>=0.4.6
\ No newline at end of file
diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts
index 19b1bf98a..cb65e3aad 100644
--- a/docs/.vitepress/config.mts
+++ b/docs/.vitepress/config.mts
@@ -1,5 +1,6 @@
import { defineConfig } from "vitepress";
import { generateSidebar } from "vitepress-sidebar";
+import llmstxtPlugin from "vitepress-plugin-llmstxt";
import taskLists from "markdown-it-task-lists";
import kbd from "markdown-it-kbd";
import abbr from "markdown-it-abbr";
@@ -35,6 +36,9 @@ export default defineConfig({
["meta", { property: "og:image", content: "https://robotcode.io/robotcode-logo.jpg" }],
["meta", { property: "og:url", content: "https://robotcode.io/" }],
],
+ vite: {
+ plugins: [llmstxtPlugin()],
+ },
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
logo: { src: "/robotcode-logo.svg", alt: "RobotCode Logo" },
diff --git a/docs/01_about/index.md b/docs/01_about/index.md
index 26e7cd8f0..3ba1be7ec 100644
--- a/docs/01_about/index.md
+++ b/docs/01_about/index.md
@@ -60,7 +60,7 @@ RobotCode extends the Robot Framework CLI with enhanced tools for test execution
- **Robust Debugging Capabilities:** RobotCode integrates a Debug Adapter Protocol (DAP) compatible debugger, enabling you to debug your Robot Framework tests with ease. Set breakpoints, step through code, inspect variables, and more, all from within your favorite editor.
- Every IDE that supports the DAP can be used with RobotCode to debug Robot Framework tests.
-### Robot Framwork Repl and Notebooks
+### Robot Framework Repl and Notebooks
- **Interactive REPL Environment:** Experiment with Robot Framework commands in an interactive Read-Eval-Print Loop (REPL) environment, perfect for testing out new ideas or troubleshooting issues on the fly.
- **Jupyter Notebook-Like Experience:** Enjoy the flexibility of a Jupyter Notebook-like environment for working with Robot Framework code, allowing you to explore, test, and iterate quickly and efficiently.
diff --git a/docs/02_get_started/index.md b/docs/02_get_started/index.md
index 3ef798144..8531eb404 100644
--- a/docs/02_get_started/index.md
+++ b/docs/02_get_started/index.md
@@ -56,11 +56,11 @@ Create a `requirements.txt` file in the root folder of your project and add the
robotframework
```
-If you require additional dependencies, you can include them in the `requirements.txt` file. For instance, if you wish to utilize [robotframework-tidy](https://github.com/MarketSquare/robotframework-tidy) for formatting your robot files and the [Browser library](https://robotframework-browser.org/) for website testing, you can add the following line to the `requirements.txt` file:
+If you require additional dependencies, you can include them in the `requirements.txt` file. For instance, if you wish to utilize [robotframework-robocop](https://github.com/MarketSquare/robotframework-robocop) for formatting and linting your robot files and the [Browser library](https://robotframework-browser.org/) for website testing, you can add the following line to the `requirements.txt` file:
```txt [requirements.txt]
robotframework
-robotframework-tidy
+robotframework-robocop
robotframework-browser
```
diff --git a/docs/package.json b/docs/package.json
index 8cd947a0e..52b8d0ca6 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -8,18 +8,19 @@
"preview": "vitepress preview"
},
"devDependencies": {
- "esbuild": "^0.25.4",
+ "esbuild": "^0.25.9",
"markdown-it-abbr": "^2.0.0",
"markdown-it-kbd": "^3.0.0",
"markdown-it-mathjax3": "^4.3.2",
"markdown-it-task-lists": "^2.1.1",
- "typescript": "^5.8.3",
- "typescript-eslint": "^8.32.1",
- "vitepress": "^1.6.3",
+ "typescript": "^5.9.2",
+ "typescript-eslint": "^8.39.1",
+ "vitepress": "^1.6.4",
"vitepress-plugin-tabs": "^0.7.1",
- "vitepress-sidebar": "^1.31.1"
+ "vitepress-sidebar": "^1.33.0",
+ "vitepress-plugin-llmstxt": "^0.4.2"
},
"dependencies": {
- "docs": "file:"
+
}
}
diff --git a/eslint.config.mjs b/eslint.config.mjs
index 4ae71029c..12157fce0 100644
--- a/eslint.config.mjs
+++ b/eslint.config.mjs
@@ -19,6 +19,7 @@ export default [
"**/docs/",
"**/packages/",
"**/js",
+ "**/build/",
],
},
{ files: ["**/*.{ts,tsx}"] },
diff --git a/hatch.toml b/hatch.toml
index c22835a4e..b34e711f6 100644
--- a/hatch.toml
+++ b/hatch.toml
@@ -46,22 +46,12 @@ generate-tmlanguage = "python ./scripts/generate_tmlanguage.py"
python = "3.13"
extra-dependencies = ["robotframework==7.2rc1"]
-[envs.rfmaster313]
-python = "3.13"
-extra-dependencies = [
- "robotframework @ git+https://github.com/robotframework/robotframework.git",
-]
-
[envs.rfmaster]
python = "3.12"
extra-dependencies = [
"robotframework @ git+https://github.com/robotframework/robotframework.git",
]
-[envs.pypy]
-python = "pypy3.10"
-extra-dependencies = ["robotframework==6.0"]
-
[envs.rfdevel]
python = "3.11"
post-install-commands = ["pip install -U -e {root:uri}/../robotframework"]
@@ -71,35 +61,35 @@ python = "3.8"
post-install-commands = ["pip install -U -e {root:uri}/../robotframework"]
[envs.devel]
-python = "3.8"
+python = "3.10"
[[envs.devel.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
-rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71", "rf72"]
+rf = ["rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73"]
[envs.devel.overrides]
matrix.rf.dependencies = [
- { value = "robotframework>=4.1.0, <5.0", if = [
- "rf41",
- ] },
- { value = "robotframework>=5.0.0, <6.0", if = [
+ { value = "robotframework~=5.0.0", if = [
"rf50",
] },
- { value = "robotframework>6.0.0, <6.1", if = [
+ { value = "robotframework~=6.0.0", if = [
"rf60",
] },
- { value = "robotframework>=6.1, <7.0", if = [
+ { value = "robotframework~=6.1.0", if = [
"rf61",
] },
- { value = "robotframework>=7.0, <7.1", if = [
+ { value = "robotframework~=7.0.0", if = [
"rf70",
] },
- { value = "robotframework>=7.1, <7.2", if = [
+ { value = "robotframework~=7.1.0", if = [
"rf71",
] },
- { value = "robotframework>=7.2, <7.3", if = [
+ { value = "robotframework~=7.2.0", if = [
"rf72",
] },
+ { value = "robotframework~=7.3.0", if = [
+ "rf73",
+ ] },
]
[envs.hatch-test]
@@ -107,35 +97,35 @@ dependencies = ["pytest", "pytest-html", "pytest_asyncio>=0.23", "pyyaml"]
pre-install-commands = ["python ./scripts/install_packages.py"]
[[envs.test.matrix]]
-rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71", "rf72"]
+rf = ["rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73"]
[envs.test.overrides]
matrix.rf.dependencies = [
- { value = "robotframework>=4.1.0, <5.0", if = [
- "rf41",
- ] },
- { value = "robotframework>=5.0.0, <6.0", if = [
+ { value = "robotframework~=5.0.0", if = [
"rf50",
] },
- { value = "robotframework>6.0.0, <6.1", if = [
+ { value = "robotframework~=6.0.0", if = [
"rf60",
] },
- { value = "robotframework>=6.1, <7.0", if = [
+ { value = "robotframework~=6.1.0", if = [
"rf61",
] },
- { value = "robotframework>=7.0, <7.1", if = [
+ { value = "robotframework~=7.0.0", if = [
"rf70",
] },
- { value = "robotframework>=7.1, <7.2", if = [
+ { value = "robotframework~=7.1.0", if = [
"rf71",
] },
- { value = "robotframework>=7.2, <7.3", if = [
+ { value = "robotframework~=7.2.0", if = [
"rf72",
] },
+ { value = "robotframework~=7.3.0", if = [
+ "rf73",
+ ] },
]
[envs.lint]
-python = "3.8"
+python = "3.10"
#skip-install = true
#extra-dependencies = ["tomli>=2.0.0"]
extra-dependencies = [
@@ -152,6 +142,7 @@ features = ["all"]
typing = "mypy --no-incremental --cache-dir /dev/null {args:.}"
style = ["ruff check .", "ruff format --diff ."]
all = ["style", "typing"]
+fix = ["ruff check --fix .", "ruff format ."]
[envs.lint.overrides]
platform.windows.scripts = [
@@ -162,7 +153,7 @@ platform.windows.scripts = [
[envs.build]
skip-install = true
detached = true
-python = "3.9"
+python = "3.10"
dependencies = ["GitPython", "semantic-version", "commitizen", "git-cliff"]
[envs.build.scripts]
@@ -179,7 +170,7 @@ install-bundled-editable = "python ./scripts/install_bundled_editable.py"
[envs.hatch-static-analysis]
-installer="uv"
+installer = "uv"
dependencies = ["ruff"]
[envs.hatch-static-analysis.scripts]
diff --git a/intellij-client/README.md b/intellij-client/README.md
index 7ea0a2f9b..934832bc6 100644
--- a/intellij-client/README.md
+++ b/intellij-client/README.md
@@ -55,9 +55,9 @@ With RobotCode, you can focus on building and testing your automation workflows
## Requirements
-- Python 3.8 or newer
-- Robot Framework 4.1 or newer
-- PyCharm 2024.3.2 or newer
+- Python 3.10 or newer
+- Robot Framework 5.0 or newer
+- PyCharm 2025.1 or newer
## Getting Started
diff --git a/intellij-client/build.gradle.kts b/intellij-client/build.gradle.kts
index 06b61fdde..d14233e02 100644
--- a/intellij-client/build.gradle.kts
+++ b/intellij-client/build.gradle.kts
@@ -32,7 +32,7 @@ kotlin {
// Configure project's dependencies
repositories {
mavenCentral()
-
+
// IntelliJ Platform Gradle Plugin Repositories Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-repositories-extension.html
intellijPlatform {
defaultRepositories()
@@ -42,10 +42,10 @@ repositories {
// Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/platforms.html#sub:version-catalog
dependencies {
compileOnly(libs.kotlinxSerialization)
-
+
testImplementation(kotlin("test"))
testImplementation(libs.junit)
-
+
// IntelliJ Platform Gradle Plugin Dependencies Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html
intellijPlatform {
create(
@@ -53,11 +53,11 @@ dependencies {
providers.gradleProperty("platformVersion"),
useInstaller = false,
)
-
+
// Plugin Dependencies. Uses `platformBundledPlugins` property from the gradle.properties file for bundled IntelliJ Platform plugins.
bundledPlugins(providers.gradleProperty("platformBundledPlugins").map { it.split(',') })
plugins(providers.gradleProperty("platformPlugins").map { it.split(',') })
-
+
pluginVerifier()
zipSigner()
testFramework(TestFrameworkType.Platform)
@@ -69,12 +69,12 @@ intellijPlatform {
pluginConfiguration {
name = providers.gradleProperty("pluginName")
version = providers.gradleProperty("pluginVersion")
-
+
// Extract the section from README.md and provide for the plugin's manifest
description = providers.fileContents(layout.projectDirectory.file("README.md")).asText.map {
val start = ""
val end = ""
-
+
with(it.lines()) {
if (!containsAll(listOf(start, end))) {
throw GradleException("Plugin description section not found in README.md:\n$start ... $end")
@@ -82,9 +82,9 @@ intellijPlatform {
subList(indexOf(start) + 1, indexOf(end)).joinToString("\n").let(::markdownToHTML)
}
}
-
+
val changelog = project.changelog
-
+
// local variable for configuration cache compatibility // Get the latest available change notes from the changelog file
changeNotes = providers.gradleProperty("pluginVersion").map { pluginVersion ->
with(changelog) {
@@ -94,36 +94,35 @@ intellijPlatform {
)
}
}
-
+
ideaVersion {
sinceBuild = providers.gradleProperty("pluginSinceBuild")
untilBuild = providers.gradleProperty("pluginUntilBuild")
}
}
-
+
signing {
certificateChain = providers.environmentVariable("CERTIFICATE_CHAIN")
privateKey = providers.environmentVariable("PRIVATE_KEY")
password = providers.environmentVariable("PRIVATE_KEY_PASSWORD")
}
-
+
publishing {
token = providers.environmentVariable("PUBLISH_TOKEN")
-
+
// The pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3
// Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more:
// https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel
channels = providers.gradleProperty("pluginVersion")
.map { listOf(it.substringAfter('-', "").substringBefore('.').ifEmpty { "default" }) }
}
-
+
pluginVerification {
failureLevel = listOf(INVALID_PLUGIN, COMPATIBILITY_PROBLEMS, MISSING_DEPENDENCIES)
verificationReportsFormats = listOf(MARKDOWN, PLAIN)
ides {
recommended()
}
-
}
}
@@ -156,22 +155,22 @@ val prepareSandboxConfig: PrepareSandboxTask.() -> Unit = {
tasks {
runIde {
-
+
// From https://app.slack.com/client/T5P9YATH9/C5U8BM1MK
// systemProperty("ide.experimental.ui", "true")
// systemProperty("projectView.hide.dot.idea", "false")
// systemProperty("terminal.new.ui", "false")
// systemProperty("ide.tree.painter.compact.default", "true")
}
-
+
wrapper {
gradleVersion = providers.gradleProperty("gradleVersion").get()
}
-
+
publishPlugin {
dependsOn(patchChangelog)
}
-
+
prepareSandbox(prepareSandboxConfig)
}
@@ -197,9 +196,9 @@ tasks.withType {
)
}
}
-
+
prepareSandboxTask(prepareSandboxConfig)
-
+
plugins {
robotServerPlugin(Constraints.LATEST_VERSION)
}
@@ -207,19 +206,22 @@ tasks.withType {
@Suppress("unused") val runIdePyCharmProf by intellijPlatformTesting.runIde.registering {
type = IntelliJPlatformType.PyCharmProfessional
-
+
prepareSandboxTask(prepareSandboxConfig)
}
@Suppress("unused") val runIdePyCharmCommunityEAP by intellijPlatformTesting.runIde.registering {
type = IntelliJPlatformType.PyCharmCommunity
version = "LATEST-EAP-SNAPSHOT"
-
+
prepareSandboxTask(prepareSandboxConfig)
}
@Suppress("unused") val runIdeIntellijIdeaC by intellijPlatformTesting.runIde.registering {
type = IntelliJPlatformType.IntellijIdeaCommunity
-
+ plugins {
+ plugin("PythonCore:251.23774.435")
+ }
+
prepareSandboxTask(prepareSandboxConfig)
}
diff --git a/intellij-client/gradle.properties b/intellij-client/gradle.properties
index 2f865458c..06cd1ee09 100644
--- a/intellij-client/gradle.properties
+++ b/intellij-client/gradle.properties
@@ -4,7 +4,7 @@ pluginGroup = dev.robotcode
pluginName = RobotCode - Robot Framework Support
pluginRepositoryUrl = https://github.com/robotcodedev/robotcode4ij
# SemVer format -> https://semver.org
-pluginVersion = 1.3.0-dev.2
+pluginVersion = 1.7.0
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 251
@@ -18,7 +18,7 @@ platformVersion = 2025.1
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP
#platformPlugins = com.redhat.devtools.lsp4ij:0.13.0-20250502-121924@nightly
-platformPlugins = com.redhat.devtools.lsp4ij:0.13.0
+platformPlugins = com.redhat.devtools.lsp4ij:0.14.2
# Example: platformBundledPlugins = com.intellij.java
diff --git a/intellij-client/gradle/libs.versions.toml b/intellij-client/gradle/libs.versions.toml
index 6cd372049..62706db4a 100644
--- a/intellij-client/gradle/libs.versions.toml
+++ b/intellij-client/gradle/libs.versions.toml
@@ -7,7 +7,7 @@ lsp4j = "0.21.1"
# plugins
changelog = "2.2.1"
-intelliJPlatForm = "2.6.0"
+intelliJPlatForm = "2.7.0"
kotlin = "2.1.10"
kover = "0.9.1"
diff --git a/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/debugging/IRobotCodeDebugProtocolServer.kt b/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/debugging/IRobotCodeDebugProtocolServer.kt
new file mode 100644
index 000000000..27a2f8fd1
--- /dev/null
+++ b/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/debugging/IRobotCodeDebugProtocolServer.kt
@@ -0,0 +1,12 @@
+package dev.robotcode.robotcode4ij.debugging
+
+import org.eclipse.lsp4j.debug.CancelArguments
+import org.eclipse.lsp4j.debug.services.IDebugProtocolServer
+import org.eclipse.lsp4j.jsonrpc.services.JsonRequest
+import java.util.concurrent.CompletableFuture
+
+interface IRobotCodeDebugProtocolServer: IDebugProtocolServer {
+ @JsonRequest("robot/sync") fun robotSync(): CompletableFuture? {
+ throw UnsupportedOperationException()
+ }
+}
diff --git a/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/debugging/RobotCodeDebugProtocolClient.kt b/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/debugging/RobotCodeDebugProtocolClient.kt
index 718d3a061..3d3378814 100644
--- a/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/debugging/RobotCodeDebugProtocolClient.kt
+++ b/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/debugging/RobotCodeDebugProtocolClient.kt
@@ -2,6 +2,7 @@ package dev.robotcode.robotcode4ij.debugging
import com.intellij.openapi.diagnostic.thisLogger
import com.jetbrains.rd.util.reactive.Signal
+import kotlinx.coroutines.future.await
import org.eclipse.lsp4j.debug.ExitedEventArguments
import org.eclipse.lsp4j.debug.OutputEventArguments
import org.eclipse.lsp4j.debug.StoppedEventArguments
@@ -142,6 +143,8 @@ data class RobotLogMessageEventArguments(
)
@Suppress("unused") class RobotCodeDebugProtocolClient : IDebugProtocolClient {
+ var server: IRobotCodeDebugProtocolServer? = null
+
var onStopped = Signal()
val onTerminated = Signal()
val onExited = Signal()
@@ -170,39 +173,46 @@ data class RobotLogMessageEventArguments(
onStopped.fire(args)
}
- @JsonNotification("robotEnqueued") fun robotEnqueued(args: RobotEnqueuedArguments) {
+ @JsonNotification("robotEnqueued") fun robotEnqueued(args: RobotEnqueuedArguments) {
thisLogger().trace("robotEnqueued")
onRobotEnqueued.fire(args)
+ server?.robotSync()
}
@JsonNotification("robotStarted") fun robotStarted(args: RobotExecutionEventArguments) {
thisLogger().trace("robotStarted $args")
onRobotStarted.fire(args)
+ server?.robotSync()
}
@JsonNotification("robotEnded") fun robotEnded(args: RobotExecutionEventArguments) {
thisLogger().trace("robotEnded $args")
onRobotEnded.fire(args)
+ server?.robotSync()
}
@JsonNotification("robotSetFailed") fun robotSetFailed(args: RobotExecutionEventArguments) {
thisLogger().trace("robotSetFailed $args")
onRobotSetFailed.fire(args)
+ server?.robotSync()
}
@JsonNotification("robotExited") fun robotExited(args: RobotExitedEventArguments) {
thisLogger().trace("robotExited")
onRobotExited.fire(args)
+ server?.robotSync()
}
@JsonNotification("robotLog") fun robotLog(args: RobotLogMessageEventArguments) {
thisLogger().trace("robotLog")
onRobotLog.fire(args)
+ server?.robotSync()
}
@JsonNotification("robotMessage") fun robotMessage(args: RobotLogMessageEventArguments) {
thisLogger().trace("robotMessage")
onRobotMessage.fire(args)
+ server?.robotSync()
}
override fun output(args: OutputEventArguments) {
diff --git a/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/execution/RobotCodeRunProfileState.kt b/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/execution/RobotCodeRunProfileState.kt
index 31e5d9c37..2f3d7aa28 100644
--- a/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/execution/RobotCodeRunProfileState.kt
+++ b/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/execution/RobotCodeRunProfileState.kt
@@ -23,6 +23,7 @@ import com.intellij.openapi.util.Ref
import com.jetbrains.rd.util.reactive.Signal
import com.jetbrains.rd.util.reactive.adviseEternal
import dev.robotcode.robotcode4ij.buildRobotCodeCommandLine
+import dev.robotcode.robotcode4ij.debugging.IRobotCodeDebugProtocolServer
import dev.robotcode.robotcode4ij.debugging.RobotCodeDebugProgramRunner
import dev.robotcode.robotcode4ij.debugging.RobotCodeDebugProtocolClient
import dev.robotcode.robotcode4ij.utils.NetUtils.findFreePort
@@ -35,9 +36,7 @@ import kotlinx.coroutines.withContext
import kotlinx.coroutines.withTimeout
import org.eclipse.lsp4j.debug.ConfigurationDoneArguments
import org.eclipse.lsp4j.debug.InitializeRequestArguments
-import org.eclipse.lsp4j.debug.launch.DSPLauncher
-import org.eclipse.lsp4j.debug.services.IDebugProtocolServer
-import org.eclipse.lsp4j.jsonrpc.Launcher
+import org.eclipse.lsp4j.jsonrpc.debug.DebugLauncher
import java.net.Socket
import java.net.SocketTimeoutException
import kotlin.uuid.ExperimentalUuidApi
@@ -54,7 +53,7 @@ class RobotCodeRunProfileState(private val config: RobotCodeRunConfiguration, en
}
val debugClient = RobotCodeDebugProtocolClient()
- lateinit var debugServer: IDebugProtocolServer
+ lateinit var debugServer: IRobotCodeDebugProtocolServer
var isInitialized = false
private set
var isConfigurationDone = false
@@ -63,7 +62,6 @@ class RobotCodeRunProfileState(private val config: RobotCodeRunConfiguration, en
val afterInitialize = Signal()
val afterConfigurationDone = Signal()
-
init {
debugClient.onTerminated.adviseEternal {
if (socket.isConnected) socket.close()
@@ -142,8 +140,8 @@ class RobotCodeRunProfileState(private val config: RobotCodeRunConfiguration, en
consoleProperties.state = this
}
- var splitterPropertyName = SMTestRunnerConnectionUtil.getSplitterPropertyName(TESTFRAMEWORK_NAME)
- var consoleView = RobotCodeRunnerConsoleView(consoleProperties, splitterPropertyName)
+ val splitterPropertyName = SMTestRunnerConnectionUtil.getSplitterPropertyName(TESTFRAMEWORK_NAME)
+ val consoleView = RobotCodeRunnerConsoleView(consoleProperties, splitterPropertyName)
SMTestRunnerConnectionUtil.initConsoleView(consoleView, TESTFRAMEWORK_NAME)
consoleView.attachToProcess(processHandler)
consoleRef.set(consoleView)
@@ -192,17 +190,22 @@ class RobotCodeRunProfileState(private val config: RobotCodeRunConfiguration, en
@OptIn(ExperimentalUuidApi::class) override fun startNotified(event: ProcessEvent) {
runBlocking(Dispatchers.IO) {
- var port = event.processHandler.getUserData(DEBUG_PORT) ?: throw CantRunException("No debug port found.")
+ val port = event.processHandler.getUserData(DEBUG_PORT) ?: throw CantRunException("No debug port found.")
socket = tryConnectToServerWithTimeout("127.0.0.1", port, 10000, retryIntervalMillis = 100)
?: throw CantRunException("Unable to establish connection to debug server.")
- val launcher: Launcher =
- DSPLauncher.createClientLauncher(debugClient, socket.getInputStream(), socket.getOutputStream())
+ val launcher = DebugLauncher.createLauncher(
+ debugClient,
+ IRobotCodeDebugProtocolServer::class.java,
+ socket.getInputStream(),
+ socket.getOutputStream()
+ );
launcher.startListening()
debugServer = launcher.remoteProxy
+ debugClient.server = debugServer
val arguments = InitializeRequestArguments().apply {
clientID = Uuid.random().toString()
diff --git a/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/execution/RobotOutputToGeneralTestEventsConverter.kt b/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/execution/RobotOutputToGeneralTestEventsConverter.kt
index a8615093c..3efcf9327 100644
--- a/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/execution/RobotOutputToGeneralTestEventsConverter.kt
+++ b/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/execution/RobotOutputToGeneralTestEventsConverter.kt
@@ -9,7 +9,6 @@ import com.intellij.util.Urls.newLocalFileUrl
import com.intellij.util.Urls.newUrl
import com.jetbrains.rd.util.lifetime.Lifetime
import com.jetbrains.rd.util.reactive.adviseEternal
-import com.jetbrains.rd.util.threading.coroutines.adviseSuspend
import dev.robotcode.robotcode4ij.debugging.RobotExecutionEventArguments
import jetbrains.buildServer.messages.serviceMessages.ServiceMessage
import jetbrains.buildServer.messages.serviceMessages.ServiceMessageVisitor
@@ -111,24 +110,11 @@ import org.eclipse.lsp4j.debug.OutputEventArgumentsCategory
}
}
- consoleProperties.state?.debugClient?.onRobotStarted?.adviseSuspend(
- Lifetime.Eternal,
- myContext,
- this::robotStarted
+ consoleProperties.state?.debugClient?.onRobotStarted?.advise( Lifetime.Eternal, this::robotStarted
)
- consoleProperties.state?.debugClient?.onRobotEnded?.adviseSuspend(Lifetime.Eternal, myContext, this::robotEnded)
+ consoleProperties.state?.debugClient?.onRobotEnded?.advise(Lifetime.Eternal, this::robotEnded)
- // TODO: Implement this
- // consoleProperties.state?.debugClient?.onRobotLog?.adviseEternal { args ->
- // val msg = ServiceMessageBuilder.testStdOut("blah")
- //
- // msg.addAttribute("nodeId", args.itemId ?: "0").addAttribute(
- // "out", "[${args.level}] ${args.message}\n"
- // )
- // this.processServiceMessageFromRobot(msg)
- // }
-
- consoleProperties.state?.debugClient?.onOutput?.adviseSuspend(Lifetime.Eternal, myContext) { args ->
+ consoleProperties.state?.debugClient?.onOutput?.advise(Lifetime.Eternal) { args ->
val msg =
if (args.category == OutputEventArgumentsCategory.STDERR) ServiceMessageBuilder.testStdErr(args.category)
else ServiceMessageBuilder.testStdOut(args.category)
diff --git a/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/listeners/RobotCodeVirtualFileListener.kt b/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/listeners/RobotCodeVirtualFileListener.kt
index ff6eb2ad2..be110cddb 100644
--- a/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/listeners/RobotCodeVirtualFileListener.kt
+++ b/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/listeners/RobotCodeVirtualFileListener.kt
@@ -7,9 +7,9 @@ import dev.robotcode.robotcode4ij.restartAll
class RobotCodeVirtualFileListener(private val project: Project) : AsyncFileListener {
companion object {
- val PROJECT_FILES = arrayOf("robot.toml", ".robot.toml", "pyproject.toml")
+ val PROJECT_FILES = arrayOf("robot.toml", ".robot.toml", "pyproject.toml", "robocop.toml")
}
-
+
override fun prepareChange(events: List): AsyncFileListener.ChangeApplier? {
return object : AsyncFileListener.ChangeApplier {
override fun afterVfsChange() {
diff --git a/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/lsp/RobotCodeLanguageClient.kt b/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/lsp/RobotCodeLanguageClient.kt
index c67bc0826..2c6cdf741 100644
--- a/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/lsp/RobotCodeLanguageClient.kt
+++ b/intellij-client/src/main/kotlin/dev/robotcode/robotcode4ij/lsp/RobotCodeLanguageClient.kt
@@ -5,7 +5,7 @@ import com.redhat.devtools.lsp4ij.ServerStatus
import com.redhat.devtools.lsp4ij.client.IndexAwareLanguageClient
import dev.robotcode.robotcode4ij.configuration.RobotCodeProjectConfiguration
-class RobotCodeLanguageClient(project: Project?) : IndexAwareLanguageClient(project) {
+class RobotCodeLanguageClient(project: Project) : IndexAwareLanguageClient(project) {
override fun handleServerStatusChanged(serverStatus: ServerStatus) {
if (serverStatus == ServerStatus.started) {
diff --git a/package-lock.json b/package-lock.json
index 0eb28e90e..6af6df1dc 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "robotcode",
- "version": "1.3.0-dev.2",
+ "version": "1.7.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "robotcode",
- "version": "1.3.0-dev.2",
+ "version": "1.7.0",
"funding": [
{
"type": "opencollective",
@@ -17,52 +17,67 @@
"docs"
],
"dependencies": {
+ "@vscode/prompt-tsx": "^0.4.0-alpha.5",
"ansi-colors": "^4.1.3",
- "fs-extra": "^11.3.0",
+ "fs-extra": "^11.3.1",
"vscode-languageclient": "^9.0.1"
},
"devDependencies": {
- "@eslint/compat": "^1.2.9",
+ "@eslint/compat": "^1.3.2",
"@eslint/eslintrc": "^3.3.1",
- "@eslint/js": "^9.27.0",
+ "@eslint/js": "^9.33.0",
"@jgoz/esbuild-plugin-typecheck": "^4.0.3",
"@types/fs-extra": "^11.0.4",
- "@types/node": "^22.15.19",
- "@types/vscode": "^1.96.0",
- "@types/vscode-notebook-renderer": "^1.72.3",
- "@vscode/python-extension": "^1.0.5",
- "@vscode/vsce": "^3.4.1",
- "esbuild": "^0.25.4",
- "eslint": "^9.27.0",
- "eslint-config-prettier": "^10.1.5",
- "eslint-plugin-prettier": "^5.4.0",
- "globals": "^16.1.0",
- "ovsx": "^0.10.2",
- "preact": "^10.26.6",
- "prettier": "^3.5.3",
+ "@types/node": "^20.19.0",
+ "@types/vscode": "^1.99.0",
+ "@types/vscode-notebook-renderer": "^1.72.4",
+ "@vscode/python-extension": "^1.0.6",
+ "@vscode/vsce": "^3.6.0",
+ "esbuild": "^0.25.9",
+ "eslint": "^9.33.0",
+ "eslint-config-prettier": "^10.1.8",
+ "eslint-plugin-prettier": "^5.5.4",
+ "globals": "^16.3.0",
+ "ovsx": "^0.10.5",
+ "preact": "^10.27.0",
+ "prettier": "^3.6.2",
"ts-loader": "^9.5.2",
- "typescript": "^5.8.3",
- "typescript-eslint": "^8.32.1"
+ "typescript": "^5.9.2",
+ "typescript-eslint": "^8.39.1"
},
"engines": {
- "vscode": "^1.96.0"
+ "vscode": "^1.99.0"
}
},
"docs": {
- "dependencies": {
- "docs": "file:"
- },
"devDependencies": {
- "esbuild": "^0.25.4",
+ "esbuild": "^0.25.9",
"markdown-it-abbr": "^2.0.0",
"markdown-it-kbd": "^3.0.0",
"markdown-it-mathjax3": "^4.3.2",
"markdown-it-task-lists": "^2.1.1",
- "typescript": "^5.8.3",
- "typescript-eslint": "^8.32.1",
- "vitepress": "^1.6.3",
+ "typescript": "^5.9.2",
+ "typescript-eslint": "^8.39.1",
+ "vitepress": "^1.6.4",
+ "vitepress-plugin-llmstxt": "^0.4.2",
"vitepress-plugin-tabs": "^0.7.1",
- "vitepress-sidebar": "^1.31.1"
+ "vitepress-sidebar": "^1.33.0"
+ }
+ },
+ "node_modules/@algolia/abtesting": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@algolia/abtesting/-/abtesting-1.1.0.tgz",
+ "integrity": "sha512-sEyWjw28a/9iluA37KLGu8vjxEIlb60uxznfTUmXImy7H5NvbpSO6yYgmgH5KiD7j+zTUUihiST0jEP12IoXow==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/client-common": "5.35.0",
+ "@algolia/requester-browser-xhr": "5.35.0",
+ "@algolia/requester-fetch": "5.35.0",
+ "@algolia/requester-node-http": "5.35.0"
+ },
+ "engines": {
+ "node": ">= 14.0.0"
}
},
"node_modules/@algolia/autocomplete-core": {
@@ -115,41 +130,41 @@
}
},
"node_modules/@algolia/client-abtesting": {
- "version": "5.25.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.25.0.tgz",
- "integrity": "sha512-1pfQulNUYNf1Tk/svbfjfkLBS36zsuph6m+B6gDkPEivFmso/XnRgwDvjAx80WNtiHnmeNjIXdF7Gos8+OLHqQ==",
+ "version": "5.35.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.35.0.tgz",
+ "integrity": "sha512-uUdHxbfHdoppDVflCHMxRlj49/IllPwwQ2cQ8DLC4LXr3kY96AHBpW0dMyi6ygkn2MtFCc6BxXCzr668ZRhLBQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.25.0",
- "@algolia/requester-browser-xhr": "5.25.0",
- "@algolia/requester-fetch": "5.25.0",
- "@algolia/requester-node-http": "5.25.0"
+ "@algolia/client-common": "5.35.0",
+ "@algolia/requester-browser-xhr": "5.35.0",
+ "@algolia/requester-fetch": "5.35.0",
+ "@algolia/requester-node-http": "5.35.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-analytics": {
- "version": "5.25.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.25.0.tgz",
- "integrity": "sha512-AFbG6VDJX/o2vDd9hqncj1B6B4Tulk61mY0pzTtzKClyTDlNP0xaUiEKhl6E7KO9I/x0FJF5tDCm0Hn6v5x18A==",
+ "version": "5.35.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.35.0.tgz",
+ "integrity": "sha512-SunAgwa9CamLcRCPnPHx1V2uxdQwJGqb1crYrRWktWUdld0+B2KyakNEeVn5lln4VyeNtW17Ia7V7qBWyM/Skw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.25.0",
- "@algolia/requester-browser-xhr": "5.25.0",
- "@algolia/requester-fetch": "5.25.0",
- "@algolia/requester-node-http": "5.25.0"
+ "@algolia/client-common": "5.35.0",
+ "@algolia/requester-browser-xhr": "5.35.0",
+ "@algolia/requester-fetch": "5.35.0",
+ "@algolia/requester-node-http": "5.35.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-common": {
- "version": "5.25.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.25.0.tgz",
- "integrity": "sha512-il1zS/+Rc6la6RaCdSZ2YbJnkQC6W1wiBO8+SH+DE6CPMWBU6iDVzH0sCKSAtMWl9WBxoN6MhNjGBnCv9Yy2bA==",
+ "version": "5.35.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.35.0.tgz",
+ "integrity": "sha512-ipE0IuvHu/bg7TjT2s+187kz/E3h5ssfTtjpg1LbWMgxlgiaZIgTTbyynM7NfpSJSKsgQvCQxWjGUO51WSCu7w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -157,151 +172,151 @@
}
},
"node_modules/@algolia/client-insights": {
- "version": "5.25.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.25.0.tgz",
- "integrity": "sha512-blbjrUH1siZNfyCGeq0iLQu00w3a4fBXm0WRIM0V8alcAPo7rWjLbMJMrfBtzL9X5ic6wgxVpDADXduGtdrnkw==",
+ "version": "5.35.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.35.0.tgz",
+ "integrity": "sha512-UNbCXcBpqtzUucxExwTSfAe8gknAJ485NfPN6o1ziHm6nnxx97piIbcBQ3edw823Tej2Wxu1C0xBY06KgeZ7gA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.25.0",
- "@algolia/requester-browser-xhr": "5.25.0",
- "@algolia/requester-fetch": "5.25.0",
- "@algolia/requester-node-http": "5.25.0"
+ "@algolia/client-common": "5.35.0",
+ "@algolia/requester-browser-xhr": "5.35.0",
+ "@algolia/requester-fetch": "5.35.0",
+ "@algolia/requester-node-http": "5.35.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-personalization": {
- "version": "5.25.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.25.0.tgz",
- "integrity": "sha512-aywoEuu1NxChBcHZ1pWaat0Plw7A8jDMwjgRJ00Mcl7wGlwuPt5dJ/LTNcg3McsEUbs2MBNmw0ignXBw9Tbgow==",
+ "version": "5.35.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.35.0.tgz",
+ "integrity": "sha512-/KWjttZ6UCStt4QnWoDAJ12cKlQ+fkpMtyPmBgSS2WThJQdSV/4UWcqCUqGH7YLbwlj3JjNirCu3Y7uRTClxvA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.25.0",
- "@algolia/requester-browser-xhr": "5.25.0",
- "@algolia/requester-fetch": "5.25.0",
- "@algolia/requester-node-http": "5.25.0"
+ "@algolia/client-common": "5.35.0",
+ "@algolia/requester-browser-xhr": "5.35.0",
+ "@algolia/requester-fetch": "5.35.0",
+ "@algolia/requester-node-http": "5.35.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-query-suggestions": {
- "version": "5.25.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.25.0.tgz",
- "integrity": "sha512-a/W2z6XWKjKjIW1QQQV8PTTj1TXtaKx79uR3NGBdBdGvVdt24KzGAaN7sCr5oP8DW4D3cJt44wp2OY/fZcPAVA==",
+ "version": "5.35.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.35.0.tgz",
+ "integrity": "sha512-8oCuJCFf/71IYyvQQC+iu4kgViTODbXDk3m7yMctEncRSRV+u2RtDVlpGGfPlJQOrAY7OONwJlSHkmbbm2Kp/w==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.25.0",
- "@algolia/requester-browser-xhr": "5.25.0",
- "@algolia/requester-fetch": "5.25.0",
- "@algolia/requester-node-http": "5.25.0"
+ "@algolia/client-common": "5.35.0",
+ "@algolia/requester-browser-xhr": "5.35.0",
+ "@algolia/requester-fetch": "5.35.0",
+ "@algolia/requester-node-http": "5.35.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-search": {
- "version": "5.25.0",
- "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.25.0.tgz",
- "integrity": "sha512-9rUYcMIBOrCtYiLX49djyzxqdK9Dya/6Z/8sebPn94BekT+KLOpaZCuc6s0Fpfq7nx5J6YY5LIVFQrtioK9u0g==",
+ "version": "5.35.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.35.0.tgz",
+ "integrity": "sha512-FfmdHTrXhIduWyyuko1YTcGLuicVbhUyRjO3HbXE4aP655yKZgdTIfMhZ/V5VY9bHuxv/fGEh3Od1Lvv2ODNTg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.25.0",
- "@algolia/requester-browser-xhr": "5.25.0",
- "@algolia/requester-fetch": "5.25.0",
- "@algolia/requester-node-http": "5.25.0"
+ "@algolia/client-common": "5.35.0",
+ "@algolia/requester-browser-xhr": "5.35.0",
+ "@algolia/requester-fetch": "5.35.0",
+ "@algolia/requester-node-http": "5.35.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/ingestion": {
- "version": "1.25.0",
- "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.25.0.tgz",
- "integrity": "sha512-jJeH/Hk+k17Vkokf02lkfYE4A+EJX+UgnMhTLR/Mb+d1ya5WhE+po8p5a/Nxb6lo9OLCRl6w3Hmk1TX1e9gVbQ==",
+ "version": "1.35.0",
+ "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.35.0.tgz",
+ "integrity": "sha512-gPzACem9IL1Co8mM1LKMhzn1aSJmp+Vp434An4C0OBY4uEJRcqsLN3uLBlY+bYvFg8C8ImwM9YRiKczJXRk0XA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.25.0",
- "@algolia/requester-browser-xhr": "5.25.0",
- "@algolia/requester-fetch": "5.25.0",
- "@algolia/requester-node-http": "5.25.0"
+ "@algolia/client-common": "5.35.0",
+ "@algolia/requester-browser-xhr": "5.35.0",
+ "@algolia/requester-fetch": "5.35.0",
+ "@algolia/requester-node-http": "5.35.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/monitoring": {
- "version": "1.25.0",
- "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.25.0.tgz",
- "integrity": "sha512-Ls3i1AehJ0C6xaHe7kK9vPmzImOn5zBg7Kzj8tRYIcmCWVyuuFwCIsbuIIz/qzUf1FPSWmw0TZrGeTumk2fqXg==",
+ "version": "1.35.0",
+ "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.35.0.tgz",
+ "integrity": "sha512-w9MGFLB6ashI8BGcQoVt7iLgDIJNCn4OIu0Q0giE3M2ItNrssvb8C0xuwJQyTy1OFZnemG0EB1OvXhIHOvQwWw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.25.0",
- "@algolia/requester-browser-xhr": "5.25.0",
- "@algolia/requester-fetch": "5.25.0",
- "@algolia/requester-node-http": "5.25.0"
+ "@algolia/client-common": "5.35.0",
+ "@algolia/requester-browser-xhr": "5.35.0",
+ "@algolia/requester-fetch": "5.35.0",
+ "@algolia/requester-node-http": "5.35.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/recommend": {
- "version": "5.25.0",
- "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.25.0.tgz",
- "integrity": "sha512-79sMdHpiRLXVxSjgw7Pt4R1aNUHxFLHiaTDnN2MQjHwJ1+o3wSseb55T9VXU4kqy3m7TUme3pyRhLk5ip/S4Mw==",
+ "version": "5.35.0",
+ "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.35.0.tgz",
+ "integrity": "sha512-AhrVgaaXAb8Ue0u2nuRWwugt0dL5UmRgS9LXe0Hhz493a8KFeZVUE56RGIV3hAa6tHzmAV7eIoqcWTQvxzlJeQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.25.0",
- "@algolia/requester-browser-xhr": "5.25.0",
- "@algolia/requester-fetch": "5.25.0",
- "@algolia/requester-node-http": "5.25.0"
+ "@algolia/client-common": "5.35.0",
+ "@algolia/requester-browser-xhr": "5.35.0",
+ "@algolia/requester-fetch": "5.35.0",
+ "@algolia/requester-node-http": "5.35.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/requester-browser-xhr": {
- "version": "5.25.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.25.0.tgz",
- "integrity": "sha512-JLaF23p1SOPBmfEqozUAgKHQrGl3z/Z5RHbggBu6s07QqXXcazEsub5VLonCxGVqTv6a61AAPr8J1G5HgGGjEw==",
+ "version": "5.35.0",
+ "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.35.0.tgz",
+ "integrity": "sha512-diY415KLJZ6x1Kbwl9u96Jsz0OstE3asjXtJ9pmk1d+5gPuQ5jQyEsgC+WmEXzlec3iuVszm8AzNYYaqw6B+Zw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.25.0"
+ "@algolia/client-common": "5.35.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/requester-fetch": {
- "version": "5.25.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.25.0.tgz",
- "integrity": "sha512-rtzXwqzFi1edkOF6sXxq+HhmRKDy7tz84u0o5t1fXwz0cwx+cjpmxu/6OQKTdOJFS92JUYHsG51Iunie7xbqfQ==",
+ "version": "5.35.0",
+ "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.35.0.tgz",
+ "integrity": "sha512-uydqnSmpAjrgo8bqhE9N1wgcB98psTRRQXcjc4izwMB7yRl9C8uuAQ/5YqRj04U0mMQ+fdu2fcNF6m9+Z1BzDQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.25.0"
+ "@algolia/client-common": "5.35.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/requester-node-http": {
- "version": "5.25.0",
- "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.25.0.tgz",
- "integrity": "sha512-ZO0UKvDyEFvyeJQX0gmZDQEvhLZ2X10K+ps6hViMo1HgE2V8em00SwNsQ+7E/52a+YiBkVWX61pJJJE44juDMQ==",
+ "version": "5.35.0",
+ "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.35.0.tgz",
+ "integrity": "sha512-RgLX78ojYOrThJHrIiPzT4HW3yfQa0D7K+MQ81rhxqaNyNBu4F1r+72LNHYH/Z+y9I1Mrjrd/c/Ue5zfDgAEjQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.25.0"
+ "@algolia/client-common": "5.35.0"
},
"engines": {
"node": ">= 14.0.0"
@@ -338,9 +353,9 @@
}
},
"node_modules/@azure/core-auth": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.9.0.tgz",
- "integrity": "sha512-FPwHpZywuyasDSLMqJ6fhbOK3TqUdviZNF8OqRGA4W5Ewib2lEEZ+pBsYcBa88B2NGO/SEnYPGhyBqNlE8ilSw==",
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.10.0.tgz",
+ "integrity": "sha512-88Djs5vBvGbHQHf5ZZcaoNHo6Y8BKZkt3cw2iuJIQzLEgH4Ox6Tm4hjFhbqOxyYsgIG/eJbFEHpxRIfEEWv5Ow==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -349,13 +364,13 @@
"tslib": "^2.6.2"
},
"engines": {
- "node": ">=18.0.0"
+ "node": ">=20.0.0"
}
},
"node_modules/@azure/core-client": {
- "version": "1.9.4",
- "resolved": "https://registry.npmjs.org/@azure/core-client/-/core-client-1.9.4.tgz",
- "integrity": "sha512-f7IxTD15Qdux30s2qFARH+JxgwxWLG2Rlr4oSkPGuLWm+1p5y1+C04XGLA0vmX6EtqfutmjvpNmAfgwVIS5hpw==",
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/@azure/core-client/-/core-client-1.10.0.tgz",
+ "integrity": "sha512-O4aP3CLFNodg8eTHXECaH3B3CjicfzkxVtnrfLkOq0XNP7TIECGfHpK/C6vADZkWP75wzmdBnsIA8ksuJMk18g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -368,13 +383,13 @@
"tslib": "^2.6.2"
},
"engines": {
- "node": ">=18.0.0"
+ "node": ">=20.0.0"
}
},
"node_modules/@azure/core-rest-pipeline": {
- "version": "1.20.0",
- "resolved": "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.20.0.tgz",
- "integrity": "sha512-ASoP8uqZBS3H/8N8at/XwFr6vYrRP3syTK0EUjDXQy0Y1/AUS+QeIRThKmTNJO2RggvBBxaXDPM7YoIwDGeA0g==",
+ "version": "1.22.0",
+ "resolved": "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.22.0.tgz",
+ "integrity": "sha512-OKHmb3/Kpm06HypvB3g6Q3zJuvyXcpxDpCS1PnU8OV6AJgSFaee/covXBcPbWc6XDDxtEPlbi3EMQ6nUiPaQtw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -383,45 +398,45 @@
"@azure/core-tracing": "^1.0.1",
"@azure/core-util": "^1.11.0",
"@azure/logger": "^1.0.0",
- "@typespec/ts-http-runtime": "^0.2.2",
+ "@typespec/ts-http-runtime": "^0.3.0",
"tslib": "^2.6.2"
},
"engines": {
- "node": ">=18.0.0"
+ "node": ">=20.0.0"
}
},
"node_modules/@azure/core-tracing": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.2.0.tgz",
- "integrity": "sha512-UKTiEJPkWcESPYJz3X5uKRYyOcJD+4nYph+KpfdPRnQJVrZfk0KJgdnaAWKfhsBBtAf/D58Az4AvCJEmWgIBAg==",
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.3.0.tgz",
+ "integrity": "sha512-+XvmZLLWPe67WXNZo9Oc9CrPj/Tm8QnHR92fFAFdnbzwNdCH1h+7UdpaQgRSBsMY+oW1kHXNUZQLdZ1gHX3ROw==",
"dev": true,
"license": "MIT",
"dependencies": {
"tslib": "^2.6.2"
},
"engines": {
- "node": ">=18.0.0"
+ "node": ">=20.0.0"
}
},
"node_modules/@azure/core-util": {
- "version": "1.12.0",
- "resolved": "https://registry.npmjs.org/@azure/core-util/-/core-util-1.12.0.tgz",
- "integrity": "sha512-13IyjTQgABPARvG90+N2dXpC+hwp466XCdQXPCRlbWHgd3SJd5Q1VvaBGv6k1BIa4MQm6hAF1UBU1m8QUxV8sQ==",
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/@azure/core-util/-/core-util-1.13.0.tgz",
+ "integrity": "sha512-o0psW8QWQ58fq3i24Q1K2XfS/jYTxr7O1HRcyUE9bV9NttLU+kYOH82Ixj8DGlMTOWgxm1Sss2QAfKK5UkSPxw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@azure/abort-controller": "^2.0.0",
- "@typespec/ts-http-runtime": "^0.2.2",
+ "@typespec/ts-http-runtime": "^0.3.0",
"tslib": "^2.6.2"
},
"engines": {
- "node": ">=18.0.0"
+ "node": ">=20.0.0"
}
},
"node_modules/@azure/identity": {
- "version": "4.10.0",
- "resolved": "https://registry.npmjs.org/@azure/identity/-/identity-4.10.0.tgz",
- "integrity": "sha512-iT53Sre2NJK6wzMWnvpjNiR3md597LZ3uK/5kQD2TkrY9vqhrY5bt2KwELNjkOWQ9n8S/92knj/QEykTtjMNqQ==",
+ "version": "4.11.1",
+ "resolved": "https://registry.npmjs.org/@azure/identity/-/identity-4.11.1.tgz",
+ "integrity": "sha512-0ZdsLRaOyLxtCYgyuqyWqGU5XQ9gGnjxgfoNTt1pvELGkkUFrMATABZFIq8gusM7N1qbqpVtwLOhk0d/3kacLg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -438,40 +453,40 @@
"tslib": "^2.2.0"
},
"engines": {
- "node": ">=18.0.0"
+ "node": ">=20.0.0"
}
},
"node_modules/@azure/logger": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@azure/logger/-/logger-1.2.0.tgz",
- "integrity": "sha512-0hKEzLhpw+ZTAfNJyRrn6s+V0nDWzXk9OjBr2TiGIu0OfMr5s2V4FpKLTAK3Ca5r5OKLbf4hkOGDPyiRjie/jA==",
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/@azure/logger/-/logger-1.3.0.tgz",
+ "integrity": "sha512-fCqPIfOcLE+CGqGPd66c8bZpwAji98tZ4JI9i/mlTNTlsIWslCfpg48s/ypyLxZTump5sypjrKn2/kY7q8oAbA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@typespec/ts-http-runtime": "^0.2.2",
+ "@typespec/ts-http-runtime": "^0.3.0",
"tslib": "^2.6.2"
},
"engines": {
- "node": ">=18.0.0"
+ "node": ">=20.0.0"
}
},
"node_modules/@azure/msal-browser": {
- "version": "4.12.0",
- "resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-4.12.0.tgz",
- "integrity": "sha512-WD1lmVWchg7wn1mI7Tr4v7QPyTwK+8Nuyje3jRpOFENLRLEBsdK8VVdTw3C+TypZmYn4cOAdj3zREnuFXgvfIA==",
+ "version": "4.20.0",
+ "resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-4.20.0.tgz",
+ "integrity": "sha512-JBGaxnYAvzFsT5TU6XhVpqc4XVMFjzsi6rrAVINX0PL3+wzs+k12fnvN/XFICvzCfV28NvHzxGfRRBoqE6GxNg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@azure/msal-common": "15.6.0"
+ "@azure/msal-common": "15.11.0"
},
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/@azure/msal-common": {
- "version": "15.6.0",
- "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-15.6.0.tgz",
- "integrity": "sha512-EotmBz42apYGjqiIV9rDUdptaMptpTn4TdGf3JfjLvFvinSe9BJ6ywU92K9ky+t/b0ghbeTSe9RfqlgLh8f2jA==",
+ "version": "15.11.0",
+ "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-15.11.0.tgz",
+ "integrity": "sha512-1IseGNH6XGWe+5xhZlhasTJP6Ob7tnVSlfFUnjdeH4Kik0n1SORTmdB6xxTwbx9Ro8EuO0XaRzpdABWSf15sdg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -479,13 +494,13 @@
}
},
"node_modules/@azure/msal-node": {
- "version": "3.5.3",
- "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-3.5.3.tgz",
- "integrity": "sha512-c5mifzHX5mwm5JqMIlURUyp6LEEdKF1a8lmcNRLBo0lD7zpSYPHupa4jHyhJyg9ccLwszLguZJdk2h3ngnXwNw==",
+ "version": "3.7.1",
+ "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-3.7.1.tgz",
+ "integrity": "sha512-ZTopY+BmE/OubqTXEQ5Eq+h6M5NKTchQBtvLj1tgiAf26lk2C+9jJTvtHjcyzE3iWn3wzySJLa4ArcjHJaZMQw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@azure/msal-common": "15.6.0",
+ "@azure/msal-common": "15.11.0",
"jsonwebtoken": "^9.0.0",
"uuid": "^8.3.0"
},
@@ -529,13 +544,13 @@
}
},
"node_modules/@babel/parser": {
- "version": "7.27.2",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.2.tgz",
- "integrity": "sha512-QYLs8299NA7WM/bZAdp+CviYYkVoYXlDW2rzliy3chxd1PQjej7JORuMJDJXJUb9g0TT+B99EwaVLKmX+sPXWw==",
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.0.tgz",
+ "integrity": "sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.27.1"
+ "@babel/types": "^7.28.0"
},
"bin": {
"parser": "bin/babel-parser.js"
@@ -545,9 +560,9 @@
}
},
"node_modules/@babel/types": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.1.tgz",
- "integrity": "sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==",
+ "version": "7.28.2",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.2.tgz",
+ "integrity": "sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -609,10 +624,44 @@
}
}
},
+ "node_modules/@emnapi/core": {
+ "version": "1.4.5",
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.4.5.tgz",
+ "integrity": "sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@emnapi/wasi-threads": "1.0.4",
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@emnapi/runtime": {
+ "version": "1.4.5",
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.4.5.tgz",
+ "integrity": "sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@emnapi/wasi-threads": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.0.4.tgz",
+ "integrity": "sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
"node_modules/@esbuild/aix-ppc64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.4.tgz",
- "integrity": "sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.9.tgz",
+ "integrity": "sha512-OaGtL73Jck6pBKjNIe24BnFE6agGl+6KxDtTfHhy1HmhthfKouEcOhqpSL64K4/0WCtbKFLOdzD/44cJ4k9opA==",
"cpu": [
"ppc64"
],
@@ -627,9 +676,9 @@
}
},
"node_modules/@esbuild/android-arm": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.4.tgz",
- "integrity": "sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.9.tgz",
+ "integrity": "sha512-5WNI1DaMtxQ7t7B6xa572XMXpHAaI/9Hnhk8lcxF4zVN4xstUgTlvuGDorBguKEnZO70qwEcLpfifMLoxiPqHQ==",
"cpu": [
"arm"
],
@@ -644,9 +693,9 @@
}
},
"node_modules/@esbuild/android-arm64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.4.tgz",
- "integrity": "sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.9.tgz",
+ "integrity": "sha512-IDrddSmpSv51ftWslJMvl3Q2ZT98fUSL2/rlUXuVqRXHCs5EUF1/f+jbjF5+NG9UffUDMCiTyh8iec7u8RlTLg==",
"cpu": [
"arm64"
],
@@ -661,9 +710,9 @@
}
},
"node_modules/@esbuild/android-x64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.4.tgz",
- "integrity": "sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.9.tgz",
+ "integrity": "sha512-I853iMZ1hWZdNllhVZKm34f4wErd4lMyeV7BLzEExGEIZYsOzqDWDf+y082izYUE8gtJnYHdeDpN/6tUdwvfiw==",
"cpu": [
"x64"
],
@@ -678,9 +727,9 @@
}
},
"node_modules/@esbuild/darwin-arm64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.4.tgz",
- "integrity": "sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.9.tgz",
+ "integrity": "sha512-XIpIDMAjOELi/9PB30vEbVMs3GV1v2zkkPnuyRRURbhqjyzIINwj+nbQATh4H9GxUgH1kFsEyQMxwiLFKUS6Rg==",
"cpu": [
"arm64"
],
@@ -695,9 +744,9 @@
}
},
"node_modules/@esbuild/darwin-x64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.4.tgz",
- "integrity": "sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.9.tgz",
+ "integrity": "sha512-jhHfBzjYTA1IQu8VyrjCX4ApJDnH+ez+IYVEoJHeqJm9VhG9Dh2BYaJritkYK3vMaXrf7Ogr/0MQ8/MeIefsPQ==",
"cpu": [
"x64"
],
@@ -712,9 +761,9 @@
}
},
"node_modules/@esbuild/freebsd-arm64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.4.tgz",
- "integrity": "sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.9.tgz",
+ "integrity": "sha512-z93DmbnY6fX9+KdD4Ue/H6sYs+bhFQJNCPZsi4XWJoYblUqT06MQUdBCpcSfuiN72AbqeBFu5LVQTjfXDE2A6Q==",
"cpu": [
"arm64"
],
@@ -729,9 +778,9 @@
}
},
"node_modules/@esbuild/freebsd-x64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.4.tgz",
- "integrity": "sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.9.tgz",
+ "integrity": "sha512-mrKX6H/vOyo5v71YfXWJxLVxgy1kyt1MQaD8wZJgJfG4gq4DpQGpgTB74e5yBeQdyMTbgxp0YtNj7NuHN0PoZg==",
"cpu": [
"x64"
],
@@ -746,9 +795,9 @@
}
},
"node_modules/@esbuild/linux-arm": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.4.tgz",
- "integrity": "sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.9.tgz",
+ "integrity": "sha512-HBU2Xv78SMgaydBmdor38lg8YDnFKSARg1Q6AT0/y2ezUAKiZvc211RDFHlEZRFNRVhcMamiToo7bDx3VEOYQw==",
"cpu": [
"arm"
],
@@ -763,9 +812,9 @@
}
},
"node_modules/@esbuild/linux-arm64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.4.tgz",
- "integrity": "sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.9.tgz",
+ "integrity": "sha512-BlB7bIcLT3G26urh5Dmse7fiLmLXnRlopw4s8DalgZ8ef79Jj4aUcYbk90g8iCa2467HX8SAIidbL7gsqXHdRw==",
"cpu": [
"arm64"
],
@@ -780,9 +829,9 @@
}
},
"node_modules/@esbuild/linux-ia32": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.4.tgz",
- "integrity": "sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.9.tgz",
+ "integrity": "sha512-e7S3MOJPZGp2QW6AK6+Ly81rC7oOSerQ+P8L0ta4FhVi+/j/v2yZzx5CqqDaWjtPFfYz21Vi1S0auHrap3Ma3A==",
"cpu": [
"ia32"
],
@@ -797,9 +846,9 @@
}
},
"node_modules/@esbuild/linux-loong64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.4.tgz",
- "integrity": "sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.9.tgz",
+ "integrity": "sha512-Sbe10Bnn0oUAB2AalYztvGcK+o6YFFA/9829PhOCUS9vkJElXGdphz0A3DbMdP8gmKkqPmPcMJmJOrI3VYB1JQ==",
"cpu": [
"loong64"
],
@@ -814,9 +863,9 @@
}
},
"node_modules/@esbuild/linux-mips64el": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.4.tgz",
- "integrity": "sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.9.tgz",
+ "integrity": "sha512-YcM5br0mVyZw2jcQeLIkhWtKPeVfAerES5PvOzaDxVtIyZ2NUBZKNLjC5z3/fUlDgT6w89VsxP2qzNipOaaDyA==",
"cpu": [
"mips64el"
],
@@ -831,9 +880,9 @@
}
},
"node_modules/@esbuild/linux-ppc64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.4.tgz",
- "integrity": "sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.9.tgz",
+ "integrity": "sha512-++0HQvasdo20JytyDpFvQtNrEsAgNG2CY1CLMwGXfFTKGBGQT3bOeLSYE2l1fYdvML5KUuwn9Z8L1EWe2tzs1w==",
"cpu": [
"ppc64"
],
@@ -848,9 +897,9 @@
}
},
"node_modules/@esbuild/linux-riscv64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.4.tgz",
- "integrity": "sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.9.tgz",
+ "integrity": "sha512-uNIBa279Y3fkjV+2cUjx36xkx7eSjb8IvnL01eXUKXez/CBHNRw5ekCGMPM0BcmqBxBcdgUWuUXmVWwm4CH9kg==",
"cpu": [
"riscv64"
],
@@ -865,9 +914,9 @@
}
},
"node_modules/@esbuild/linux-s390x": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.4.tgz",
- "integrity": "sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.9.tgz",
+ "integrity": "sha512-Mfiphvp3MjC/lctb+7D287Xw1DGzqJPb/J2aHHcHxflUo+8tmN/6d4k6I2yFR7BVo5/g7x2Monq4+Yew0EHRIA==",
"cpu": [
"s390x"
],
@@ -882,9 +931,9 @@
}
},
"node_modules/@esbuild/linux-x64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.4.tgz",
- "integrity": "sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.9.tgz",
+ "integrity": "sha512-iSwByxzRe48YVkmpbgoxVzn76BXjlYFXC7NvLYq+b+kDjyyk30J0JY47DIn8z1MO3K0oSl9fZoRmZPQI4Hklzg==",
"cpu": [
"x64"
],
@@ -899,9 +948,9 @@
}
},
"node_modules/@esbuild/netbsd-arm64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.4.tgz",
- "integrity": "sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.9.tgz",
+ "integrity": "sha512-9jNJl6FqaUG+COdQMjSCGW4QiMHH88xWbvZ+kRVblZsWrkXlABuGdFJ1E9L7HK+T0Yqd4akKNa/lO0+jDxQD4Q==",
"cpu": [
"arm64"
],
@@ -916,9 +965,9 @@
}
},
"node_modules/@esbuild/netbsd-x64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.4.tgz",
- "integrity": "sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.9.tgz",
+ "integrity": "sha512-RLLdkflmqRG8KanPGOU7Rpg829ZHu8nFy5Pqdi9U01VYtG9Y0zOG6Vr2z4/S+/3zIyOxiK6cCeYNWOFR9QP87g==",
"cpu": [
"x64"
],
@@ -933,9 +982,9 @@
}
},
"node_modules/@esbuild/openbsd-arm64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.4.tgz",
- "integrity": "sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.9.tgz",
+ "integrity": "sha512-YaFBlPGeDasft5IIM+CQAhJAqS3St3nJzDEgsgFixcfZeyGPCd6eJBWzke5piZuZ7CtL656eOSYKk4Ls2C0FRQ==",
"cpu": [
"arm64"
],
@@ -950,9 +999,9 @@
}
},
"node_modules/@esbuild/openbsd-x64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.4.tgz",
- "integrity": "sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.9.tgz",
+ "integrity": "sha512-1MkgTCuvMGWuqVtAvkpkXFmtL8XhWy+j4jaSO2wxfJtilVCi0ZE37b8uOdMItIHz4I6z1bWWtEX4CJwcKYLcuA==",
"cpu": [
"x64"
],
@@ -966,10 +1015,27 @@
"node": ">=18"
}
},
+ "node_modules/@esbuild/openharmony-arm64": {
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.9.tgz",
+ "integrity": "sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openharmony"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
"node_modules/@esbuild/sunos-x64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.4.tgz",
- "integrity": "sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.9.tgz",
+ "integrity": "sha512-WjH4s6hzo00nNezhp3wFIAfmGZ8U7KtrJNlFMRKxiI9mxEK1scOMAaa9i4crUtu+tBr+0IN6JCuAcSBJZfnphw==",
"cpu": [
"x64"
],
@@ -984,9 +1050,9 @@
}
},
"node_modules/@esbuild/win32-arm64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.4.tgz",
- "integrity": "sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.9.tgz",
+ "integrity": "sha512-mGFrVJHmZiRqmP8xFOc6b84/7xa5y5YvR1x8djzXpJBSv/UsNK6aqec+6JDjConTgvvQefdGhFDAs2DLAds6gQ==",
"cpu": [
"arm64"
],
@@ -1001,9 +1067,9 @@
}
},
"node_modules/@esbuild/win32-ia32": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.4.tgz",
- "integrity": "sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.9.tgz",
+ "integrity": "sha512-b33gLVU2k11nVx1OhX3C8QQP6UHQK4ZtN56oFWvVXvz2VkDoe6fbG8TOgHFxEvqeqohmRnIHe5A1+HADk4OQww==",
"cpu": [
"ia32"
],
@@ -1018,9 +1084,9 @@
}
},
"node_modules/@esbuild/win32-x64": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.4.tgz",
- "integrity": "sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.9.tgz",
+ "integrity": "sha512-PPOl1mi6lpLNQxnGoyAfschAodRFYXJ+9fs6WHXz7CSWKbOqiMZsubC+BQsVKuul+3vKLuwTHsS2c2y9EoKwxQ==",
"cpu": [
"x64"
],
@@ -1077,16 +1143,16 @@
}
},
"node_modules/@eslint/compat": {
- "version": "1.2.9",
- "resolved": "https://registry.npmjs.org/@eslint/compat/-/compat-1.2.9.tgz",
- "integrity": "sha512-gCdSY54n7k+driCadyMNv8JSPzYLeDVM/ikZRtvtROBpRdFSkS8W9A82MqsaY7lZuwL0wiapgD0NT1xT0hyJsA==",
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/@eslint/compat/-/compat-1.3.2.tgz",
+ "integrity": "sha512-jRNwzTbd6p2Rw4sZ1CgWRS8YMtqG15YyZf7zvb6gY2rB2u6n+2Z+ELW0GtL0fQgyl0pr4Y/BzBfng/BdsereRA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"peerDependencies": {
- "eslint": "^9.10.0"
+ "eslint": "^8.40 || 9"
},
"peerDependenciesMeta": {
"eslint": {
@@ -1095,9 +1161,9 @@
}
},
"node_modules/@eslint/config-array": {
- "version": "0.20.0",
- "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.20.0.tgz",
- "integrity": "sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==",
+ "version": "0.21.0",
+ "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.0.tgz",
+ "integrity": "sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -1110,9 +1176,9 @@
}
},
"node_modules/@eslint/config-helpers": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.2.tgz",
- "integrity": "sha512-+GPzk8PlG0sPpzdU5ZvIRMPidzAnZDl/s9L+y13iodqvb8leL53bTannOrQ/Im7UkpsmFU5Ily5U60LWixnmLg==",
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.3.1.tgz",
+ "integrity": "sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -1120,9 +1186,9 @@
}
},
"node_modules/@eslint/core": {
- "version": "0.14.0",
- "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.14.0.tgz",
- "integrity": "sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg==",
+ "version": "0.15.2",
+ "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.2.tgz",
+ "integrity": "sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -1170,9 +1236,9 @@
}
},
"node_modules/@eslint/js": {
- "version": "9.27.0",
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.27.0.tgz",
- "integrity": "sha512-G5JD9Tu5HJEu4z2Uo4aHY2sLV64B7CDMXxFzqzjl3NKd6RVzSXNoE80jk7Y0lJkTTkjiIhBAqmlYwjuBY3tvpA==",
+ "version": "9.33.0",
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.33.0.tgz",
+ "integrity": "sha512-5K1/mKhWaMfreBGJTwval43JJmkip0RmM+3+IuqupeSKNC/Th2Kc7ucaq5ovTSra/OOKB9c58CGSz3QMVbWt0A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -1193,13 +1259,13 @@
}
},
"node_modules/@eslint/plugin-kit": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.1.tgz",
- "integrity": "sha512-0J+zgWxHN+xXONWIyPWKFMgVuJoZuGiIFu8yxk7RJjxkzpGmyja5wRFqZIVtjDVOQpV+Rw0iOAjYPE2eQyjr0w==",
+ "version": "0.3.5",
+ "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.5.tgz",
+ "integrity": "sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "@eslint/core": "^0.14.0",
+ "@eslint/core": "^0.15.2",
"levn": "^0.4.1"
},
"engines": {
@@ -1273,9 +1339,9 @@
}
},
"node_modules/@iconify-json/simple-icons": {
- "version": "1.2.35",
- "resolved": "https://registry.npmjs.org/@iconify-json/simple-icons/-/simple-icons-1.2.35.tgz",
- "integrity": "sha512-PAHZZn6P5ToHMhmEeeh/O96E/Ep4PctN44N64dWYbDasEvbVoN6x62m+Doz8au0SVS4/zYEMAsDO6TdO9ep84Q==",
+ "version": "1.2.47",
+ "resolved": "https://registry.npmjs.org/@iconify-json/simple-icons/-/simple-icons-1.2.47.tgz",
+ "integrity": "sha512-wa/2O7G4sBmwSEWWLh5C+HeY00lVOoWYRKJOYQtk7lAbQrHUReD1ijiGOyTynV1YavxtNueL1CBA1UZmYJfOrQ==",
"dev": true,
"license": "CC0-1.0",
"dependencies": {
@@ -1289,6 +1355,29 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/@isaacs/balanced-match": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz",
+ "integrity": "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "20 || >=22"
+ }
+ },
+ "node_modules/@isaacs/brace-expansion": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz",
+ "integrity": "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@isaacs/balanced-match": "^4.0.1"
+ },
+ "engines": {
+ "node": "20 || >=22"
+ }
+ },
"node_modules/@isaacs/cliui": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
@@ -1307,19 +1396,6 @@
"node": ">=12"
}
},
- "node_modules/@isaacs/cliui/node_modules/ansi-regex": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
- "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-regex?sponsor=1"
- }
- },
"node_modules/@isaacs/cliui/node_modules/emoji-regex": {
"version": "9.2.2",
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
@@ -1345,22 +1421,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/@isaacs/cliui/node_modules/strip-ansi": {
- "version": "7.1.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
- "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^6.0.1"
- },
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/chalk/strip-ansi?sponsor=1"
- }
- },
"node_modules/@jgoz/esbuild-plugin-typecheck": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/@jgoz/esbuild-plugin-typecheck/-/esbuild-plugin-typecheck-4.0.3.tgz",
@@ -1379,19 +1439,15 @@
}
},
"node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.8",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
- "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
+ "version": "0.3.13",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
- "@jridgewell/set-array": "^1.2.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
+ "@jridgewell/sourcemap-codec": "^1.5.0",
"@jridgewell/trace-mapping": "^0.3.24"
- },
- "engines": {
- "node": ">=6.0.0"
}
},
"node_modules/@jridgewell/resolve-uri": {
@@ -1405,21 +1461,10 @@
"node": ">=6.0.0"
}
},
- "node_modules/@jridgewell/set-array": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
- "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "engines": {
- "node": ">=6.0.0"
- }
- },
"node_modules/@jridgewell/source-map": {
- "version": "0.3.6",
- "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz",
- "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==",
+ "version": "0.3.11",
+ "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz",
+ "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==",
"dev": true,
"license": "MIT",
"peer": true,
@@ -1429,16 +1474,16 @@
}
},
"node_modules/@jridgewell/sourcemap-codec": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
- "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
+ "version": "1.5.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
"dev": true,
"license": "MIT"
},
"node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.25",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
- "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
+ "version": "0.3.30",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.30.tgz",
+ "integrity": "sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==",
"dev": true,
"license": "MIT",
"peer": true,
@@ -1447,72 +1492,53 @@
"@jridgewell/sourcemap-codec": "^1.4.14"
}
},
- "node_modules/@nodelib/fs.scandir": {
- "version": "2.1.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
- "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@nodelib/fs.stat": "2.0.5",
- "run-parallel": "^1.1.9"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@nodelib/fs.stat": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
- "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@nodelib/fs.walk": {
- "version": "1.2.8",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
- "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@nodelib/fs.scandir": "2.1.5",
- "fastq": "^1.6.0"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@pkgjs/parseargs": {
- "version": "0.11.0",
- "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
- "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
+ "node_modules/@napi-rs/wasm-runtime": {
+ "version": "0.2.12",
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz",
+ "integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==",
"dev": true,
"license": "MIT",
"optional": true,
- "engines": {
- "node": ">=14"
+ "dependencies": {
+ "@emnapi/core": "^1.4.3",
+ "@emnapi/runtime": "^1.4.3",
+ "@tybys/wasm-util": "^0.10.0"
}
},
- "node_modules/@pkgr/core": {
- "version": "0.2.4",
- "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.4.tgz",
- "integrity": "sha512-ROFF39F6ZrnzSUEmQQZUar0Jt4xVoP9WnDRdWwF4NNcXs3xBTLgBUDoOwW141y1jP+S8nahIbdxbFC7IShw9Iw==",
+ "node_modules/@node-rs/crc32": {
+ "version": "1.10.6",
+ "resolved": "https://registry.npmjs.org/@node-rs/crc32/-/crc32-1.10.6.tgz",
+ "integrity": "sha512-+llXfqt+UzgoDzT9of5vPQPGqTAVCohU74I9zIBkNo5TH6s2P31DFJOGsJQKN207f0GHnYv5pV3wh3BCY/un/A==",
"dev": true,
"license": "MIT",
"engines": {
- "node": "^12.20.0 || ^14.18.0 || >=16.0.0"
+ "node": ">= 10"
},
"funding": {
- "url": "https://opencollective.com/pkgr"
- }
- },
- "node_modules/@rollup/rollup-android-arm-eabi": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.41.0.tgz",
- "integrity": "sha512-KxN+zCjOYHGwCl4UCtSfZ6jrq/qi88JDUtiEFk8LELEHq2Egfc/FgW+jItZiOLRuQfb/3xJSgFuNPC9jzggX+A==",
+ "type": "github",
+ "url": "https://github.com/sponsors/Brooooooklyn"
+ },
+ "optionalDependencies": {
+ "@node-rs/crc32-android-arm-eabi": "1.10.6",
+ "@node-rs/crc32-android-arm64": "1.10.6",
+ "@node-rs/crc32-darwin-arm64": "1.10.6",
+ "@node-rs/crc32-darwin-x64": "1.10.6",
+ "@node-rs/crc32-freebsd-x64": "1.10.6",
+ "@node-rs/crc32-linux-arm-gnueabihf": "1.10.6",
+ "@node-rs/crc32-linux-arm64-gnu": "1.10.6",
+ "@node-rs/crc32-linux-arm64-musl": "1.10.6",
+ "@node-rs/crc32-linux-x64-gnu": "1.10.6",
+ "@node-rs/crc32-linux-x64-musl": "1.10.6",
+ "@node-rs/crc32-wasm32-wasi": "1.10.6",
+ "@node-rs/crc32-win32-arm64-msvc": "1.10.6",
+ "@node-rs/crc32-win32-ia32-msvc": "1.10.6",
+ "@node-rs/crc32-win32-x64-msvc": "1.10.6"
+ }
+ },
+ "node_modules/@node-rs/crc32-android-arm-eabi": {
+ "version": "1.10.6",
+ "resolved": "https://registry.npmjs.org/@node-rs/crc32-android-arm-eabi/-/crc32-android-arm-eabi-1.10.6.tgz",
+ "integrity": "sha512-vZAMuJXm3TpWPOkkhxdrofWDv+Q+I2oO7ucLRbXyAPmXFNDhHtBxbO1rk9Qzz+M3eep8ieS4/+jCL1Q0zacNMQ==",
"cpu": [
"arm"
],
@@ -1521,12 +1547,15 @@
"optional": true,
"os": [
"android"
- ]
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
},
- "node_modules/@rollup/rollup-android-arm64": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.41.0.tgz",
- "integrity": "sha512-yDvqx3lWlcugozax3DItKJI5j05B0d4Kvnjx+5mwiUpWramVvmAByYigMplaoAQ3pvdprGCTCE03eduqE/8mPQ==",
+ "node_modules/@node-rs/crc32-android-arm64": {
+ "version": "1.10.6",
+ "resolved": "https://registry.npmjs.org/@node-rs/crc32-android-arm64/-/crc32-android-arm64-1.10.6.tgz",
+ "integrity": "sha512-Vl/JbjCinCw/H9gEpZveWCMjxjcEChDcDBM8S4hKay5yyoRCUHJPuKr4sjVDBeOm+1nwU3oOm6Ca8dyblwp4/w==",
"cpu": [
"arm64"
],
@@ -1535,12 +1564,15 @@
"optional": true,
"os": [
"android"
- ]
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
},
- "node_modules/@rollup/rollup-darwin-arm64": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.41.0.tgz",
- "integrity": "sha512-2KOU574vD3gzcPSjxO0eyR5iWlnxxtmW1F5CkNOHmMlueKNCQkxR6+ekgWyVnz6zaZihpUNkGxjsYrkTJKhkaw==",
+ "node_modules/@node-rs/crc32-darwin-arm64": {
+ "version": "1.10.6",
+ "resolved": "https://registry.npmjs.org/@node-rs/crc32-darwin-arm64/-/crc32-darwin-arm64-1.10.6.tgz",
+ "integrity": "sha512-kARYANp5GnmsQiViA5Qu74weYQ3phOHSYQf0G+U5wB3NB5JmBHnZcOc46Ig21tTypWtdv7u63TaltJQE41noyg==",
"cpu": [
"arm64"
],
@@ -1549,12 +1581,15 @@
"optional": true,
"os": [
"darwin"
- ]
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
},
- "node_modules/@rollup/rollup-darwin-x64": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.41.0.tgz",
- "integrity": "sha512-gE5ACNSxHcEZyP2BA9TuTakfZvULEW4YAOtxl/A/YDbIir/wPKukde0BNPlnBiP88ecaN4BJI2TtAd+HKuZPQQ==",
+ "node_modules/@node-rs/crc32-darwin-x64": {
+ "version": "1.10.6",
+ "resolved": "https://registry.npmjs.org/@node-rs/crc32-darwin-x64/-/crc32-darwin-x64-1.10.6.tgz",
+ "integrity": "sha512-Q99bevJVMfLTISpkpKBlXgtPUItrvTWKFyiqoKH5IvscZmLV++NH4V13Pa17GTBmv9n18OwzgQY4/SRq6PQNVA==",
"cpu": [
"x64"
],
@@ -1563,26 +1598,15 @@
"optional": true,
"os": [
"darwin"
- ]
- },
- "node_modules/@rollup/rollup-freebsd-arm64": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.41.0.tgz",
- "integrity": "sha512-GSxU6r5HnWij7FoSo7cZg3l5GPg4HFLkzsFFh0N/b16q5buW1NAWuCJ+HMtIdUEi6XF0qH+hN0TEd78laRp7Dg==",
- "cpu": [
- "arm64"
],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ]
+ "engines": {
+ "node": ">= 10"
+ }
},
- "node_modules/@rollup/rollup-freebsd-x64": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.41.0.tgz",
- "integrity": "sha512-KGiGKGDg8qLRyOWmk6IeiHJzsN/OYxO6nSbT0Vj4MwjS2XQy/5emsmtoqLAabqrohbgLWJ5GV3s/ljdrIr8Qjg==",
+ "node_modules/@node-rs/crc32-freebsd-x64": {
+ "version": "1.10.6",
+ "resolved": "https://registry.npmjs.org/@node-rs/crc32-freebsd-x64/-/crc32-freebsd-x64-1.10.6.tgz",
+ "integrity": "sha512-66hpawbNjrgnS9EDMErta/lpaqOMrL6a6ee+nlI2viduVOmRZWm9Rg9XdGTK/+c4bQLdtC6jOd+Kp4EyGRYkAg==",
"cpu": [
"x64"
],
@@ -1591,12 +1615,15 @@
"optional": true,
"os": [
"freebsd"
- ]
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
},
- "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.41.0.tgz",
- "integrity": "sha512-46OzWeqEVQyX3N2/QdiU/CMXYDH/lSHpgfBkuhl3igpZiaB3ZIfSjKuOnybFVBQzjsLwkus2mjaESy8H41SzvA==",
+ "node_modules/@node-rs/crc32-linux-arm-gnueabihf": {
+ "version": "1.10.6",
+ "resolved": "https://registry.npmjs.org/@node-rs/crc32-linux-arm-gnueabihf/-/crc32-linux-arm-gnueabihf-1.10.6.tgz",
+ "integrity": "sha512-E8Z0WChH7X6ankbVm8J/Yym19Cq3otx6l4NFPS6JW/cWdjv7iw+Sps2huSug+TBprjbcEA+s4TvEwfDI1KScjg==",
"cpu": [
"arm"
],
@@ -1605,26 +1632,32 @@
"optional": true,
"os": [
"linux"
- ]
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
},
- "node_modules/@rollup/rollup-linux-arm-musleabihf": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.41.0.tgz",
- "integrity": "sha512-lfgW3KtQP4YauqdPpcUZHPcqQXmTmH4nYU0cplNeW583CMkAGjtImw4PKli09NFi2iQgChk4e9erkwlfYem6Lg==",
+ "node_modules/@node-rs/crc32-linux-arm64-gnu": {
+ "version": "1.10.6",
+ "resolved": "https://registry.npmjs.org/@node-rs/crc32-linux-arm64-gnu/-/crc32-linux-arm64-gnu-1.10.6.tgz",
+ "integrity": "sha512-LmWcfDbqAvypX0bQjQVPmQGazh4dLiVklkgHxpV4P0TcQ1DT86H/SWpMBMs/ncF8DGuCQ05cNyMv1iddUDugoQ==",
"cpu": [
- "arm"
+ "arm64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"linux"
- ]
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
},
- "node_modules/@rollup/rollup-linux-arm64-gnu": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.41.0.tgz",
- "integrity": "sha512-nn8mEyzMbdEJzT7cwxgObuwviMx6kPRxzYiOl6o/o+ChQq23gfdlZcUNnt89lPhhz3BYsZ72rp0rxNqBSfqlqw==",
+ "node_modules/@node-rs/crc32-linux-arm64-musl": {
+ "version": "1.10.6",
+ "resolved": "https://registry.npmjs.org/@node-rs/crc32-linux-arm64-musl/-/crc32-linux-arm64-musl-1.10.6.tgz",
+ "integrity": "sha512-k8ra/bmg0hwRrIEE8JL1p32WfaN9gDlUUpQRWsbxd1WhjqvXea7kKO6K4DwVxyxlPhBS9Gkb5Urq7Y4mXANzaw==",
"cpu": [
"arm64"
],
@@ -1633,54 +1666,347 @@
"optional": true,
"os": [
"linux"
- ]
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
},
- "node_modules/@rollup/rollup-linux-arm64-musl": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.41.0.tgz",
- "integrity": "sha512-l+QK99je2zUKGd31Gh+45c4pGDAqZSuWQiuRFCdHYC2CSiO47qUWsCcenrI6p22hvHZrDje9QjwSMAFL3iwXwQ==",
+ "node_modules/@node-rs/crc32-linux-x64-gnu": {
+ "version": "1.10.6",
+ "resolved": "https://registry.npmjs.org/@node-rs/crc32-linux-x64-gnu/-/crc32-linux-x64-gnu-1.10.6.tgz",
+ "integrity": "sha512-IfjtqcuFK7JrSZ9mlAFhb83xgium30PguvRjIMI45C3FJwu18bnLk1oR619IYb/zetQT82MObgmqfKOtgemEKw==",
"cpu": [
- "arm64"
+ "x64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"linux"
- ]
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
},
- "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.41.0.tgz",
- "integrity": "sha512-WbnJaxPv1gPIm6S8O/Wg+wfE/OzGSXlBMbOe4ie+zMyykMOeqmgD1BhPxZQuDqwUN+0T/xOFtL2RUWBspnZj3w==",
+ "node_modules/@node-rs/crc32-linux-x64-musl": {
+ "version": "1.10.6",
+ "resolved": "https://registry.npmjs.org/@node-rs/crc32-linux-x64-musl/-/crc32-linux-x64-musl-1.10.6.tgz",
+ "integrity": "sha512-LbFYsA5M9pNunOweSt6uhxenYQF94v3bHDAQRPTQ3rnjn+mK6IC7YTAYoBjvoJP8lVzcvk9hRj8wp4Jyh6Y80g==",
"cpu": [
- "loong64"
+ "x64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"linux"
- ]
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
},
- "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.41.0.tgz",
- "integrity": "sha512-eRDWR5t67/b2g8Q/S8XPi0YdbKcCs4WQ8vklNnUYLaSWF+Cbv2axZsp4jni6/j7eKvMLYCYdcsv8dcU+a6QNFg==",
+ "node_modules/@node-rs/crc32-wasm32-wasi": {
+ "version": "1.10.6",
+ "resolved": "https://registry.npmjs.org/@node-rs/crc32-wasm32-wasi/-/crc32-wasm32-wasi-1.10.6.tgz",
+ "integrity": "sha512-KaejdLgHMPsRaxnM+OG9L9XdWL2TabNx80HLdsCOoX9BVhEkfh39OeahBo8lBmidylKbLGMQoGfIKDjq0YMStw==",
"cpu": [
- "ppc64"
+ "wasm32"
],
"dev": true,
"license": "MIT",
"optional": true,
- "os": [
- "linux"
- ]
- },
+ "dependencies": {
+ "@napi-rs/wasm-runtime": "^0.2.5"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@node-rs/crc32-win32-arm64-msvc": {
+ "version": "1.10.6",
+ "resolved": "https://registry.npmjs.org/@node-rs/crc32-win32-arm64-msvc/-/crc32-win32-arm64-msvc-1.10.6.tgz",
+ "integrity": "sha512-x50AXiSxn5Ccn+dCjLf1T7ZpdBiV1Sp5aC+H2ijhJO4alwznvXgWbopPRVhbp2nj0i+Gb6kkDUEyU+508KAdGQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@node-rs/crc32-win32-ia32-msvc": {
+ "version": "1.10.6",
+ "resolved": "https://registry.npmjs.org/@node-rs/crc32-win32-ia32-msvc/-/crc32-win32-ia32-msvc-1.10.6.tgz",
+ "integrity": "sha512-DpDxQLaErJF9l36aghe1Mx+cOnYLKYo6qVPqPL9ukJ5rAGLtCdU0C+Zoi3gs9ySm8zmbFgazq/LvmsZYU42aBw==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@node-rs/crc32-win32-x64-msvc": {
+ "version": "1.10.6",
+ "resolved": "https://registry.npmjs.org/@node-rs/crc32-win32-x64-msvc/-/crc32-win32-x64-msvc-1.10.6.tgz",
+ "integrity": "sha512-5B1vXosIIBw1m2Rcnw62IIfH7W9s9f7H7Ma0rRuhT8HR4Xh8QCgw6NJSI2S2MCngsGktYnAhyUvs81b7efTyQw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@nodelib/fs.scandir": {
+ "version": "2.1.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.stat": "2.0.5",
+ "run-parallel": "^1.1.9"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.stat": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.walk": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.scandir": "2.1.5",
+ "fastq": "^1.6.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@pkgjs/parseargs": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@pkgr/core": {
+ "version": "0.2.9",
+ "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.9.tgz",
+ "integrity": "sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^12.20.0 || ^14.18.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/pkgr"
+ }
+ },
+ "node_modules/@rollup/rollup-android-arm-eabi": {
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.46.2.tgz",
+ "integrity": "sha512-Zj3Hl6sN34xJtMv7Anwb5Gu01yujyE/cLBDB2gnHTAHaWS1Z38L7kuSG+oAh0giZMqG060f/YBStXtMH6FvPMA==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-android-arm64": {
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.46.2.tgz",
+ "integrity": "sha512-nTeCWY83kN64oQ5MGz3CgtPx8NSOhC5lWtsjTs+8JAJNLcP3QbLCtDDgUKQc/Ro/frpMq4SHUaHN6AMltcEoLQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-arm64": {
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.46.2.tgz",
+ "integrity": "sha512-HV7bW2Fb/F5KPdM/9bApunQh68YVDU8sO8BvcW9OngQVN3HHHkw99wFupuUJfGR9pYLLAjcAOA6iO+evsbBaPQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-x64": {
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.46.2.tgz",
+ "integrity": "sha512-SSj8TlYV5nJixSsm/y3QXfhspSiLYP11zpfwp6G/YDXctf3Xkdnk4woJIF5VQe0of2OjzTt8EsxnJDCdHd2xMA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-arm64": {
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.46.2.tgz",
+ "integrity": "sha512-ZyrsG4TIT9xnOlLsSSi9w/X29tCbK1yegE49RYm3tu3wF1L/B6LVMqnEWyDB26d9Ecx9zrmXCiPmIabVuLmNSg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-x64": {
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.46.2.tgz",
+ "integrity": "sha512-pCgHFoOECwVCJ5GFq8+gR8SBKnMO+xe5UEqbemxBpCKYQddRQMgomv1104RnLSg7nNvgKy05sLsY51+OVRyiVw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.46.2.tgz",
+ "integrity": "sha512-EtP8aquZ0xQg0ETFcxUbU71MZlHaw9MChwrQzatiE8U/bvi5uv/oChExXC4mWhjiqK7azGJBqU0tt5H123SzVA==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.46.2.tgz",
+ "integrity": "sha512-qO7F7U3u1nfxYRPM8HqFtLd+raev2K137dsV08q/LRKRLEc7RsiDWihUnrINdsWQxPR9jqZ8DIIZ1zJJAm5PjQ==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.46.2.tgz",
+ "integrity": "sha512-3dRaqLfcOXYsfvw5xMrxAk9Lb1f395gkoBYzSFcc/scgRFptRXL9DOaDpMiehf9CO8ZDRJW2z45b6fpU5nwjng==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.46.2.tgz",
+ "integrity": "sha512-fhHFTutA7SM+IrR6lIfiHskxmpmPTJUXpWIsBXpeEwNgZzZZSg/q4i6FU4J8qOGyJ0TR+wXBwx/L7Ho9z0+uDg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.46.2.tgz",
+ "integrity": "sha512-i7wfGFXu8x4+FRqPymzjD+Hyav8l95UIZ773j7J7zRYc3Xsxy2wIn4x+llpunexXe6laaO72iEjeeGyUFmjKeA==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.46.2.tgz",
+ "integrity": "sha512-B/l0dFcHVUnqcGZWKcWBSV2PF01YUt0Rvlurci5P+neqY/yMKchGU8ullZvIv5e8Y1C6wOn+U03mrDylP5q9Yw==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.41.0.tgz",
- "integrity": "sha512-TWrZb6GF5jsEKG7T1IHwlLMDRy2f3DPqYldmIhnA2DVqvvhY2Ai184vZGgahRrg8k9UBWoSlHv+suRfTN7Ua4A==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.46.2.tgz",
+ "integrity": "sha512-32k4ENb5ygtkMwPMucAb8MtV8olkPT03oiTxJbgkJa7lJ7dZMr0GCFJlyvy+K8iq7F/iuOr41ZdUHaOiqyR3iQ==",
"cpu": [
"riscv64"
],
@@ -1692,9 +2018,9 @@
]
},
"node_modules/@rollup/rollup-linux-riscv64-musl": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.41.0.tgz",
- "integrity": "sha512-ieQljaZKuJpmWvd8gW87ZmSFwid6AxMDk5bhONJ57U8zT77zpZ/TPKkU9HpnnFrM4zsgr4kiGuzbIbZTGi7u9A==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.46.2.tgz",
+ "integrity": "sha512-t5B2loThlFEauloaQkZg9gxV05BYeITLvLkWOkRXogP4qHXLkWSbSHKM9S6H1schf/0YGP/qNKtiISlxvfmmZw==",
"cpu": [
"riscv64"
],
@@ -1706,9 +2032,9 @@
]
},
"node_modules/@rollup/rollup-linux-s390x-gnu": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.41.0.tgz",
- "integrity": "sha512-/L3pW48SxrWAlVsKCN0dGLB2bi8Nv8pr5S5ocSM+S0XCn5RCVCXqi8GVtHFsOBBCSeR+u9brV2zno5+mg3S4Aw==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.46.2.tgz",
+ "integrity": "sha512-YKjekwTEKgbB7n17gmODSmJVUIvj8CX7q5442/CK80L8nqOUbMtf8b01QkG3jOqyr1rotrAnW6B/qiHwfcuWQA==",
"cpu": [
"s390x"
],
@@ -1720,9 +2046,9 @@
]
},
"node_modules/@rollup/rollup-linux-x64-gnu": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.41.0.tgz",
- "integrity": "sha512-XMLeKjyH8NsEDCRptf6LO8lJk23o9wvB+dJwcXMaH6ZQbbkHu2dbGIUindbMtRN6ux1xKi16iXWu6q9mu7gDhQ==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.46.2.tgz",
+ "integrity": "sha512-Jj5a9RUoe5ra+MEyERkDKLwTXVu6s3aACP51nkfnK9wJTraCC8IMe3snOfALkrjTYd2G1ViE1hICj0fZ7ALBPA==",
"cpu": [
"x64"
],
@@ -1734,9 +2060,9 @@
]
},
"node_modules/@rollup/rollup-linux-x64-musl": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.41.0.tgz",
- "integrity": "sha512-m/P7LycHZTvSQeXhFmgmdqEiTqSV80zn6xHaQ1JSqwCtD1YGtwEK515Qmy9DcB2HK4dOUVypQxvhVSy06cJPEg==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.46.2.tgz",
+ "integrity": "sha512-7kX69DIrBeD7yNp4A5b81izs8BqoZkCIaxQaOpumcJ1S/kmqNFjPhDu1LHeVXv0SexfHQv5cqHsxLOjETuqDuA==",
"cpu": [
"x64"
],
@@ -1748,9 +2074,9 @@
]
},
"node_modules/@rollup/rollup-win32-arm64-msvc": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.41.0.tgz",
- "integrity": "sha512-4yodtcOrFHpbomJGVEqZ8fzD4kfBeCbpsUy5Pqk4RluXOdsWdjLnjhiKy2w3qzcASWd04fp52Xz7JKarVJ5BTg==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.46.2.tgz",
+ "integrity": "sha512-wiJWMIpeaak/jsbaq2HMh/rzZxHVW1rU6coyeNNpMwk5isiPjSTx0a4YLSlYDwBH/WBvLz+EtsNqQScZTLJy3g==",
"cpu": [
"arm64"
],
@@ -1762,9 +2088,9 @@
]
},
"node_modules/@rollup/rollup-win32-ia32-msvc": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.41.0.tgz",
- "integrity": "sha512-tmazCrAsKzdkXssEc65zIE1oC6xPHwfy9d5Ta25SRCDOZS+I6RypVVShWALNuU9bxIfGA0aqrmzlzoM5wO5SPQ==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.46.2.tgz",
+ "integrity": "sha512-gBgaUDESVzMgWZhcyjfs9QFK16D8K6QZpwAaVNJxYDLHWayOta4ZMjGm/vsAEy3hvlS2GosVFlBlP9/Wb85DqQ==",
"cpu": [
"ia32"
],
@@ -1776,9 +2102,9 @@
]
},
"node_modules/@rollup/rollup-win32-x64-msvc": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.41.0.tgz",
- "integrity": "sha512-h1J+Yzjo/X+0EAvR2kIXJDuTuyT7drc+t2ALY0nIcGPbTatNOf0VWdhEA2Z4AAjv6X1NJV7SYo5oCTYRJhSlVA==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.46.2.tgz",
+ "integrity": "sha512-CvUo2ixeIQGtF6WvuB87XWqPQkoFAFqW+HUo/WzHwuHDvIwZCtjdWXoYCcr06iKGydiqTclC4jU/TNObC/xKZg==",
"cpu": [
"x64"
],
@@ -1790,34 +2116,34 @@
]
},
"node_modules/@secretlint/config-creator": {
- "version": "9.3.2",
- "resolved": "https://registry.npmjs.org/@secretlint/config-creator/-/config-creator-9.3.2.tgz",
- "integrity": "sha512-IDUNnM/WVYcvj9PeoZIAvew31HHOtL/paJVkYT2D7G8HyehhTOPMvZSYVr43KXZ/bwUdlJg39C14xPx0NVsJyw==",
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/@secretlint/config-creator/-/config-creator-10.2.2.tgz",
+ "integrity": "sha512-BynOBe7Hn3LJjb3CqCHZjeNB09s/vgf0baBaHVw67w7gHF0d25c3ZsZ5+vv8TgwSchRdUCRrbbcq5i2B1fJ2QQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@secretlint/types": "^9.3.2"
+ "@secretlint/types": "^10.2.2"
},
"engines": {
- "node": "^14.13.1 || >=16.0.0"
+ "node": ">=20.0.0"
}
},
"node_modules/@secretlint/config-loader": {
- "version": "9.3.2",
- "resolved": "https://registry.npmjs.org/@secretlint/config-loader/-/config-loader-9.3.2.tgz",
- "integrity": "sha512-5pBUiAFI7lwHzsxPozwhIXVVxj65MbPOth5nSPz2rdpLg/dlti3udlstoq624kqQAlpb196Bhto3JCZGpKduQw==",
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/@secretlint/config-loader/-/config-loader-10.2.2.tgz",
+ "integrity": "sha512-ndjjQNgLg4DIcMJp4iaRD6xb9ijWQZVbd9694Ol2IszBIbGPPkwZHzJYKICbTBmh6AH/pLr0CiCaWdGJU7RbpQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@secretlint/profiler": "^9.3.2",
- "@secretlint/resolver": "^9.3.2",
- "@secretlint/types": "^9.3.2",
+ "@secretlint/profiler": "^10.2.2",
+ "@secretlint/resolver": "^10.2.2",
+ "@secretlint/types": "^10.2.2",
"ajv": "^8.17.1",
- "debug": "^4.4.0",
+ "debug": "^4.4.1",
"rc-config-loader": "^4.1.3"
},
"engines": {
- "node": "^14.13.1 || >=16.0.0"
+ "node": ">=20.0.0"
}
},
"node_modules/@secretlint/config-loader/node_modules/ajv": {
@@ -1845,209 +2171,146 @@
"license": "MIT"
},
"node_modules/@secretlint/core": {
- "version": "9.3.2",
- "resolved": "https://registry.npmjs.org/@secretlint/core/-/core-9.3.2.tgz",
- "integrity": "sha512-oBsrFDTwXvFNLjIdcwrbCS/WUhKrGUeTDTSrmQBuaJvLHgCUX8/jEuBhBONkUDgWO3QEHRhi9LDlgnBqTIODEw==",
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/@secretlint/core/-/core-10.2.2.tgz",
+ "integrity": "sha512-6rdwBwLP9+TO3rRjMVW1tX+lQeo5gBbxl1I5F8nh8bgGtKwdlCMhMKsBWzWg1ostxx/tIG7OjZI0/BxsP8bUgw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@secretlint/profiler": "^9.3.2",
- "@secretlint/types": "^9.3.2",
- "debug": "^4.4.0",
+ "@secretlint/profiler": "^10.2.2",
+ "@secretlint/types": "^10.2.2",
+ "debug": "^4.4.1",
"structured-source": "^4.0.0"
},
"engines": {
- "node": "^14.13.1 || >=16.0.0"
+ "node": ">=20.0.0"
}
},
"node_modules/@secretlint/formatter": {
- "version": "9.3.2",
- "resolved": "https://registry.npmjs.org/@secretlint/formatter/-/formatter-9.3.2.tgz",
- "integrity": "sha512-JiFhZtg2a4WdkPxCXlq0iGUz18UxzjWnyUMvb/89BvF5m9DKDvmlfHIMLZ3O5205mSJqlpcZxRu7eADJB9fS7Q==",
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/@secretlint/formatter/-/formatter-10.2.2.tgz",
+ "integrity": "sha512-10f/eKV+8YdGKNQmoDUD1QnYL7TzhI2kzyx95vsJKbEa8akzLAR5ZrWIZ3LbcMmBLzxlSQMMccRmi05yDQ5YDA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@secretlint/resolver": "^9.3.2",
- "@secretlint/types": "^9.3.2",
- "@textlint/linter-formatter": "^14.6.0",
- "@textlint/module-interop": "^14.6.0",
- "@textlint/types": "^14.6.0",
- "chalk": "^4.1.2",
- "debug": "^4.4.0",
+ "@secretlint/resolver": "^10.2.2",
+ "@secretlint/types": "^10.2.2",
+ "@textlint/linter-formatter": "^15.2.0",
+ "@textlint/module-interop": "^15.2.0",
+ "@textlint/types": "^15.2.0",
+ "chalk": "^5.4.1",
+ "debug": "^4.4.1",
"pluralize": "^8.0.0",
- "strip-ansi": "^6.0.1",
+ "strip-ansi": "^7.1.0",
"table": "^6.9.0",
- "terminal-link": "^2.1.1"
+ "terminal-link": "^4.0.0"
},
"engines": {
- "node": "^14.13.1 || >=16.0.0"
- }
- },
- "node_modules/@secretlint/formatter/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">=20.0.0"
}
},
"node_modules/@secretlint/formatter/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.5.0.tgz",
+ "integrity": "sha512-1tm8DTaJhPBG3bIkVeZt1iZM9GfSX2lzOeDVZH9R9ffRHpmHvxZ/QhgQH/aDTkswQVt+YHdXAdS/In/30OjCbg==",
"dev": true,
"license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
"engines": {
- "node": ">=10"
+ "node": "^12.17.0 || ^14.13 || >=16.0.0"
},
"funding": {
"url": "https://github.com/chalk/chalk?sponsor=1"
}
},
- "node_modules/@secretlint/formatter/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/@secretlint/formatter/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@secretlint/formatter/node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@secretlint/formatter/node_modules/supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@secretlint/node": {
- "version": "9.3.2",
- "resolved": "https://registry.npmjs.org/@secretlint/node/-/node-9.3.2.tgz",
- "integrity": "sha512-WH3PjYtZ8RumUJFZvM4vYEvpelT2m6WFzCRS3j+nzmH5eSv70+BWSISMB/ouZ5koq1+1zPlnWf/ADEvOwgbebw==",
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/@secretlint/node/-/node-10.2.2.tgz",
+ "integrity": "sha512-eZGJQgcg/3WRBwX1bRnss7RmHHK/YlP/l7zOQsrjexYt6l+JJa5YhUmHbuGXS94yW0++3YkEJp0kQGYhiw1DMQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@secretlint/config-loader": "^9.3.2",
- "@secretlint/core": "^9.3.2",
- "@secretlint/formatter": "^9.3.2",
- "@secretlint/profiler": "^9.3.2",
- "@secretlint/source-creator": "^9.3.2",
- "@secretlint/types": "^9.3.2",
- "debug": "^4.4.0",
- "p-map": "^4.0.0"
+ "@secretlint/config-loader": "^10.2.2",
+ "@secretlint/core": "^10.2.2",
+ "@secretlint/formatter": "^10.2.2",
+ "@secretlint/profiler": "^10.2.2",
+ "@secretlint/source-creator": "^10.2.2",
+ "@secretlint/types": "^10.2.2",
+ "debug": "^4.4.1",
+ "p-map": "^7.0.3"
},
"engines": {
- "node": "^14.13.1 || >=16.0.0"
+ "node": ">=20.0.0"
}
},
"node_modules/@secretlint/profiler": {
- "version": "9.3.2",
- "resolved": "https://registry.npmjs.org/@secretlint/profiler/-/profiler-9.3.2.tgz",
- "integrity": "sha512-cXXWQzA6lIcT0TY53JvbXtH6BltBfqmH5V39byhnbDfZl5FKCB6FHxVVzkctjwss6KMtDXcNLvfz3nKBZaWRDA==",
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/@secretlint/profiler/-/profiler-10.2.2.tgz",
+ "integrity": "sha512-qm9rWfkh/o8OvzMIfY8a5bCmgIniSpltbVlUVl983zDG1bUuQNd1/5lUEeWx5o/WJ99bXxS7yNI4/KIXfHexig==",
"dev": true,
"license": "MIT"
},
"node_modules/@secretlint/resolver": {
- "version": "9.3.2",
- "resolved": "https://registry.npmjs.org/@secretlint/resolver/-/resolver-9.3.2.tgz",
- "integrity": "sha512-yOi6md3kzpaFw6w2FJTDLoKlUxr1RltBJrb5lheIBDDXy/7C/5gP0K4uMiqamnVg8c9Ac+qlNS5KUar8FDFpdg==",
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/@secretlint/resolver/-/resolver-10.2.2.tgz",
+ "integrity": "sha512-3md0cp12e+Ae5V+crPQYGd6aaO7ahw95s28OlULGyclyyUtf861UoRGS2prnUrKh7MZb23kdDOyGCYb9br5e4w==",
"dev": true,
"license": "MIT"
},
"node_modules/@secretlint/secretlint-formatter-sarif": {
- "version": "9.3.2",
- "resolved": "https://registry.npmjs.org/@secretlint/secretlint-formatter-sarif/-/secretlint-formatter-sarif-9.3.2.tgz",
- "integrity": "sha512-RtL9BISmhtsHTOcPI6+4AL1sRnUcnMhuQTvFbNPb9malxolIjthUsUKC5WqgT+8JN1tUG7w/diW+/kr5F1T0zw==",
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/@secretlint/secretlint-formatter-sarif/-/secretlint-formatter-sarif-10.2.2.tgz",
+ "integrity": "sha512-ojiF9TGRKJJw308DnYBucHxkpNovDNu1XvPh7IfUp0A12gzTtxuWDqdpuVezL7/IP8Ua7mp5/VkDMN9OLp1doQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "node-sarif-builder": "^2.0.3"
+ "node-sarif-builder": "^3.2.0"
}
},
"node_modules/@secretlint/secretlint-rule-no-dotenv": {
- "version": "9.3.2",
- "resolved": "https://registry.npmjs.org/@secretlint/secretlint-rule-no-dotenv/-/secretlint-rule-no-dotenv-9.3.2.tgz",
- "integrity": "sha512-i1npoCy8eha8gU602SFf4S7vPOYMu9/WHCIr41EQvy4C9J+u95bt8COOYmk46e+aPyEDmQGxn2Lp4F2A2BoVLw==",
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/@secretlint/secretlint-rule-no-dotenv/-/secretlint-rule-no-dotenv-10.2.2.tgz",
+ "integrity": "sha512-KJRbIShA9DVc5Va3yArtJ6QDzGjg3PRa1uYp9As4RsyKtKSSZjI64jVca57FZ8gbuk4em0/0Jq+uy6485wxIdg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@secretlint/types": "^9.3.2"
+ "@secretlint/types": "^10.2.2"
},
"engines": {
- "node": "^14.13.1 || >=16.0.0"
+ "node": ">=20.0.0"
}
},
"node_modules/@secretlint/secretlint-rule-preset-recommend": {
- "version": "9.3.2",
- "resolved": "https://registry.npmjs.org/@secretlint/secretlint-rule-preset-recommend/-/secretlint-rule-preset-recommend-9.3.2.tgz",
- "integrity": "sha512-rMvHTcHWLydOhKWDrK62x54ICMyfPwl0H5hAPfurLQR0sjjxGeSKuqr75emu6a2/5yYgvScZC97xVrlc2fTPSA==",
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/@secretlint/secretlint-rule-preset-recommend/-/secretlint-rule-preset-recommend-10.2.2.tgz",
+ "integrity": "sha512-K3jPqjva8bQndDKJqctnGfwuAxU2n9XNCPtbXVI5JvC7FnQiNg/yWlQPbMUlBXtBoBGFYp08A94m6fvtc9v+zA==",
"dev": true,
"license": "MIT",
"engines": {
- "node": "^14.13.1 || >=16.0.0"
+ "node": ">=20.0.0"
}
},
"node_modules/@secretlint/source-creator": {
- "version": "9.3.2",
- "resolved": "https://registry.npmjs.org/@secretlint/source-creator/-/source-creator-9.3.2.tgz",
- "integrity": "sha512-eEP8sHnTB7rtv976Awh5+VMTD8udiHBaeSWAEKGy21Gas/slEb02Q812SWo2UMX9NcVBl+DYaOkmPQbcPHrY5A==",
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/@secretlint/source-creator/-/source-creator-10.2.2.tgz",
+ "integrity": "sha512-h6I87xJfwfUTgQ7irWq7UTdq/Bm1RuQ/fYhA3dtTIAop5BwSFmZyrchph4WcoEvbN460BWKmk4RYSvPElIIvxw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@secretlint/types": "^9.3.2",
- "istextorbinary": "^6.0.0"
+ "@secretlint/types": "^10.2.2",
+ "istextorbinary": "^9.5.0"
},
"engines": {
- "node": "^14.13.1 || >=16.0.0"
+ "node": ">=20.0.0"
}
},
"node_modules/@secretlint/types": {
- "version": "9.3.2",
- "resolved": "https://registry.npmjs.org/@secretlint/types/-/types-9.3.2.tgz",
- "integrity": "sha512-Mxs8jzyPm843B0P/YNiOxnFSNyYtrmMoLPjrmqebrI5LBERRGctXj2Q9Oy/ayZ+FMK+1cP9jLhceicRvlZPR1Q==",
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/@secretlint/types/-/types-10.2.2.tgz",
+ "integrity": "sha512-Nqc90v4lWCXyakD6xNyNACBJNJ0tNCwj2WNk/7ivyacYHxiITVgmLUFXTBOeCdy79iz6HtN9Y31uw/jbLrdOAg==",
"dev": true,
"license": "MIT",
"engines": {
- "node": "^14.13.1 || >=16.0.0"
+ "node": ">=20.0.0"
}
},
"node_modules/@shikijs/core": {
@@ -2151,26 +2414,26 @@
}
},
"node_modules/@textlint/ast-node-types": {
- "version": "14.7.2",
- "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-14.7.2.tgz",
- "integrity": "sha512-3rZc9vD8y/DlcFe3Y/cyKRRVgBH4ElEUzVFYdRVDwoMSwV/cIyZgYzVG6ZuOItQt+cHSREuijuucZ4VqZynbtg==",
+ "version": "15.2.1",
+ "resolved": "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-15.2.1.tgz",
+ "integrity": "sha512-20fEcLPsXg81yWpApv4FQxrZmlFF/Ta7/kz1HGIL+pJo5cSTmkc+eCki3GpOPZIoZk0tbJU8hrlwUb91F+3SNQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint/linter-formatter": {
- "version": "14.7.2",
- "resolved": "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-14.7.2.tgz",
- "integrity": "sha512-QZOqft5uK+o/UN8UcEF3cHgfbG1r3+OWqlJojyjGNkEBbBNPSyDfYlVxDjHqnOAwm7jBaeqVGlwvw/7PUFmsmw==",
+ "version": "15.2.1",
+ "resolved": "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-15.2.1.tgz",
+ "integrity": "sha512-oollG/BHa07+mMt372amxHohteASC+Zxgollc1sZgiyxo4S6EuureV3a4QIQB0NecA+Ak3d0cl0WI/8nou38jw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@azu/format-text": "^1.0.2",
"@azu/style-format": "^1.0.1",
- "@textlint/module-interop": "^14.7.2",
- "@textlint/resolver": "^14.7.2",
- "@textlint/types": "^14.7.2",
+ "@textlint/module-interop": "15.2.1",
+ "@textlint/resolver": "15.2.1",
+ "@textlint/types": "15.2.1",
"chalk": "^4.1.2",
- "debug": "^4.4.0",
+ "debug": "^4.4.1",
"js-yaml": "^3.14.1",
"lodash": "^4.17.21",
"pluralize": "^2.0.0",
@@ -2180,20 +2443,14 @@
"text-table": "^0.2.0"
}
},
- "node_modules/@textlint/linter-formatter/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "node_modules/@textlint/linter-formatter/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
"engines": {
"node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/@textlint/linter-formatter/node_modules/argparse": {
@@ -2206,53 +2463,6 @@
"sprintf-js": "~1.0.2"
}
},
- "node_modules/@textlint/linter-formatter/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@textlint/linter-formatter/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/@textlint/linter-formatter/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@textlint/linter-formatter/node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@textlint/linter-formatter/node_modules/js-yaml": {
"version": "3.14.1",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
@@ -2274,41 +2484,52 @@
"dev": true,
"license": "MIT"
},
- "node_modules/@textlint/linter-formatter/node_modules/supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "node_modules/@textlint/linter-formatter/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^4.0.0"
+ "ansi-regex": "^5.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/@textlint/module-interop": {
- "version": "14.7.2",
- "resolved": "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-14.7.2.tgz",
- "integrity": "sha512-rDQhFERa2+xMqhyrPFvAL9d5Tb4RpQGKQExwrezvtCTREh6Zsp/nKxtK0r6o0P9xn1+zq2sZHW9NZjpe7av3xw==",
+ "version": "15.2.1",
+ "resolved": "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-15.2.1.tgz",
+ "integrity": "sha512-b/C/ZNrm05n1ypymDknIcpkBle30V2ZgE3JVqQlA9PnQV46Ky510qrZk6s9yfKgA3m1YRnAw04m8xdVtqjq1qg==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint/resolver": {
- "version": "14.7.2",
- "resolved": "https://registry.npmjs.org/@textlint/resolver/-/resolver-14.7.2.tgz",
- "integrity": "sha512-FCZa9XJx5KihK/4gxXLhS/KfOnBD6vD5UxAMtgrvbifn+JFrW9Kh17uZLCcuJDDJJCnZOHq8jdT7AU+rpmJZ+w==",
+ "version": "15.2.1",
+ "resolved": "https://registry.npmjs.org/@textlint/resolver/-/resolver-15.2.1.tgz",
+ "integrity": "sha512-FY3aK4tElEcOJVUsaMj4Zro4jCtKEEwUMIkDL0tcn6ljNcgOF7Em+KskRRk/xowFWayqDtdz5T3u7w/6fjjuJQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@textlint/types": {
- "version": "14.7.2",
- "resolved": "https://registry.npmjs.org/@textlint/types/-/types-14.7.2.tgz",
- "integrity": "sha512-VpsmtJf9+7cnIxmKtAVVGVzI6f2k09kBZnzjdTAO8JZ+HTmV46jeoVrotpSfQbWDpuQk2UFPfrsZL/LNf/99ew==",
+ "version": "15.2.1",
+ "resolved": "https://registry.npmjs.org/@textlint/types/-/types-15.2.1.tgz",
+ "integrity": "sha512-zyqNhSatK1cwxDUgosEEN43hFh3WCty9Zm2Vm3ogU566IYegifwqN54ey/CiRy/DiO4vMcFHykuQnh2Zwp6LLw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@textlint/ast-node-types": "^14.7.2"
+ "@textlint/ast-node-types": "15.2.1"
+ }
+ },
+ "node_modules/@tybys/wasm-util": {
+ "version": "0.10.0",
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.0.tgz",
+ "integrity": "sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
}
},
"node_modules/@types/eslint": {
@@ -2336,9 +2557,9 @@
}
},
"node_modules/@types/estree": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz",
- "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==",
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
"dev": true,
"license": "MIT"
},
@@ -2416,9 +2637,9 @@
"license": "MIT"
},
"node_modules/@types/node": {
- "version": "22.15.19",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.19.tgz",
- "integrity": "sha512-3vMNr4TzNQyjHcRZadojpRaD9Ofr6LsonZAoQ+HMUa/9ORTPoxVIw0e0mpqWpdjj8xybyCM+oKOUH2vwFu/oEw==",
+ "version": "20.19.10",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.10.tgz",
+ "integrity": "sha512-iAFpG6DokED3roLSP0K+ybeDdIX6Bc0Vd3mLW5uDqThPWtNos3E+EqOM11mPQHKzfWHqEBuLjIlsBQQ8CsISmQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2447,16 +2668,16 @@
"license": "MIT"
},
"node_modules/@types/vscode": {
- "version": "1.100.0",
- "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.100.0.tgz",
- "integrity": "sha512-4uNyvzHoraXEeCamR3+fzcBlh7Afs4Ifjs4epINyUX/jvdk0uzLnwiDY35UKDKnkCHP5Nu3dljl2H8lR6s+rQw==",
+ "version": "1.102.0",
+ "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.102.0.tgz",
+ "integrity": "sha512-V9sFXmcXz03FtYTSUsYsu5K0Q9wH9w9V25slddcxrh5JgORD14LpnOA7ov0L9ALi+6HrTjskLJ/tY5zeRF3TFA==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/vscode-notebook-renderer": {
- "version": "1.72.3",
- "resolved": "https://registry.npmjs.org/@types/vscode-notebook-renderer/-/vscode-notebook-renderer-1.72.3.tgz",
- "integrity": "sha512-MfmEI3A2McbUV2WaijoTgLOAs9chwHN4WmqOedl3jdtlbzJBWIQ9ZFmQdzPa3lYr5j8DJhRg3KB5AIM/BBfg9Q==",
+ "version": "1.72.4",
+ "resolved": "https://registry.npmjs.org/@types/vscode-notebook-renderer/-/vscode-notebook-renderer-1.72.4.tgz",
+ "integrity": "sha512-bdKO41c6Dc24pH/O/eM/jqfCwGH4zc76o/g/6Gt1y/eg/bvvqP2/VpbV+Sa5Te2sZekFRcbYnSSFTKo3wcVGUg==",
"dev": true,
"license": "MIT"
},
@@ -2468,17 +2689,17 @@
"license": "MIT"
},
"node_modules/@typescript-eslint/eslint-plugin": {
- "version": "8.32.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.32.1.tgz",
- "integrity": "sha512-6u6Plg9nP/J1GRpe/vcjjabo6Uc5YQPAMxsgQyGC/I0RuukiG1wIe3+Vtg3IrSCVJDmqK3j8adrtzXSENRtFgg==",
+ "version": "8.39.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.39.1.tgz",
+ "integrity": "sha512-yYegZ5n3Yr6eOcqgj2nJH8cH/ZZgF+l0YIdKILSDjYFRjgYQMgv/lRjV5Z7Up04b9VYUondt8EPMqg7kTWgJ2g==",
"dev": true,
"license": "MIT",
"dependencies": {
"@eslint-community/regexpp": "^4.10.0",
- "@typescript-eslint/scope-manager": "8.32.1",
- "@typescript-eslint/type-utils": "8.32.1",
- "@typescript-eslint/utils": "8.32.1",
- "@typescript-eslint/visitor-keys": "8.32.1",
+ "@typescript-eslint/scope-manager": "8.39.1",
+ "@typescript-eslint/type-utils": "8.39.1",
+ "@typescript-eslint/utils": "8.39.1",
+ "@typescript-eslint/visitor-keys": "8.39.1",
"graphemer": "^1.4.0",
"ignore": "^7.0.0",
"natural-compare": "^1.4.0",
@@ -2492,15 +2713,15 @@
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependencies": {
- "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0",
+ "@typescript-eslint/parser": "^8.39.1",
"eslint": "^8.57.0 || ^9.0.0",
- "typescript": ">=4.8.4 <5.9.0"
+ "typescript": ">=4.8.4 <6.0.0"
}
},
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
- "version": "7.0.4",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.4.tgz",
- "integrity": "sha512-gJzzk+PQNznz8ysRrC0aOkBNVRBDtE1n53IqyqEf3PXrYwomFs5q4pGMizBMJF+ykh03insJ27hB8gSrD2Hn8A==",
+ "version": "7.0.5",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
+ "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2508,16 +2729,16 @@
}
},
"node_modules/@typescript-eslint/parser": {
- "version": "8.32.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.32.1.tgz",
- "integrity": "sha512-LKMrmwCPoLhM45Z00O1ulb6jwyVr2kr3XJp+G+tSEZcbauNnScewcQwtJqXDhXeYPDEjZ8C1SjXm015CirEmGg==",
+ "version": "8.39.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.39.1.tgz",
+ "integrity": "sha512-pUXGCuHnnKw6PyYq93lLRiZm3vjuslIy7tus1lIQTYVK9bL8XBgJnCWm8a0KcTtHC84Yya1Q6rtll+duSMj0dg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@typescript-eslint/scope-manager": "8.32.1",
- "@typescript-eslint/types": "8.32.1",
- "@typescript-eslint/typescript-estree": "8.32.1",
- "@typescript-eslint/visitor-keys": "8.32.1",
+ "@typescript-eslint/scope-manager": "8.39.1",
+ "@typescript-eslint/types": "8.39.1",
+ "@typescript-eslint/typescript-estree": "8.39.1",
+ "@typescript-eslint/visitor-keys": "8.39.1",
"debug": "^4.3.4"
},
"engines": {
@@ -2529,36 +2750,76 @@
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
- "typescript": ">=4.8.4 <5.9.0"
+ "typescript": ">=4.8.4 <6.0.0"
+ }
+ },
+ "node_modules/@typescript-eslint/project-service": {
+ "version": "8.39.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.39.1.tgz",
+ "integrity": "sha512-8fZxek3ONTwBu9ptw5nCKqZOSkXshZB7uAxuFF0J/wTMkKydjXCzqqga7MlFMpHi9DoG4BadhmTkITBcg8Aybw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/tsconfig-utils": "^8.39.1",
+ "@typescript-eslint/types": "^8.39.1",
+ "debug": "^4.3.4"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.8.4 <6.0.0"
}
},
"node_modules/@typescript-eslint/scope-manager": {
- "version": "8.32.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.32.1.tgz",
- "integrity": "sha512-7IsIaIDeZn7kffk7qXC3o6Z4UblZJKV3UBpkvRNpr5NSyLji7tvTcvmnMNYuYLyh26mN8W723xpo3i4MlD33vA==",
+ "version": "8.39.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.39.1.tgz",
+ "integrity": "sha512-RkBKGBrjgskFGWuyUGz/EtD8AF/GW49S21J8dvMzpJitOF1slLEbbHnNEtAHtnDAnx8qDEdRrULRnWVx27wGBw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@typescript-eslint/types": "8.32.1",
- "@typescript-eslint/visitor-keys": "8.32.1"
+ "@typescript-eslint/types": "8.39.1",
+ "@typescript-eslint/visitor-keys": "8.39.1"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ }
+ },
+ "node_modules/@typescript-eslint/tsconfig-utils": {
+ "version": "8.39.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.39.1.tgz",
+ "integrity": "sha512-ePUPGVtTMR8XMU2Hee8kD0Pu4NDE1CN9Q1sxGSGd/mbOtGZDM7pnhXNJnzW63zk/q+Z54zVzj44HtwXln5CvHA==",
+ "dev": true,
+ "license": "MIT",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.8.4 <6.0.0"
}
},
"node_modules/@typescript-eslint/type-utils": {
- "version": "8.32.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.32.1.tgz",
- "integrity": "sha512-mv9YpQGA8iIsl5KyUPi+FGLm7+bA4fgXaeRcFKRDRwDMu4iwrSHeDPipwueNXhdIIZltwCJv+NkxftECbIZWfA==",
+ "version": "8.39.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.39.1.tgz",
+ "integrity": "sha512-gu9/ahyatyAdQbKeHnhT4R+y3YLtqqHyvkfDxaBYk97EcbfChSJXyaJnIL3ygUv7OuZatePHmQvuH5ru0lnVeA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@typescript-eslint/typescript-estree": "8.32.1",
- "@typescript-eslint/utils": "8.32.1",
+ "@typescript-eslint/types": "8.39.1",
+ "@typescript-eslint/typescript-estree": "8.39.1",
+ "@typescript-eslint/utils": "8.39.1",
"debug": "^4.3.4",
"ts-api-utils": "^2.1.0"
},
@@ -2571,13 +2832,13 @@
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
- "typescript": ">=4.8.4 <5.9.0"
+ "typescript": ">=4.8.4 <6.0.0"
}
},
"node_modules/@typescript-eslint/types": {
- "version": "8.32.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.32.1.tgz",
- "integrity": "sha512-YmybwXUJcgGqgAp6bEsgpPXEg6dcCyPyCSr0CAAueacR/CCBi25G3V8gGQ2kRzQRBNol7VQknxMs9HvVa9Rvfg==",
+ "version": "8.39.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.39.1.tgz",
+ "integrity": "sha512-7sPDKQQp+S11laqTrhHqeAbsCfMkwJMrV7oTDvtDds4mEofJYir414bYKUEb8YPUm9QL3U+8f6L6YExSoAGdQw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2589,14 +2850,16 @@
}
},
"node_modules/@typescript-eslint/typescript-estree": {
- "version": "8.32.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.32.1.tgz",
- "integrity": "sha512-Y3AP9EIfYwBb4kWGb+simvPaqQoT5oJuzzj9m0i6FCY6SPvlomY2Ei4UEMm7+FXtlNJbor80ximyslzaQF6xhg==",
+ "version": "8.39.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.39.1.tgz",
+ "integrity": "sha512-EKkpcPuIux48dddVDXyQBlKdeTPMmALqBUbEk38McWv0qVEZwOpVJBi7ugK5qVNgeuYjGNQxrrnoM/5+TI/BPw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@typescript-eslint/types": "8.32.1",
- "@typescript-eslint/visitor-keys": "8.32.1",
+ "@typescript-eslint/project-service": "8.39.1",
+ "@typescript-eslint/tsconfig-utils": "8.39.1",
+ "@typescript-eslint/types": "8.39.1",
+ "@typescript-eslint/visitor-keys": "8.39.1",
"debug": "^4.3.4",
"fast-glob": "^3.3.2",
"is-glob": "^4.0.3",
@@ -2612,13 +2875,13 @@
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependencies": {
- "typescript": ">=4.8.4 <5.9.0"
+ "typescript": ">=4.8.4 <6.0.0"
}
},
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
+ "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2642,16 +2905,16 @@
}
},
"node_modules/@typescript-eslint/utils": {
- "version": "8.32.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.32.1.tgz",
- "integrity": "sha512-DsSFNIgLSrc89gpq1LJB7Hm1YpuhK086DRDJSNrewcGvYloWW1vZLHBTIvarKZDcAORIy/uWNx8Gad+4oMpkSA==",
+ "version": "8.39.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.39.1.tgz",
+ "integrity": "sha512-VF5tZ2XnUSTuiqZFXCZfZs1cgkdd3O/sSYmdo2EpSyDlC86UM/8YytTmKnehOW3TGAlivqTDT6bS87B/GQ/jyg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@eslint-community/eslint-utils": "^4.7.0",
- "@typescript-eslint/scope-manager": "8.32.1",
- "@typescript-eslint/types": "8.32.1",
- "@typescript-eslint/typescript-estree": "8.32.1"
+ "@typescript-eslint/scope-manager": "8.39.1",
+ "@typescript-eslint/types": "8.39.1",
+ "@typescript-eslint/typescript-estree": "8.39.1"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -2662,18 +2925,18 @@
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
- "typescript": ">=4.8.4 <5.9.0"
+ "typescript": ">=4.8.4 <6.0.0"
}
},
"node_modules/@typescript-eslint/visitor-keys": {
- "version": "8.32.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.32.1.tgz",
- "integrity": "sha512-ar0tjQfObzhSaW3C3QNmTc5ofj0hDoNQ5XWrCy6zDyabdr0TWhCkClp+rywGNj/odAFBVzzJrK4tEq5M4Hmu4w==",
+ "version": "8.39.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.39.1.tgz",
+ "integrity": "sha512-W8FQi6kEh2e8zVhQ0eeRnxdvIoOkAp/CPAahcNio6nO9dsIwb9b34z90KOlheoyuVf6LSOEdjlkxSkapNEc+4A==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@typescript-eslint/types": "8.32.1",
- "eslint-visitor-keys": "^4.2.0"
+ "@typescript-eslint/types": "8.39.1",
+ "eslint-visitor-keys": "^4.2.1"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -2684,9 +2947,9 @@
}
},
"node_modules/@typespec/ts-http-runtime": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/@typespec/ts-http-runtime/-/ts-http-runtime-0.2.2.tgz",
- "integrity": "sha512-Gz/Sm64+Sq/vklJu1tt9t+4R2lvnud8NbTD/ZfpZtMiUX7YeVpCA8j6NSW8ptwcoLL+NmYANwqP8DV0q/bwl2w==",
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/@typespec/ts-http-runtime/-/ts-http-runtime-0.3.0.tgz",
+ "integrity": "sha512-sOx1PKSuFwnIl7z4RN0Ls7N9AQawmR9r66eI5rFCzLDIs8HTIYrIpH9QjYWoX0lkgGrkLxXhi4QnK7MizPRrIg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2695,7 +2958,7 @@
"tslib": "^2.6.2"
},
"engines": {
- "node": ">=18.0.0"
+ "node": ">=20.0.0"
}
},
"node_modules/@ungap/structured-clone": {
@@ -2719,32 +2982,38 @@
"vue": "^3.2.25"
}
},
+ "node_modules/@vscode/prompt-tsx": {
+ "version": "0.4.0-alpha.5",
+ "resolved": "https://registry.npmjs.org/@vscode/prompt-tsx/-/prompt-tsx-0.4.0-alpha.5.tgz",
+ "integrity": "sha512-Zc7osfYG4w+BWniZGK3Yd9d4LC7MS1AGSUMllhQboxvMT6aWWNo4YnoRlko4YbEY6OWJyNmSGgWEiuT8z8Bjcg==",
+ "license": "MIT"
+ },
"node_modules/@vscode/python-extension": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/@vscode/python-extension/-/python-extension-1.0.5.tgz",
- "integrity": "sha512-uYhXUrL/gn92mfqhjAwH2+yGOpjloBxj9ekoL4BhUsKcyJMpEg6WlNf3S3si+5x9zlbHHe7FYQNjZEbz1ymI9Q==",
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/@vscode/python-extension/-/python-extension-1.0.6.tgz",
+ "integrity": "sha512-q7KYf+mymM67G0yS6xfhczFwu2teBi5oXHVdNgtCsYhErdSOkwMPtE291SqQahrjTcgKxn7O56i1qb1EQR6o4w==",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=16.17.1",
- "vscode": "^1.78.0"
+ "node": ">=22.17.0",
+ "vscode": "^1.93.0"
}
},
"node_modules/@vscode/vsce": {
- "version": "3.4.1",
- "resolved": "https://registry.npmjs.org/@vscode/vsce/-/vsce-3.4.1.tgz",
- "integrity": "sha512-fDxgoGTQZ42+GdVWrOsxioXfS8VkDwjWNgaXqMNV2GCUmPmr45Rqs97PROqF7h+gKgrKOHmtQCBjeD4Wd/sRCQ==",
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/@vscode/vsce/-/vsce-3.6.0.tgz",
+ "integrity": "sha512-u2ZoMfymRNJb14aHNawnXJtXHLXDVKc1oKZaH4VELKT/9iWKRVgtQOdwxCgtwSxJoqYvuK4hGlBWQJ05wxADhg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@azure/identity": "^4.1.0",
- "@secretlint/node": "^9.3.2",
- "@secretlint/secretlint-formatter-sarif": "^9.3.2",
- "@secretlint/secretlint-rule-no-dotenv": "^9.3.2",
- "@secretlint/secretlint-rule-preset-recommend": "^9.3.2",
+ "@secretlint/node": "^10.1.1",
+ "@secretlint/secretlint-formatter-sarif": "^10.1.1",
+ "@secretlint/secretlint-rule-no-dotenv": "^10.1.1",
+ "@secretlint/secretlint-rule-preset-recommend": "^10.1.1",
"@vscode/vsce-sign": "^2.0.0",
"azure-devops-node-api": "^12.5.0",
- "chalk": "^2.4.2",
+ "chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.9",
"cockatiel": "^3.1.2",
"commander": "^12.1.0",
@@ -2758,7 +3027,7 @@
"minimatch": "^3.0.3",
"parse-semver": "^1.1.1",
"read": "^1.0.7",
- "secretlint": "^9.3.2",
+ "secretlint": "^10.1.1",
"semver": "^7.5.2",
"tmp": "^0.2.3",
"typed-rest-client": "^1.8.4",
@@ -2778,28 +3047,28 @@
}
},
"node_modules/@vscode/vsce-sign": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/@vscode/vsce-sign/-/vsce-sign-2.0.5.tgz",
- "integrity": "sha512-GfYWrsT/vypTMDMgWDm75iDmAOMe7F71sZECJ+Ws6/xyIfmB3ELVnVN+LwMFAvmXY+e6eWhR2EzNGF/zAhWY3Q==",
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/@vscode/vsce-sign/-/vsce-sign-2.0.6.tgz",
+ "integrity": "sha512-j9Ashk+uOWCDHYDxgGsqzKq5FXW9b9MW7QqOIYZ8IYpneJclWTBeHZz2DJCSKQgo+JAqNcaRRE1hzIx0dswqAw==",
"dev": true,
"hasInstallScript": true,
"license": "SEE LICENSE IN LICENSE.txt",
"optionalDependencies": {
- "@vscode/vsce-sign-alpine-arm64": "2.0.2",
- "@vscode/vsce-sign-alpine-x64": "2.0.2",
- "@vscode/vsce-sign-darwin-arm64": "2.0.2",
- "@vscode/vsce-sign-darwin-x64": "2.0.2",
- "@vscode/vsce-sign-linux-arm": "2.0.2",
- "@vscode/vsce-sign-linux-arm64": "2.0.2",
- "@vscode/vsce-sign-linux-x64": "2.0.2",
- "@vscode/vsce-sign-win32-arm64": "2.0.2",
- "@vscode/vsce-sign-win32-x64": "2.0.2"
+ "@vscode/vsce-sign-alpine-arm64": "2.0.5",
+ "@vscode/vsce-sign-alpine-x64": "2.0.5",
+ "@vscode/vsce-sign-darwin-arm64": "2.0.5",
+ "@vscode/vsce-sign-darwin-x64": "2.0.5",
+ "@vscode/vsce-sign-linux-arm": "2.0.5",
+ "@vscode/vsce-sign-linux-arm64": "2.0.5",
+ "@vscode/vsce-sign-linux-x64": "2.0.5",
+ "@vscode/vsce-sign-win32-arm64": "2.0.5",
+ "@vscode/vsce-sign-win32-x64": "2.0.5"
}
},
"node_modules/@vscode/vsce-sign-alpine-arm64": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-alpine-arm64/-/vsce-sign-alpine-arm64-2.0.2.tgz",
- "integrity": "sha512-E80YvqhtZCLUv3YAf9+tIbbqoinWLCO/B3j03yQPbjT3ZIHCliKZlsy1peNc4XNZ5uIb87Jn0HWx/ZbPXviuAQ==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-alpine-arm64/-/vsce-sign-alpine-arm64-2.0.5.tgz",
+ "integrity": "sha512-XVmnF40APwRPXSLYA28Ye+qWxB25KhSVpF2eZVtVOs6g7fkpOxsVnpRU1Bz2xG4ySI79IRuapDJoAQFkoOgfdQ==",
"cpu": [
"arm64"
],
@@ -2811,9 +3080,9 @@
]
},
"node_modules/@vscode/vsce-sign-alpine-x64": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-alpine-x64/-/vsce-sign-alpine-x64-2.0.2.tgz",
- "integrity": "sha512-n1WC15MSMvTaeJ5KjWCzo0nzjydwxLyoHiMJHu1Ov0VWTZiddasmOQHekA47tFRycnt4FsQrlkSCTdgHppn6bw==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-alpine-x64/-/vsce-sign-alpine-x64-2.0.5.tgz",
+ "integrity": "sha512-JuxY3xcquRsOezKq6PEHwCgd1rh1GnhyH6urVEWUzWn1c1PC4EOoyffMD+zLZtFuZF5qR1I0+cqDRNKyPvpK7Q==",
"cpu": [
"x64"
],
@@ -2825,9 +3094,9 @@
]
},
"node_modules/@vscode/vsce-sign-darwin-arm64": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-darwin-arm64/-/vsce-sign-darwin-arm64-2.0.2.tgz",
- "integrity": "sha512-rz8F4pMcxPj8fjKAJIfkUT8ycG9CjIp888VY/6pq6cuI2qEzQ0+b5p3xb74CJnBbSC0p2eRVoe+WgNCAxCLtzQ==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-darwin-arm64/-/vsce-sign-darwin-arm64-2.0.5.tgz",
+ "integrity": "sha512-z2Q62bk0ptADFz8a0vtPvnm6vxpyP3hIEYMU+i1AWz263Pj8Mc38cm/4sjzxu+LIsAfhe9HzvYNS49lV+KsatQ==",
"cpu": [
"arm64"
],
@@ -2839,9 +3108,9 @@
]
},
"node_modules/@vscode/vsce-sign-darwin-x64": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-darwin-x64/-/vsce-sign-darwin-x64-2.0.2.tgz",
- "integrity": "sha512-MCjPrQ5MY/QVoZ6n0D92jcRb7eYvxAujG/AH2yM6lI0BspvJQxp0o9s5oiAM9r32r9tkLpiy5s2icsbwefAQIw==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-darwin-x64/-/vsce-sign-darwin-x64-2.0.5.tgz",
+ "integrity": "sha512-ma9JDC7FJ16SuPXlLKkvOD2qLsmW/cKfqK4zzM2iJE1PbckF3BlR08lYqHV89gmuoTpYB55+z8Y5Fz4wEJBVDA==",
"cpu": [
"x64"
],
@@ -2853,9 +3122,9 @@
]
},
"node_modules/@vscode/vsce-sign-linux-arm": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-linux-arm/-/vsce-sign-linux-arm-2.0.2.tgz",
- "integrity": "sha512-Fkb5jpbfhZKVw3xwR6t7WYfwKZktVGNXdg1m08uEx1anO0oUPUkoQRsNm4QniL3hmfw0ijg00YA6TrxCRkPVOQ==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-linux-arm/-/vsce-sign-linux-arm-2.0.5.tgz",
+ "integrity": "sha512-cdCwtLGmvC1QVrkIsyzv01+o9eR+wodMJUZ9Ak3owhcGxPRB53/WvrDHAFYA6i8Oy232nuen1YqWeEohqBuSzA==",
"cpu": [
"arm"
],
@@ -2867,9 +3136,9 @@
]
},
"node_modules/@vscode/vsce-sign-linux-arm64": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-linux-arm64/-/vsce-sign-linux-arm64-2.0.2.tgz",
- "integrity": "sha512-Ybeu7cA6+/koxszsORXX0OJk9N0GgfHq70Wqi4vv2iJCZvBrOWwcIrxKjvFtwyDgdeQzgPheH5nhLVl5eQy7WA==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-linux-arm64/-/vsce-sign-linux-arm64-2.0.5.tgz",
+ "integrity": "sha512-Hr1o0veBymg9SmkCqYnfaiUnes5YK6k/lKFA5MhNmiEN5fNqxyPUCdRZMFs3Ajtx2OFW4q3KuYVRwGA7jdLo7Q==",
"cpu": [
"arm64"
],
@@ -2881,9 +3150,9 @@
]
},
"node_modules/@vscode/vsce-sign-linux-x64": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-linux-x64/-/vsce-sign-linux-x64-2.0.2.tgz",
- "integrity": "sha512-NsPPFVtLaTlVJKOiTnO8Cl78LZNWy0Q8iAg+LlBiCDEgC12Gt4WXOSs2pmcIjDYzj2kY4NwdeN1mBTaujYZaPg==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-linux-x64/-/vsce-sign-linux-x64-2.0.5.tgz",
+ "integrity": "sha512-XLT0gfGMcxk6CMRLDkgqEPTyG8Oa0OFe1tPv2RVbphSOjFWJwZgK3TYWx39i/7gqpDHlax0AP6cgMygNJrA6zg==",
"cpu": [
"x64"
],
@@ -2895,9 +3164,9 @@
]
},
"node_modules/@vscode/vsce-sign-win32-arm64": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-win32-arm64/-/vsce-sign-win32-arm64-2.0.2.tgz",
- "integrity": "sha512-wPs848ymZ3Ny+Y1Qlyi7mcT6VSigG89FWQnp2qRYCyMhdJxOpA4lDwxzlpL8fG6xC8GjQjGDkwbkWUcCobvksQ==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-win32-arm64/-/vsce-sign-win32-arm64-2.0.5.tgz",
+ "integrity": "sha512-hco8eaoTcvtmuPhavyCZhrk5QIcLiyAUhEso87ApAWDllG7djIrWiOCtqn48k4pHz+L8oCQlE0nwNHfcYcxOPw==",
"cpu": [
"arm64"
],
@@ -2909,9 +3178,9 @@
]
},
"node_modules/@vscode/vsce-sign-win32-x64": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-win32-x64/-/vsce-sign-win32-x64-2.0.2.tgz",
- "integrity": "sha512-pAiRN6qSAhDM5SVOIxgx+2xnoVUePHbRNC7OD2aOR3WltTKxxF25OfpK8h8UQ7A0BuRkSgREbB59DBlFk4iAeg==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@vscode/vsce-sign-win32-x64/-/vsce-sign-win32-x64-2.0.5.tgz",
+ "integrity": "sha512-1ixKFGM2FwM+6kQS2ojfY3aAelICxjiCzeg4nTHpkeU1Tfs4RC+lVLrgq5NwcBC7ZLr6UfY3Ct3D6suPeOf7BQ==",
"cpu": [
"x64"
],
@@ -2923,77 +3192,77 @@
]
},
"node_modules/@vue/compiler-core": {
- "version": "3.5.14",
- "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.14.tgz",
- "integrity": "sha512-k7qMHMbKvoCXIxPhquKQVw3Twid3Kg4s7+oYURxLGRd56LiuHJVrvFKI4fm2AM3c8apqODPfVJGoh8nePbXMRA==",
+ "version": "3.5.18",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.18.tgz",
+ "integrity": "sha512-3slwjQrrV1TO8MoXgy3aynDQ7lslj5UqDxuHnrzHtpON5CBinhWjJETciPngpin/T3OuW3tXUf86tEurusnztw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/parser": "^7.27.2",
- "@vue/shared": "3.5.14",
+ "@babel/parser": "^7.28.0",
+ "@vue/shared": "3.5.18",
"entities": "^4.5.0",
"estree-walker": "^2.0.2",
"source-map-js": "^1.2.1"
}
},
"node_modules/@vue/compiler-dom": {
- "version": "3.5.14",
- "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.14.tgz",
- "integrity": "sha512-1aOCSqxGOea5I80U2hQJvXYpPm/aXo95xL/m/mMhgyPUsKe9jhjwWpziNAw7tYRnbz1I61rd9Mld4W9KmmRoug==",
+ "version": "3.5.18",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.18.tgz",
+ "integrity": "sha512-RMbU6NTU70++B1JyVJbNbeFkK+A+Q7y9XKE2EM4NLGm2WFR8x9MbAtWxPPLdm0wUkuZv9trpwfSlL6tjdIa1+A==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vue/compiler-core": "3.5.14",
- "@vue/shared": "3.5.14"
+ "@vue/compiler-core": "3.5.18",
+ "@vue/shared": "3.5.18"
}
},
"node_modules/@vue/compiler-sfc": {
- "version": "3.5.14",
- "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.14.tgz",
- "integrity": "sha512-9T6m/9mMr81Lj58JpzsiSIjBgv2LiVoWjIVa7kuXHICUi8LiDSIotMpPRXYJsXKqyARrzjT24NAwttrMnMaCXA==",
+ "version": "3.5.18",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.18.tgz",
+ "integrity": "sha512-5aBjvGqsWs+MoxswZPoTB9nSDb3dhd1x30xrrltKujlCxo48j8HGDNj3QPhF4VIS0VQDUrA1xUfp2hEa+FNyXA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/parser": "^7.27.2",
- "@vue/compiler-core": "3.5.14",
- "@vue/compiler-dom": "3.5.14",
- "@vue/compiler-ssr": "3.5.14",
- "@vue/shared": "3.5.14",
+ "@babel/parser": "^7.28.0",
+ "@vue/compiler-core": "3.5.18",
+ "@vue/compiler-dom": "3.5.18",
+ "@vue/compiler-ssr": "3.5.18",
+ "@vue/shared": "3.5.18",
"estree-walker": "^2.0.2",
"magic-string": "^0.30.17",
- "postcss": "^8.5.3",
+ "postcss": "^8.5.6",
"source-map-js": "^1.2.1"
}
},
"node_modules/@vue/compiler-ssr": {
- "version": "3.5.14",
- "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.14.tgz",
- "integrity": "sha512-Y0G7PcBxr1yllnHuS/NxNCSPWnRGH4Ogrp0tsLA5QemDZuJLs99YjAKQ7KqkHE0vCg4QTKlQzXLKCMF7WPSl7Q==",
+ "version": "3.5.18",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.18.tgz",
+ "integrity": "sha512-xM16Ak7rSWHkM3m22NlmcdIM+K4BMyFARAfV9hYFl+SFuRzrZ3uGMNW05kA5pmeMa0X9X963Kgou7ufdbpOP9g==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vue/compiler-dom": "3.5.14",
- "@vue/shared": "3.5.14"
+ "@vue/compiler-dom": "3.5.18",
+ "@vue/shared": "3.5.18"
}
},
"node_modules/@vue/devtools-api": {
- "version": "7.7.6",
- "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-7.7.6.tgz",
- "integrity": "sha512-b2Xx0KvXZObePpXPYHvBRRJLDQn5nhKjXh7vUhMEtWxz1AYNFOVIsh5+HLP8xDGL7sy+Q7hXeUxPHB/KgbtsPw==",
+ "version": "7.7.7",
+ "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-7.7.7.tgz",
+ "integrity": "sha512-lwOnNBH2e7x1fIIbVT7yF5D+YWhqELm55/4ZKf45R9T8r9dE2AIOy8HKjfqzGsoTHFbWbr337O4E0A0QADnjBg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vue/devtools-kit": "^7.7.6"
+ "@vue/devtools-kit": "^7.7.7"
}
},
"node_modules/@vue/devtools-kit": {
- "version": "7.7.6",
- "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.7.6.tgz",
- "integrity": "sha512-geu7ds7tem2Y7Wz+WgbnbZ6T5eadOvozHZ23Atk/8tksHMFOFylKi1xgGlQlVn0wlkEf4hu+vd5ctj1G4kFtwA==",
+ "version": "7.7.7",
+ "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.7.7.tgz",
+ "integrity": "sha512-wgoZtxcTta65cnZ1Q6MbAfePVFxfM+gq0saaeytoph7nEa7yMXoi6sCPy4ufO111B9msnw0VOWjPEFCXuAKRHA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vue/devtools-shared": "^7.7.6",
+ "@vue/devtools-shared": "^7.7.7",
"birpc": "^2.3.0",
"hookable": "^5.5.3",
"mitt": "^3.0.1",
@@ -3003,9 +3272,9 @@
}
},
"node_modules/@vue/devtools-shared": {
- "version": "7.7.6",
- "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.7.6.tgz",
- "integrity": "sha512-yFEgJZ/WblEsojQQceuyK6FzpFDx4kqrz2ohInxNj5/DnhoX023upTv4OD6lNPLAA5LLkbwPVb10o/7b+Y4FVA==",
+ "version": "7.7.7",
+ "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.7.7.tgz",
+ "integrity": "sha512-+udSj47aRl5aKb0memBvcUG9koarqnxNM5yjuREvqwK6T3ap4mn3Zqqc17QrBFTqSMjr3HK1cvStEZpMDpfdyw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3013,57 +3282,57 @@
}
},
"node_modules/@vue/reactivity": {
- "version": "3.5.14",
- "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.14.tgz",
- "integrity": "sha512-7cK1Hp343Fu/SUCCO52vCabjvsYu7ZkOqyYu7bXV9P2yyfjUMUXHZafEbq244sP7gf+EZEz+77QixBTuEqkQQw==",
+ "version": "3.5.18",
+ "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.18.tgz",
+ "integrity": "sha512-x0vPO5Imw+3sChLM5Y+B6G1zPjwdOri9e8V21NnTnlEvkxatHEH5B5KEAJcjuzQ7BsjGrKtfzuQ5eQwXh8HXBg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vue/shared": "3.5.14"
+ "@vue/shared": "3.5.18"
}
},
"node_modules/@vue/runtime-core": {
- "version": "3.5.14",
- "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.14.tgz",
- "integrity": "sha512-w9JWEANwHXNgieAhxPpEpJa+0V5G0hz3NmjAZwlOebtfKyp2hKxKF0+qSh0Xs6/PhfGihuSdqMprMVcQU/E6ag==",
+ "version": "3.5.18",
+ "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.18.tgz",
+ "integrity": "sha512-DUpHa1HpeOQEt6+3nheUfqVXRog2kivkXHUhoqJiKR33SO4x+a5uNOMkV487WPerQkL0vUuRvq/7JhRgLW3S+w==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vue/reactivity": "3.5.14",
- "@vue/shared": "3.5.14"
+ "@vue/reactivity": "3.5.18",
+ "@vue/shared": "3.5.18"
}
},
"node_modules/@vue/runtime-dom": {
- "version": "3.5.14",
- "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.14.tgz",
- "integrity": "sha512-lCfR++IakeI35TVR80QgOelsUIdcKjd65rWAMfdSlCYnaEY5t3hYwru7vvcWaqmrK+LpI7ZDDYiGU5V3xjMacw==",
+ "version": "3.5.18",
+ "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.18.tgz",
+ "integrity": "sha512-YwDj71iV05j4RnzZnZtGaXwPoUWeRsqinblgVJwR8XTXYZ9D5PbahHQgsbmzUvCWNF6x7siQ89HgnX5eWkr3mw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vue/reactivity": "3.5.14",
- "@vue/runtime-core": "3.5.14",
- "@vue/shared": "3.5.14",
+ "@vue/reactivity": "3.5.18",
+ "@vue/runtime-core": "3.5.18",
+ "@vue/shared": "3.5.18",
"csstype": "^3.1.3"
}
},
"node_modules/@vue/server-renderer": {
- "version": "3.5.14",
- "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.14.tgz",
- "integrity": "sha512-Rf/ISLqokIvcySIYnv3tNWq40PLpNLDLSJwwVWzG6MNtyIhfbcrAxo5ZL9nARJhqjZyWWa40oRb2IDuejeuv6w==",
+ "version": "3.5.18",
+ "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.18.tgz",
+ "integrity": "sha512-PvIHLUoWgSbDG7zLHqSqaCoZvHi6NNmfVFOqO+OnwvqMz/tqQr3FuGWS8ufluNddk7ZLBJYMrjcw1c6XzR12mA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vue/compiler-ssr": "3.5.14",
- "@vue/shared": "3.5.14"
+ "@vue/compiler-ssr": "3.5.18",
+ "@vue/shared": "3.5.18"
},
"peerDependencies": {
- "vue": "3.5.14"
+ "vue": "3.5.18"
}
},
"node_modules/@vue/shared": {
- "version": "3.5.14",
- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.14.tgz",
- "integrity": "sha512-oXTwNxVfc9EtP1zzXAlSlgARLXNC84frFYkS0HHz0h3E4WZSP9sywqjqzGCP9Y34M8ipNmd380pVgmMuwELDyQ==",
+ "version": "3.5.18",
+ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.18.tgz",
+ "integrity": "sha512-cZy8Dq+uuIXbxCZpuLd2GJdeSO/lIzIspC2WtkqIpje5QyFbvLaI5wZtdUjLHjGZrlVX6GilejatWwVYYRc8tA==",
"dev": true,
"license": "MIT"
},
@@ -3376,9 +3645,9 @@
"peer": true
},
"node_modules/acorn": {
- "version": "8.14.1",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz",
- "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==",
+ "version": "8.15.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
+ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
"dev": true,
"license": "MIT",
"bin": {
@@ -3388,6 +3657,20 @@
"node": ">=0.4.0"
}
},
+ "node_modules/acorn-import-phases": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz",
+ "integrity": "sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=10.13.0"
+ },
+ "peerDependencies": {
+ "acorn": "^8.14.0"
+ }
+ },
"node_modules/acorn-jsx": {
"version": "5.3.2",
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
@@ -3399,29 +3682,15 @@
}
},
"node_modules/agent-base": {
- "version": "7.1.3",
- "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz",
- "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==",
+ "version": "7.1.4",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
+ "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">= 14"
}
},
- "node_modules/aggregate-error": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
- "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "clean-stack": "^2.0.0",
- "indent-string": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
@@ -3485,25 +3754,26 @@
"peer": true
},
"node_modules/algoliasearch": {
- "version": "5.25.0",
- "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.25.0.tgz",
- "integrity": "sha512-n73BVorL4HIwKlfJKb4SEzAYkR3Buwfwbh+MYxg2mloFph2fFGV58E90QTzdbfzWrLn4HE5Czx/WTjI8fcHaMg==",
+ "version": "5.35.0",
+ "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.35.0.tgz",
+ "integrity": "sha512-Y+moNhsqgLmvJdgTsO4GZNgsaDWv8AOGAaPeIeHKlDn/XunoAqYbA+XNpBd1dW8GOXAUDyxC9Rxc7AV4kpFcIg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-abtesting": "5.25.0",
- "@algolia/client-analytics": "5.25.0",
- "@algolia/client-common": "5.25.0",
- "@algolia/client-insights": "5.25.0",
- "@algolia/client-personalization": "5.25.0",
- "@algolia/client-query-suggestions": "5.25.0",
- "@algolia/client-search": "5.25.0",
- "@algolia/ingestion": "1.25.0",
- "@algolia/monitoring": "1.25.0",
- "@algolia/recommend": "5.25.0",
- "@algolia/requester-browser-xhr": "5.25.0",
- "@algolia/requester-fetch": "5.25.0",
- "@algolia/requester-node-http": "5.25.0"
+ "@algolia/abtesting": "1.1.0",
+ "@algolia/client-abtesting": "5.35.0",
+ "@algolia/client-analytics": "5.35.0",
+ "@algolia/client-common": "5.35.0",
+ "@algolia/client-insights": "5.35.0",
+ "@algolia/client-personalization": "5.35.0",
+ "@algolia/client-query-suggestions": "5.35.0",
+ "@algolia/client-search": "5.35.0",
+ "@algolia/ingestion": "1.35.0",
+ "@algolia/monitoring": "1.35.0",
+ "@algolia/recommend": "5.35.0",
+ "@algolia/requester-browser-xhr": "5.35.0",
+ "@algolia/requester-fetch": "5.35.0",
+ "@algolia/requester-node-http": "5.35.0"
},
"engines": {
"node": ">= 14.0.0"
@@ -3519,55 +3789,48 @@
}
},
"node_modules/ansi-escapes": {
- "version": "4.3.2",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
- "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.0.0.tgz",
+ "integrity": "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "type-fest": "^0.21.3"
- },
- "engines": {
- "node": ">=8"
+ "environment": "^1.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/ansi-escapes/node_modules/type-fest": {
- "version": "0.21.3",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
- "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
- "dev": true,
- "license": "(MIT OR CC0-1.0)",
"engines": {
- "node": ">=10"
+ "node": ">=18"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
+ "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
}
},
"node_modules/ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^1.9.0"
+ "color-convert": "^2.0.1"
},
"engines": {
- "node": ">=4"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/argparse": {
@@ -3634,22 +3897,25 @@
"optional": true
},
"node_modules/binaryextensions": {
- "version": "4.19.0",
- "resolved": "https://registry.npmjs.org/binaryextensions/-/binaryextensions-4.19.0.tgz",
- "integrity": "sha512-DRxnVbOi/1OgA5pA9EDiRT8gvVYeqfuN7TmPfLyt6cyho3KbHCi3EtDQf39TTmGDrR5dZ9CspdXhPkL/j/WGbg==",
+ "version": "6.11.0",
+ "resolved": "https://registry.npmjs.org/binaryextensions/-/binaryextensions-6.11.0.tgz",
+ "integrity": "sha512-sXnYK/Ij80TO3lcqZVV2YgfKN5QjUWIRk/XSm2J/4bd/lPko3lvk0O4ZppH6m+6hB2/GTu+ptNwVFe1xh+QLQw==",
"dev": true,
"license": "Artistic-2.0",
+ "dependencies": {
+ "editions": "^6.21.0"
+ },
"engines": {
- "node": ">=0.8"
+ "node": ">=4"
},
"funding": {
"url": "https://bevry.me/fund"
}
},
"node_modules/birpc": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/birpc/-/birpc-2.3.0.tgz",
- "integrity": "sha512-ijbtkn/F3Pvzb6jHypHRyve2QApOCZDR25D/VnkY2G/lBNcXCTsnsCxgY4k4PkVB7zfwzYbY3O9Lcqe3xufS5g==",
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/birpc/-/birpc-2.5.0.tgz",
+ "integrity": "sha512-VSWO/W6nNQdyP520F1mhf+Lc2f8pjGQOtoHHm7Ze8Go1kX7akpVIrtTa0fn+HB0QJEDVacl6aO08YE0PgXfdnQ==",
"dev": true,
"license": "MIT",
"funding": {
@@ -3684,9 +3950,9 @@
"license": "BSD-2-Clause"
},
"node_modules/brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "version": "1.1.12",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3708,9 +3974,9 @@
}
},
"node_modules/browserslist": {
- "version": "4.24.5",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.5.tgz",
- "integrity": "sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw==",
+ "version": "4.25.2",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.2.tgz",
+ "integrity": "sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==",
"dev": true,
"funding": [
{
@@ -3729,8 +3995,8 @@
"license": "MIT",
"peer": true,
"dependencies": {
- "caniuse-lite": "^1.0.30001716",
- "electron-to-chromium": "^1.5.149",
+ "caniuse-lite": "^1.0.30001733",
+ "electron-to-chromium": "^1.5.199",
"node-releases": "^2.0.19",
"update-browserslist-db": "^1.1.3"
},
@@ -3850,9 +4116,9 @@
}
},
"node_modules/caniuse-lite": {
- "version": "1.0.30001718",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001718.tgz",
- "integrity": "sha512-AflseV1ahcSunK53NfEs9gFWgOEmzr0f+kaMFA4xiLZlr9Hzt7HxcSpIFcnNCUkz6R6dWKa54rUz3HUmI3nVcw==",
+ "version": "1.0.30001734",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001734.tgz",
+ "integrity": "sha512-uhE1Ye5vgqju6OI71HTQqcBCZrvHugk0MjLak7Q+HfoBgoq5Bi+5YnwjP4fjDgrtYr/l8MVRBvzz9dPD4KyK0A==",
"dev": true,
"funding": [
{
@@ -3883,18 +4149,20 @@
}
},
"node_modules/chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
}
},
"node_modules/character-entities-html4": {
@@ -3920,26 +4188,26 @@
}
},
"node_modules/cheerio": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0.tgz",
- "integrity": "sha512-quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww==",
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.1.2.tgz",
+ "integrity": "sha512-IkxPpb5rS/d1IiLbHMgfPuS0FgiWTtFIm/Nj+2woXDLTZ7fOT2eqzgYbdMlLweqlHbsZjxEChoVK+7iph7jyQg==",
"dev": true,
"license": "MIT",
"dependencies": {
"cheerio-select": "^2.1.0",
"dom-serializer": "^2.0.0",
"domhandler": "^5.0.3",
- "domutils": "^3.1.0",
- "encoding-sniffer": "^0.2.0",
- "htmlparser2": "^9.1.0",
- "parse5": "^7.1.2",
- "parse5-htmlparser2-tree-adapter": "^7.0.0",
+ "domutils": "^3.2.2",
+ "encoding-sniffer": "^0.2.1",
+ "htmlparser2": "^10.0.0",
+ "parse5": "^7.3.0",
+ "parse5-htmlparser2-tree-adapter": "^7.1.0",
"parse5-parser-stream": "^7.1.2",
- "undici": "^6.19.5",
+ "undici": "^7.12.0",
"whatwg-mimetype": "^4.0.0"
},
"engines": {
- "node": ">=18.17"
+ "node": ">=20.18.1"
},
"funding": {
"url": "https://github.com/cheeriojs/cheerio?sponsor=1"
@@ -3989,16 +4257,6 @@
"dev": true,
"license": "MIT"
},
- "node_modules/clean-stack": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
- "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
"node_modules/cockatiel": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/cockatiel/-/cockatiel-3.2.1.tgz",
@@ -4010,19 +4268,22 @@
}
},
"node_modules/color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-name": "1.1.3"
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
}
},
"node_modules/color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
"dev": true,
"license": "MIT"
},
@@ -4099,9 +4360,9 @@
}
},
"node_modules/css-select": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz",
- "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==",
+ "version": "5.2.2",
+ "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz",
+ "integrity": "sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -4116,9 +4377,9 @@
}
},
"node_modules/css-what": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz",
- "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==",
+ "version": "6.2.2",
+ "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz",
+ "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
@@ -4218,6 +4479,24 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/define-data-property": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
+ "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-define-property": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/define-lazy-prop": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz",
@@ -4231,6 +4510,24 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/define-properties": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
+ "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "define-data-property": "^1.0.1",
+ "has-property-descriptors": "^1.0.0",
+ "object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/delayed-stream": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
@@ -4371,10 +4668,27 @@
"safe-buffer": "^5.0.1"
}
},
+ "node_modules/editions": {
+ "version": "6.22.0",
+ "resolved": "https://registry.npmjs.org/editions/-/editions-6.22.0.tgz",
+ "integrity": "sha512-UgGlf8IW75je7HZjNDpJdCv4cGJWIi6yumFdZ0R7A8/CIhQiWUjyGLCxdHpd8bmyD1gnkfUNK0oeOXqUS2cpfQ==",
+ "dev": true,
+ "license": "Artistic-2.0",
+ "dependencies": {
+ "version-range": "^4.15.0"
+ },
+ "engines": {
+ "ecmascript": ">= es5",
+ "node": ">=4"
+ },
+ "funding": {
+ "url": "https://bevry.me/fund"
+ }
+ },
"node_modules/electron-to-chromium": {
- "version": "1.5.155",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.155.tgz",
- "integrity": "sha512-ps5KcGGmwL8VaeJlvlDlu4fORQpv3+GIcF5I3f9tUKUlJ/wsysh6HU8P5L1XWRYeXfA0oJd4PyM8ds8zTFf6Ng==",
+ "version": "1.5.200",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.200.tgz",
+ "integrity": "sha512-rFCxROw7aOe4uPTfIAx+rXv9cEcGx+buAF4npnhtTqCJk5KDFRnh3+KYj7rdVh6lsFt5/aPs+Irj9rZ33WMA7w==",
"dev": true,
"license": "ISC",
"peer": true
@@ -4394,9 +4708,9 @@
"license": "MIT"
},
"node_modules/encoding-sniffer": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/encoding-sniffer/-/encoding-sniffer-0.2.0.tgz",
- "integrity": "sha512-ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg==",
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/encoding-sniffer/-/encoding-sniffer-0.2.1.tgz",
+ "integrity": "sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4408,9 +4722,9 @@
}
},
"node_modules/end-of-stream": {
- "version": "1.4.4",
- "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
- "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
+ "version": "1.4.5",
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz",
+ "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
"dev": true,
"license": "MIT",
"optional": true,
@@ -4419,9 +4733,9 @@
}
},
"node_modules/enhanced-resolve": {
- "version": "5.18.1",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz",
- "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==",
+ "version": "5.18.3",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz",
+ "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4445,14 +4759,17 @@
"url": "https://github.com/fb55/entities?sponsor=1"
}
},
- "node_modules/error-ex": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+ "node_modules/environment": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz",
+ "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==",
"dev": true,
"license": "MIT",
- "dependencies": {
- "is-arrayish": "^0.2.1"
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/es-define-property": {
@@ -4513,9 +4830,9 @@
}
},
"node_modules/esbuild": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.4.tgz",
- "integrity": "sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q==",
+ "version": "0.25.9",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.9.tgz",
+ "integrity": "sha512-CRbODhYyQx3qp7ZEwzxOk4JBqmD/seJrzPa/cGjY1VtIn5E09Oi9/dB4JwctnfZ8Q8iT7rioVv5k/FNT/uf54g==",
"dev": true,
"hasInstallScript": true,
"license": "MIT",
@@ -4526,31 +4843,32 @@
"node": ">=18"
},
"optionalDependencies": {
- "@esbuild/aix-ppc64": "0.25.4",
- "@esbuild/android-arm": "0.25.4",
- "@esbuild/android-arm64": "0.25.4",
- "@esbuild/android-x64": "0.25.4",
- "@esbuild/darwin-arm64": "0.25.4",
- "@esbuild/darwin-x64": "0.25.4",
- "@esbuild/freebsd-arm64": "0.25.4",
- "@esbuild/freebsd-x64": "0.25.4",
- "@esbuild/linux-arm": "0.25.4",
- "@esbuild/linux-arm64": "0.25.4",
- "@esbuild/linux-ia32": "0.25.4",
- "@esbuild/linux-loong64": "0.25.4",
- "@esbuild/linux-mips64el": "0.25.4",
- "@esbuild/linux-ppc64": "0.25.4",
- "@esbuild/linux-riscv64": "0.25.4",
- "@esbuild/linux-s390x": "0.25.4",
- "@esbuild/linux-x64": "0.25.4",
- "@esbuild/netbsd-arm64": "0.25.4",
- "@esbuild/netbsd-x64": "0.25.4",
- "@esbuild/openbsd-arm64": "0.25.4",
- "@esbuild/openbsd-x64": "0.25.4",
- "@esbuild/sunos-x64": "0.25.4",
- "@esbuild/win32-arm64": "0.25.4",
- "@esbuild/win32-ia32": "0.25.4",
- "@esbuild/win32-x64": "0.25.4"
+ "@esbuild/aix-ppc64": "0.25.9",
+ "@esbuild/android-arm": "0.25.9",
+ "@esbuild/android-arm64": "0.25.9",
+ "@esbuild/android-x64": "0.25.9",
+ "@esbuild/darwin-arm64": "0.25.9",
+ "@esbuild/darwin-x64": "0.25.9",
+ "@esbuild/freebsd-arm64": "0.25.9",
+ "@esbuild/freebsd-x64": "0.25.9",
+ "@esbuild/linux-arm": "0.25.9",
+ "@esbuild/linux-arm64": "0.25.9",
+ "@esbuild/linux-ia32": "0.25.9",
+ "@esbuild/linux-loong64": "0.25.9",
+ "@esbuild/linux-mips64el": "0.25.9",
+ "@esbuild/linux-ppc64": "0.25.9",
+ "@esbuild/linux-riscv64": "0.25.9",
+ "@esbuild/linux-s390x": "0.25.9",
+ "@esbuild/linux-x64": "0.25.9",
+ "@esbuild/netbsd-arm64": "0.25.9",
+ "@esbuild/netbsd-x64": "0.25.9",
+ "@esbuild/openbsd-arm64": "0.25.9",
+ "@esbuild/openbsd-x64": "0.25.9",
+ "@esbuild/openharmony-arm64": "0.25.9",
+ "@esbuild/sunos-x64": "0.25.9",
+ "@esbuild/win32-arm64": "0.25.9",
+ "@esbuild/win32-ia32": "0.25.9",
+ "@esbuild/win32-x64": "0.25.9"
}
},
"node_modules/escalade": {
@@ -4578,30 +4896,33 @@
}
},
"node_modules/escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=0.8.0"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/eslint": {
- "version": "9.27.0",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.27.0.tgz",
- "integrity": "sha512-ixRawFQuMB9DZ7fjU3iGGganFDp3+45bPOdaRurcFHSXO1e/sYwUX/FtQZpLZJR6SjMoJH8hR2pPEAfDyCoU2Q==",
+ "version": "9.33.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.33.0.tgz",
+ "integrity": "sha512-TS9bTNIryDzStCpJN93aC5VRSW3uTx9sClUn4B87pwiCaJh220otoI0X8mJKr+VcPtniMdN8GKjlwgWGUv5ZKA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@eslint-community/eslint-utils": "^4.2.0",
"@eslint-community/regexpp": "^4.12.1",
- "@eslint/config-array": "^0.20.0",
- "@eslint/config-helpers": "^0.2.1",
- "@eslint/core": "^0.14.0",
+ "@eslint/config-array": "^0.21.0",
+ "@eslint/config-helpers": "^0.3.1",
+ "@eslint/core": "^0.15.2",
"@eslint/eslintrc": "^3.3.1",
- "@eslint/js": "9.27.0",
- "@eslint/plugin-kit": "^0.3.1",
+ "@eslint/js": "9.33.0",
+ "@eslint/plugin-kit": "^0.3.5",
"@humanfs/node": "^0.16.6",
"@humanwhocodes/module-importer": "^1.0.1",
"@humanwhocodes/retry": "^0.4.2",
@@ -4612,9 +4933,9 @@
"cross-spawn": "^7.0.6",
"debug": "^4.3.2",
"escape-string-regexp": "^4.0.0",
- "eslint-scope": "^8.3.0",
- "eslint-visitor-keys": "^4.2.0",
- "espree": "^10.3.0",
+ "eslint-scope": "^8.4.0",
+ "eslint-visitor-keys": "^4.2.1",
+ "espree": "^10.4.0",
"esquery": "^1.5.0",
"esutils": "^2.0.2",
"fast-deep-equal": "^3.1.3",
@@ -4649,9 +4970,9 @@
}
},
"node_modules/eslint-config-prettier": {
- "version": "10.1.5",
- "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.5.tgz",
- "integrity": "sha512-zc1UmCpNltmVY34vuLRV61r1K27sWuX39E+uyUnY8xS2Bex88VV9cugG+UZbRSRGtGyFboj+D8JODyme1plMpw==",
+ "version": "10.1.8",
+ "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz",
+ "integrity": "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==",
"dev": true,
"license": "MIT",
"bin": {
@@ -4665,14 +4986,14 @@
}
},
"node_modules/eslint-plugin-prettier": {
- "version": "5.4.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.4.0.tgz",
- "integrity": "sha512-BvQOvUhkVQM1i63iMETK9Hjud9QhqBnbtT1Zc642p9ynzBuCe5pybkOnvqZIBypXmMlsGcnU4HZ8sCTPfpAexA==",
+ "version": "5.5.4",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.5.4.tgz",
+ "integrity": "sha512-swNtI95SToIz05YINMA6Ox5R057IMAmWZ26GqPxusAp1TZzj+IdY9tXNWWD3vkF/wEqydCONcwjTFpxybBqZsg==",
"dev": true,
"license": "MIT",
"dependencies": {
"prettier-linter-helpers": "^1.0.0",
- "synckit": "^0.11.0"
+ "synckit": "^0.11.7"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
@@ -4696,9 +5017,9 @@
}
},
"node_modules/eslint-scope": {
- "version": "8.3.0",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz",
- "integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==",
+ "version": "8.4.0",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz",
+ "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -4713,9 +5034,9 @@
}
},
"node_modules/eslint-visitor-keys": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz",
- "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==",
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -4725,95 +5046,6 @@
"url": "https://opencollective.com/eslint"
}
},
- "node_modules/eslint/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/eslint/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/eslint/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/eslint/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/eslint/node_modules/escape-string-regexp": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
- "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/eslint/node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/eslint/node_modules/supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/esm": {
"version": "3.2.25",
"resolved": "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz",
@@ -4825,15 +5057,15 @@
}
},
"node_modules/espree": {
- "version": "10.3.0",
- "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz",
- "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==",
+ "version": "10.4.0",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz",
+ "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
- "acorn": "^8.14.0",
+ "acorn": "^8.15.0",
"acorn-jsx": "^5.3.2",
- "eslint-visitor-keys": "^4.2.0"
+ "eslint-visitor-keys": "^4.2.1"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -5104,9 +5336,9 @@
"license": "ISC"
},
"node_modules/focus-trap": {
- "version": "7.6.4",
- "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.6.4.tgz",
- "integrity": "sha512-xx560wGBk7seZ6y933idtjJQc1l+ck+pI3sKvhKozdBV1dRZoKhkW5xoCaFv9tQiX5RH1xfSxjuNu6g+lmN/gw==",
+ "version": "7.6.5",
+ "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.6.5.tgz",
+ "integrity": "sha512-7Ke1jyybbbPZyZXFxEftUtxFGLMpE2n6A+z//m4CRDlj0hW+o3iYSmh8nFlYMurOiJVDmJRilUQtJr08KfIxlg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5114,9 +5346,9 @@
}
},
"node_modules/follow-redirects": {
- "version": "1.15.9",
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz",
- "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==",
+ "version": "1.15.11",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
+ "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
"dev": true,
"funding": [
{
@@ -5152,15 +5384,16 @@
}
},
"node_modules/form-data": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz",
- "integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==",
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz",
+ "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==",
"dev": true,
"license": "MIT",
"dependencies": {
"asynckit": "^0.4.0",
"combined-stream": "^1.0.8",
"es-set-tostringtag": "^2.1.0",
+ "hasown": "^2.0.2",
"mime-types": "^2.1.12"
},
"engines": {
@@ -5176,9 +5409,9 @@
"optional": true
},
"node_modules/fs-extra": {
- "version": "11.3.0",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz",
- "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==",
+ "version": "11.3.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.1.tgz",
+ "integrity": "sha512-eXvGGwZ5CL17ZSwHWd3bbgk7UUpF6IFHtP57NYYakPvHOs8GDgDe5KJI36jIJzDkJ6eJjuzRA8eBQb6SkKue0g==",
"license": "MIT",
"dependencies": {
"graceful-fs": "^4.2.0",
@@ -5262,15 +5495,15 @@
"optional": true
},
"node_modules/glob": {
- "version": "11.0.2",
- "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.2.tgz",
- "integrity": "sha512-YT7U7Vye+t5fZ/QMkBFrTJ7ZQxInIUjwyAjVj84CYXqgBdv30MFUPGnBR6sQaVq6Is15wYJUsnzTuWaGRBhBAQ==",
+ "version": "11.0.3",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.3.tgz",
+ "integrity": "sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==",
"dev": true,
"license": "ISC",
"dependencies": {
- "foreground-child": "^3.1.0",
- "jackspeak": "^4.0.1",
- "minimatch": "^10.0.0",
+ "foreground-child": "^3.3.1",
+ "jackspeak": "^4.1.1",
+ "minimatch": "^10.0.3",
"minipass": "^7.1.2",
"package-json-from-dist": "^1.0.0",
"path-scurry": "^2.0.0"
@@ -5306,24 +5539,14 @@
"license": "BSD-2-Clause",
"peer": true
},
- "node_modules/glob/node_modules/brace-expansion": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "balanced-match": "^1.0.0"
- }
- },
"node_modules/glob/node_modules/minimatch": {
- "version": "10.0.1",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz",
- "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==",
+ "version": "10.0.3",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.3.tgz",
+ "integrity": "sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==",
"dev": true,
"license": "ISC",
"dependencies": {
- "brace-expansion": "^2.0.1"
+ "@isaacs/brace-expansion": "^5.0.0"
},
"engines": {
"node": "20 || >=22"
@@ -5332,17 +5555,34 @@
"url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/globals": {
- "version": "16.1.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-16.1.0.tgz",
- "integrity": "sha512-aibexHNbb/jiUSObBgpHLj+sIuUmJnYcgXBlrfsiDZ9rt4aF2TFRbyLgZ2iFQuVZ1K5Mx3FVkbKRSgKrbK3K2g==",
+ "node_modules/globals": {
+ "version": "16.3.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-16.3.0.tgz",
+ "integrity": "sha512-bqWEnJ1Nt3neqx2q5SFfGS8r/ahumIakg3HcwtNlrVlwXIeNumWn/c7Pn/wKzGhf6SaW6H6uWXLqC30STCMchQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/globalthis": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz",
+ "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "define-properties": "^1.2.1",
+ "gopd": "^1.0.1"
+ },
"engines": {
- "node": ">=18"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/globby": {
@@ -5367,9 +5607,9 @@
}
},
"node_modules/globby/node_modules/ignore": {
- "version": "7.0.4",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.4.tgz",
- "integrity": "sha512-gJzzk+PQNznz8ysRrC0aOkBNVRBDtE1n53IqyqEf3PXrYwomFs5q4pGMizBMJF+ykh03insJ27hB8gSrD2Hn8A==",
+ "version": "7.0.5",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
+ "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5443,13 +5683,26 @@
}
},
"node_modules/has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">=8"
+ }
+ },
+ "node_modules/has-property-descriptors": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
+ "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-define-property": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/has-symbols": {
@@ -5564,9 +5817,9 @@
}
},
"node_modules/htmlparser2": {
- "version": "9.1.0",
- "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-9.1.0.tgz",
- "integrity": "sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==",
+ "version": "10.0.0",
+ "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.0.0.tgz",
+ "integrity": "sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==",
"dev": true,
"funding": [
"https://github.com/fb55/htmlparser2?sponsor=1",
@@ -5579,8 +5832,21 @@
"dependencies": {
"domelementtype": "^2.3.0",
"domhandler": "^5.0.3",
- "domutils": "^3.1.0",
- "entities": "^4.5.0"
+ "domutils": "^3.2.1",
+ "entities": "^6.0.0"
+ }
+ },
+ "node_modules/htmlparser2/node_modules/entities": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
+ "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=0.12"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
}
},
"node_modules/http-proxy-agent": {
@@ -5683,14 +5949,17 @@
"node": ">=0.8.19"
}
},
- "node_modules/indent-string": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
- "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
+ "node_modules/index-to-position": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-1.1.0.tgz",
+ "integrity": "sha512-XPdx9Dq4t9Qk1mTMbWONJqU7boCoumEH7fRET37HX5+khDUl3J2W6PdALxhILYlIYx2amlwYcRPp28p0tSiojg==",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/inherits": {
@@ -5709,13 +5978,6 @@
"license": "ISC",
"optional": true
},
- "node_modules/is-arrayish": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
- "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
- "dev": true,
- "license": "MIT"
- },
"node_modules/is-ci": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz",
@@ -5807,6 +6069,19 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/is-it-type": {
+ "version": "5.1.3",
+ "resolved": "https://registry.npmjs.org/is-it-type/-/is-it-type-5.1.3.tgz",
+ "integrity": "sha512-AX2uU0HW+TxagTgQXOJY7+2fbFHemC7YFBwN1XqD8qQMKdtfbOC8OC3fUb4s5NU59a3662Dzwto8tWDdZYRXxg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "globalthis": "^1.0.2"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
"node_modules/is-number": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
@@ -5854,26 +6129,27 @@
"license": "ISC"
},
"node_modules/istextorbinary": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/istextorbinary/-/istextorbinary-6.0.0.tgz",
- "integrity": "sha512-4j3UqQCa06GAf6QHlN3giz2EeFU7qc6Q5uB/aY7Gmb3xmLDLepDOtsZqkb4sCfJgFvTbLUinNw0kHgHs8XOHoQ==",
+ "version": "9.5.0",
+ "resolved": "https://registry.npmjs.org/istextorbinary/-/istextorbinary-9.5.0.tgz",
+ "integrity": "sha512-5mbUj3SiZXCuRf9fT3ibzbSSEWiy63gFfksmGfdOzujPjW3k+z8WvIBxcJHBoQNlaZaiyB25deviif2+osLmLw==",
"dev": true,
- "license": "MIT",
+ "license": "Artistic-2.0",
"dependencies": {
- "binaryextensions": "^4.18.0",
- "textextensions": "^5.14.0"
+ "binaryextensions": "^6.11.0",
+ "editions": "^6.21.0",
+ "textextensions": "^6.11.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=4"
},
"funding": {
"url": "https://bevry.me/fund"
}
},
"node_modules/jackspeak": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.0.tgz",
- "integrity": "sha512-9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw==",
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.1.tgz",
+ "integrity": "sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==",
"dev": true,
"license": "BlueOak-1.0.0",
"dependencies": {
@@ -5902,17 +6178,6 @@
"node": ">= 10.13.0"
}
},
- "node_modules/jest-worker/node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/jest-worker/node_modules/supports-color": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
@@ -5958,14 +6223,12 @@
"license": "MIT"
},
"node_modules/json-parse-even-better-errors": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.2.tgz",
- "integrity": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==",
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
+ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
"dev": true,
"license": "MIT",
- "engines": {
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
- }
+ "peer": true
},
"node_modules/json-schema-traverse": {
"version": "0.4.1",
@@ -6002,9 +6265,9 @@
"license": "MIT"
},
"node_modules/jsonfile": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
- "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
+ "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
"license": "MIT",
"dependencies": {
"universalify": "^2.0.0"
@@ -6295,16 +6558,6 @@
"node": ">= 0.8.0"
}
},
- "node_modules/lines-and-columns": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.4.tgz",
- "integrity": "sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
- }
- },
"node_modules/linkify-it": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz",
@@ -6908,32 +7161,17 @@
"peer": true
},
"node_modules/node-sarif-builder": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/node-sarif-builder/-/node-sarif-builder-2.0.3.tgz",
- "integrity": "sha512-Pzr3rol8fvhG/oJjIq2NTVB0vmdNNlz22FENhhPojYRZ4/ee08CfK4YuKmuL54V9MLhI1kpzxfOJ/63LzmZzDg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/sarif": "^2.1.4",
- "fs-extra": "^10.0.0"
- },
- "engines": {
- "node": ">=14"
- }
- },
- "node_modules/node-sarif-builder/node_modules/fs-extra": {
- "version": "10.1.0",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
- "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/node-sarif-builder/-/node-sarif-builder-3.2.0.tgz",
+ "integrity": "sha512-kVIOdynrF2CRodHZeP/97Rh1syTUHBNiw17hUCIVhlhEsWlfJm19MuO56s4MdKbr22xWx6mzMnNAgXzVlIYM9Q==",
"dev": true,
"license": "MIT",
"dependencies": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
+ "@types/sarif": "^2.1.7",
+ "fs-extra": "^11.1.1"
},
"engines": {
- "node": ">=12"
+ "node": ">=18"
}
},
"node_modules/normalize-package-data": {
@@ -6997,6 +7235,16 @@
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/object-keys": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/once": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
@@ -7021,16 +7269,16 @@
}
},
"node_modules/open": {
- "version": "10.1.2",
- "resolved": "https://registry.npmjs.org/open/-/open-10.1.2.tgz",
- "integrity": "sha512-cxN6aIDPz6rm8hbebcP7vrQNhvRcveZoJU72Y7vskh4oIm+BZwBECnx5nTmrlres1Qapvx27Qo1Auukpf8PKXw==",
+ "version": "10.2.0",
+ "resolved": "https://registry.npmjs.org/open/-/open-10.2.0.tgz",
+ "integrity": "sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==",
"dev": true,
"license": "MIT",
"dependencies": {
"default-browser": "^5.2.1",
"define-lazy-prop": "^3.0.0",
"is-inside-container": "^1.0.0",
- "is-wsl": "^3.1.0"
+ "wsl-utils": "^0.1.0"
},
"engines": {
"node": ">=18"
@@ -7058,9 +7306,9 @@
}
},
"node_modules/ovsx": {
- "version": "0.10.2",
- "resolved": "https://registry.npmjs.org/ovsx/-/ovsx-0.10.2.tgz",
- "integrity": "sha512-osLwIOz5Uu1ePvYYSjKw05bkCZo2j/ydQLjm3uO7bCfstyFFzmWyzMGTAL3wJpI4qpo1S47Y52+q09h9A2ZRkQ==",
+ "version": "0.10.5",
+ "resolved": "https://registry.npmjs.org/ovsx/-/ovsx-0.10.5.tgz",
+ "integrity": "sha512-jfulG5k9vjWcolg2kubC51t1eHKA8ANPcKCQKaWPfOsJZ9VlIppP0Anf8pJ1LJHZFHoRmeMXITG9a5NXHwY9tA==",
"dev": true,
"license": "EPL-2.0",
"dependencies": {
@@ -7071,7 +7319,7 @@
"leven": "^3.1.0",
"semver": "^7.6.0",
"tmp": "^0.2.3",
- "yauzl": "^3.1.3"
+ "yauzl-promise": "^4.0.0"
},
"bin": {
"ovsx": "lib/ovsx"
@@ -7090,20 +7338,6 @@
"node": ">= 6"
}
},
- "node_modules/ovsx/node_modules/yauzl": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-3.2.0.tgz",
- "integrity": "sha512-Ow9nuGZE+qp1u4JIPvg+uCiUr7xGQWdff7JQSk5VGYTAZMDe2q8lxJ10ygv10qmSj031Ty/6FNJpLO4o1Sgc+w==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "buffer-crc32": "~0.2.3",
- "pend": "~1.2.0"
- },
- "engines": {
- "node": ">=12"
- }
- },
"node_modules/p-limit": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
@@ -7137,16 +7371,13 @@
}
},
"node_modules/p-map": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
- "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.3.tgz",
+ "integrity": "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==",
"dev": true,
"license": "MIT",
- "dependencies": {
- "aggregate-error": "^3.0.0"
- },
"engines": {
- "node": ">=10"
+ "node": ">=18"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
@@ -7173,33 +7404,18 @@
}
},
"node_modules/parse-json": {
- "version": "7.1.1",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-7.1.1.tgz",
- "integrity": "sha512-SgOTCX/EZXtZxBE5eJ97P4yGM5n37BwRU+YMsH4vNzFqJV/oWFXXCmwFlgWUM4PrakybVOueJJ6pwHqSVhTFDw==",
+ "version": "8.3.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.3.0.tgz",
+ "integrity": "sha512-ybiGyvspI+fAoRQbIPRddCcSTV9/LsJbf0e/S85VLowVGzRmokfneg2kwVW/KU5rOXrPSbF1qAKPMgNTqqROQQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.21.4",
- "error-ex": "^1.3.2",
- "json-parse-even-better-errors": "^3.0.0",
- "lines-and-columns": "^2.0.3",
- "type-fest": "^3.8.0"
- },
- "engines": {
- "node": ">=16"
+ "@babel/code-frame": "^7.26.2",
+ "index-to-position": "^1.1.0",
+ "type-fest": "^4.39.1"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/parse-json/node_modules/type-fest": {
- "version": "3.13.1",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz",
- "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==",
- "dev": true,
- "license": "(MIT OR CC0-1.0)",
"engines": {
- "node": ">=14.16"
+ "node": ">=18"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
@@ -7266,9 +7482,9 @@
}
},
"node_modules/parse5/node_modules/entities": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.0.tgz",
- "integrity": "sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
+ "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
@@ -7383,9 +7599,9 @@
}
},
"node_modules/postcss": {
- "version": "8.5.3",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz",
- "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==",
+ "version": "8.5.6",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
"dev": true,
"funding": [
{
@@ -7403,7 +7619,7 @@
],
"license": "MIT",
"dependencies": {
- "nanoid": "^3.3.8",
+ "nanoid": "^3.3.11",
"picocolors": "^1.1.1",
"source-map-js": "^1.2.1"
},
@@ -7412,9 +7628,9 @@
}
},
"node_modules/preact": {
- "version": "10.26.6",
- "resolved": "https://registry.npmjs.org/preact/-/preact-10.26.6.tgz",
- "integrity": "sha512-5SRRBinwpwkaD+OqlBDeITlRgvd8I8QlxHJw9AxSdMNV6O+LodN9nUyYGpSF7sadHjs6RzeFShMexC6DbtWr9g==",
+ "version": "10.27.0",
+ "resolved": "https://registry.npmjs.org/preact/-/preact-10.27.0.tgz",
+ "integrity": "sha512-/DTYoB6mwwgPytiqQTh/7SFRL98ZdiD8Sk8zIUVOxtwq4oWcwrcd1uno9fE/zZmUaUrFNYzbH14CPebOz9tZQw==",
"dev": true,
"license": "MIT",
"funding": {
@@ -7461,9 +7677,9 @@
}
},
"node_modules/prettier": {
- "version": "3.5.3",
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz",
- "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==",
+ "version": "3.6.2",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz",
+ "integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==",
"dev": true,
"license": "MIT",
"bin": {
@@ -7501,9 +7717,9 @@
}
},
"node_modules/pump": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz",
- "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==",
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz",
+ "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==",
"dev": true,
"license": "MIT",
"optional": true,
@@ -7549,9 +7765,9 @@
}
},
"node_modules/qsu": {
- "version": "1.10.0",
- "resolved": "https://registry.npmjs.org/qsu/-/qsu-1.10.0.tgz",
- "integrity": "sha512-60UGE7IEYXX/xy/n1w7vDm+is43pmePajAdXAnFOczvVDJKbVqZ5/RvRy+yobjA4iQitr4H/4zojVFtAkNWW9g==",
+ "version": "1.10.1",
+ "resolved": "https://registry.npmjs.org/qsu/-/qsu-1.10.1.tgz",
+ "integrity": "sha512-LQBaOApxuFZKZfRIZKzsuCRxSM1XWize9/SIWc5cBVlH/w8Pub4YVxx3mHMPQsmg6jM2cS6Uhkg7DPfwyTr0ew==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7645,19 +7861,33 @@
}
},
"node_modules/read-pkg": {
- "version": "8.1.0",
- "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-8.1.0.tgz",
- "integrity": "sha512-PORM8AgzXeskHO/WEv312k9U03B8K9JSiWF/8N9sUuFjBa+9SF2u6K7VClzXwDXab51jCd8Nd36CNM+zR97ScQ==",
+ "version": "9.0.1",
+ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz",
+ "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/normalize-package-data": "^2.4.1",
+ "@types/normalize-package-data": "^2.4.3",
"normalize-package-data": "^6.0.0",
- "parse-json": "^7.0.0",
- "type-fest": "^4.2.0"
+ "parse-json": "^8.0.0",
+ "type-fest": "^4.6.0",
+ "unicorn-magic": "^0.1.0"
},
"engines": {
- "node": ">=16"
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/read-pkg/node_modules/unicorn-magic": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz",
+ "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
@@ -7745,13 +7975,13 @@
"license": "MIT"
},
"node_modules/rollup": {
- "version": "4.41.0",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.41.0.tgz",
- "integrity": "sha512-HqMFpUbWlf/tvcxBFNKnJyzc7Lk+XO3FGc3pbNBLqEbOz0gPLRgcrlS3UF4MfUrVlstOaP/q0kM6GVvi+LrLRg==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.46.2.tgz",
+ "integrity": "sha512-WMmLFI+Boh6xbop+OAGo9cQ3OgX9MIg7xOQjn+pTCwOkk+FNDAeAemXkJ3HzDJrVXleLOFVa1ipuc1AmEx1Dwg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/estree": "1.0.7"
+ "@types/estree": "1.0.8"
},
"bin": {
"rollup": "dist/bin/rollup"
@@ -7761,26 +7991,26 @@
"npm": ">=8.0.0"
},
"optionalDependencies": {
- "@rollup/rollup-android-arm-eabi": "4.41.0",
- "@rollup/rollup-android-arm64": "4.41.0",
- "@rollup/rollup-darwin-arm64": "4.41.0",
- "@rollup/rollup-darwin-x64": "4.41.0",
- "@rollup/rollup-freebsd-arm64": "4.41.0",
- "@rollup/rollup-freebsd-x64": "4.41.0",
- "@rollup/rollup-linux-arm-gnueabihf": "4.41.0",
- "@rollup/rollup-linux-arm-musleabihf": "4.41.0",
- "@rollup/rollup-linux-arm64-gnu": "4.41.0",
- "@rollup/rollup-linux-arm64-musl": "4.41.0",
- "@rollup/rollup-linux-loongarch64-gnu": "4.41.0",
- "@rollup/rollup-linux-powerpc64le-gnu": "4.41.0",
- "@rollup/rollup-linux-riscv64-gnu": "4.41.0",
- "@rollup/rollup-linux-riscv64-musl": "4.41.0",
- "@rollup/rollup-linux-s390x-gnu": "4.41.0",
- "@rollup/rollup-linux-x64-gnu": "4.41.0",
- "@rollup/rollup-linux-x64-musl": "4.41.0",
- "@rollup/rollup-win32-arm64-msvc": "4.41.0",
- "@rollup/rollup-win32-ia32-msvc": "4.41.0",
- "@rollup/rollup-win32-x64-msvc": "4.41.0",
+ "@rollup/rollup-android-arm-eabi": "4.46.2",
+ "@rollup/rollup-android-arm64": "4.46.2",
+ "@rollup/rollup-darwin-arm64": "4.46.2",
+ "@rollup/rollup-darwin-x64": "4.46.2",
+ "@rollup/rollup-freebsd-arm64": "4.46.2",
+ "@rollup/rollup-freebsd-x64": "4.46.2",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.46.2",
+ "@rollup/rollup-linux-arm-musleabihf": "4.46.2",
+ "@rollup/rollup-linux-arm64-gnu": "4.46.2",
+ "@rollup/rollup-linux-arm64-musl": "4.46.2",
+ "@rollup/rollup-linux-loongarch64-gnu": "4.46.2",
+ "@rollup/rollup-linux-ppc64-gnu": "4.46.2",
+ "@rollup/rollup-linux-riscv64-gnu": "4.46.2",
+ "@rollup/rollup-linux-riscv64-musl": "4.46.2",
+ "@rollup/rollup-linux-s390x-gnu": "4.46.2",
+ "@rollup/rollup-linux-x64-gnu": "4.46.2",
+ "@rollup/rollup-linux-x64-musl": "4.46.2",
+ "@rollup/rollup-win32-arm64-msvc": "4.46.2",
+ "@rollup/rollup-win32-ia32-msvc": "4.46.2",
+ "@rollup/rollup-win32-x64-msvc": "4.46.2",
"fsevents": "~2.3.2"
}
},
@@ -7926,25 +8156,25 @@
"peer": true
},
"node_modules/secretlint": {
- "version": "9.3.2",
- "resolved": "https://registry.npmjs.org/secretlint/-/secretlint-9.3.2.tgz",
- "integrity": "sha512-IuFrtWMGeVFSWpuhn1T6JC0mgfwD9rbFNZG1aWtpkBKOUCbcKZ+RoJcJjdJ0DXv8oa9vRg/+DZUl6Q6omZdPQQ==",
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/secretlint/-/secretlint-10.2.2.tgz",
+ "integrity": "sha512-xVpkeHV/aoWe4vP4TansF622nBEImzCY73y/0042DuJ29iKIaqgoJ8fGxre3rVSHHbxar4FdJobmTnLp9AU0eg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@secretlint/config-creator": "^9.3.2",
- "@secretlint/formatter": "^9.3.2",
- "@secretlint/node": "^9.3.2",
- "@secretlint/profiler": "^9.3.2",
- "debug": "^4.4.0",
+ "@secretlint/config-creator": "^10.2.2",
+ "@secretlint/formatter": "^10.2.2",
+ "@secretlint/node": "^10.2.2",
+ "@secretlint/profiler": "^10.2.2",
+ "debug": "^4.4.1",
"globby": "^14.1.0",
- "read-pkg": "^8.1.0"
+ "read-pkg": "^9.0.1"
},
"bin": {
"secretlint": "bin/secretlint.js"
},
"engines": {
- "node": "^14.13.1 || >=16.0.0"
+ "node": ">=20.0.0"
}
},
"node_modules/section-matter": {
@@ -8162,6 +8392,16 @@
"simple-concat": "^1.0.0"
}
},
+ "node_modules/simple-invariant": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/simple-invariant/-/simple-invariant-2.0.1.tgz",
+ "integrity": "sha512-1sbhsxqI+I2tqlmjbz99GXNmZtr6tKIyEgGGnJw/MKGblalqk/XoOYYFJlBzTKZCxx8kLaD3FD5s9BEEjx5Pyg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ }
+ },
"node_modules/slash": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz",
@@ -8193,42 +8433,6 @@
"url": "https://github.com/chalk/slice-ansi?sponsor=1"
}
},
- "node_modules/slice-ansi/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/slice-ansi/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/slice-ansi/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true,
- "license": "MIT"
- },
"node_modules/slick": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/slick/-/slick-1.12.2.tgz",
@@ -8240,13 +8444,13 @@
}
},
"node_modules/source-map": {
- "version": "0.7.4",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
- "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==",
+ "version": "0.7.6",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz",
+ "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==",
"dev": true,
"license": "BSD-3-Clause",
"engines": {
- "node": ">= 8"
+ "node": ">= 12"
}
},
"node_modules/source-map-js": {
@@ -8323,9 +8527,9 @@
}
},
"node_modules/spdx-license-ids": {
- "version": "3.0.21",
- "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.21.tgz",
- "integrity": "sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==",
+ "version": "3.0.22",
+ "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz",
+ "integrity": "sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==",
"dev": true,
"license": "CC0-1.0"
},
@@ -8413,6 +8617,52 @@
"node": ">=8"
}
},
+ "node_modules/string-width-cjs/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string-width-cjs/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string-width/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string-width/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/stringify-entities": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz",
@@ -8429,6 +8679,23 @@
}
},
"node_modules/strip-ansi": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ }
+ },
+ "node_modules/strip-ansi-cjs": {
+ "name": "strip-ansi",
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
@@ -8441,16 +8708,12 @@
"node": ">=8"
}
},
- "node_modules/strip-ansi-cjs": {
- "name": "strip-ansi",
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
"engines": {
"node": ">=8"
}
@@ -8502,22 +8765,22 @@
}
},
"node_modules/supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "has-flag": "^3.0.0"
+ "has-flag": "^4.0.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=8"
}
},
"node_modules/supports-hyperlinks": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz",
- "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==",
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.2.0.tgz",
+ "integrity": "sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8525,40 +8788,20 @@
"supports-color": "^7.0.0"
},
"engines": {
- "node": ">=8"
- }
- },
- "node_modules/supports-hyperlinks/node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/supports-hyperlinks/node_modules/supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
+ "node": ">=14.18"
},
- "engines": {
- "node": ">=8"
+ "funding": {
+ "url": "https://github.com/chalk/supports-hyperlinks?sponsor=1"
}
},
"node_modules/synckit": {
- "version": "0.11.6",
- "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.11.6.tgz",
- "integrity": "sha512-2pR2ubZSV64f/vqm9eLPz/KOvR9Dm+Co/5ChLgeHl0yEDRc6h5hXHoxEQH8Y5Ljycozd3p1k5TTSVdzYGkPvLw==",
+ "version": "0.11.11",
+ "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.11.11.tgz",
+ "integrity": "sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@pkgr/core": "^0.2.4"
+ "@pkgr/core": "^0.2.9"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
@@ -8608,6 +8851,16 @@
"url": "https://github.com/sponsors/epoberezkin"
}
},
+ "node_modules/table/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/table/node_modules/json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
@@ -8615,6 +8868,19 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/table/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/tapable": {
"version": "2.2.2",
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.2.tgz",
@@ -8626,9 +8892,9 @@
}
},
"node_modules/tar-fs": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.2.tgz",
- "integrity": "sha512-EsaAXwxmx8UB7FRKqeozqEPop69DXcmYwTQwXvyAPF352HJsPdkVhvTaDPYqfNgruveJIJy3TA2l+2zj8LJIJA==",
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.3.tgz",
+ "integrity": "sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==",
"dev": true,
"license": "MIT",
"optional": true,
@@ -8658,26 +8924,26 @@
}
},
"node_modules/terminal-link": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz",
- "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==",
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-4.0.0.tgz",
+ "integrity": "sha512-lk+vH+MccxNqgVqSnkMVKx4VLJfnLjDBGzH16JVZjKE2DoxP57s6/vt6JmXV5I3jBcfGrxNrYtC+mPtU7WJztA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-escapes": "^4.2.1",
- "supports-hyperlinks": "^2.0.0"
+ "ansi-escapes": "^7.0.0",
+ "supports-hyperlinks": "^3.2.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=18"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/terser": {
- "version": "5.39.2",
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.39.2.tgz",
- "integrity": "sha512-yEPUmWve+VA78bI71BW70Dh0TuV4HHd+I5SHOAfS1+QBOmvmCiiffgjR8ryyEd3KIfvPGFqoADt8LdQ6XpXIvg==",
+ "version": "5.43.1",
+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz",
+ "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==",
"dev": true,
"license": "BSD-2-Clause",
"peer": true,
@@ -8746,22 +9012,25 @@
"license": "MIT"
},
"node_modules/textextensions": {
- "version": "5.16.0",
- "resolved": "https://registry.npmjs.org/textextensions/-/textextensions-5.16.0.tgz",
- "integrity": "sha512-7D/r3s6uPZyU//MCYrX6I14nzauDwJ5CxazouuRGNuvSCihW87ufN6VLoROLCrHg6FblLuJrT6N2BVaPVzqElw==",
+ "version": "6.11.0",
+ "resolved": "https://registry.npmjs.org/textextensions/-/textextensions-6.11.0.tgz",
+ "integrity": "sha512-tXJwSr9355kFJI3lbCkPpUH5cP8/M0GGy2xLO34aZCjMXBaK3SoPnZwr/oWmo1FdCnELcs4npdCIOFtq9W3ruQ==",
"dev": true,
- "license": "MIT",
+ "license": "Artistic-2.0",
+ "dependencies": {
+ "editions": "^6.21.0"
+ },
"engines": {
- "node": ">=0.8"
+ "node": ">=4"
},
"funding": {
"url": "https://bevry.me/fund"
}
},
"node_modules/tmp": {
- "version": "0.2.3",
- "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz",
- "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==",
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.5.tgz",
+ "integrity": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8833,82 +9102,6 @@
"webpack": "^5.0.0"
}
},
- "node_modules/ts-loader/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/ts-loader/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/ts-loader/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/ts-loader/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/ts-loader/node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/ts-loader/node_modules/supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
@@ -8979,9 +9172,9 @@
}
},
"node_modules/typescript": {
- "version": "5.8.3",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
- "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
+ "version": "5.9.2",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz",
+ "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==",
"dev": true,
"license": "Apache-2.0",
"bin": {
@@ -8993,15 +9186,16 @@
}
},
"node_modules/typescript-eslint": {
- "version": "8.32.1",
- "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.32.1.tgz",
- "integrity": "sha512-D7el+eaDHAmXvrZBy1zpzSNIRqnCOrkwTgZxTu3MUqRWk8k0q9m9Ho4+vPf7iHtgUfrK/o8IZaEApsxPlHTFCg==",
+ "version": "8.39.1",
+ "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.39.1.tgz",
+ "integrity": "sha512-GDUv6/NDYngUlNvwaHM1RamYftxf782IyEDbdj3SeaIHHv8fNQVRC++fITT7kUJV/5rIA/tkoRSSskt6osEfqg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@typescript-eslint/eslint-plugin": "8.32.1",
- "@typescript-eslint/parser": "8.32.1",
- "@typescript-eslint/utils": "8.32.1"
+ "@typescript-eslint/eslint-plugin": "8.39.1",
+ "@typescript-eslint/parser": "8.39.1",
+ "@typescript-eslint/typescript-estree": "8.39.1",
+ "@typescript-eslint/utils": "8.39.1"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -9012,7 +9206,7 @@
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
- "typescript": ">=4.8.4 <5.9.0"
+ "typescript": ">=4.8.4 <6.0.0"
}
},
"node_modules/uc.micro": {
@@ -9030,13 +9224,13 @@
"license": "MIT"
},
"node_modules/undici": {
- "version": "6.21.3",
- "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.3.tgz",
- "integrity": "sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw==",
+ "version": "7.13.0",
+ "resolved": "https://registry.npmjs.org/undici/-/undici-7.13.0.tgz",
+ "integrity": "sha512-l+zSMssRqrzDcb3fjMkjjLGmuiiK2pMIcV++mJaAc9vhjSGpvM7h43QgP+OAMb1GImHmbPyG2tBXeuyG5iY4gA==",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=18.17"
+ "node": ">=20.18.1"
}
},
"node_modules/undici-types": {
@@ -9229,6 +9423,19 @@
"spdx-expression-parse": "^3.0.0"
}
},
+ "node_modules/version-range": {
+ "version": "4.15.0",
+ "resolved": "https://registry.npmjs.org/version-range/-/version-range-4.15.0.tgz",
+ "integrity": "sha512-Ck0EJbAGxHwprkzFO966t4/5QkRuzh+/I1RxhLgUKKwEn+Cd8NwM60mE3AqBZg5gYODoXW0EFsQvbZjRlvdqbg==",
+ "dev": true,
+ "license": "Artistic-2.0",
+ "engines": {
+ "node": ">=4"
+ },
+ "funding": {
+ "url": "https://bevry.me/fund"
+ }
+ },
"node_modules/vfile": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
@@ -9245,9 +9452,9 @@
}
},
"node_modules/vfile-message": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz",
- "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==",
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
+ "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9750,9 +9957,9 @@
}
},
"node_modules/vitepress": {
- "version": "1.6.3",
- "resolved": "https://registry.npmjs.org/vitepress/-/vitepress-1.6.3.tgz",
- "integrity": "sha512-fCkfdOk8yRZT8GD9BFqusW3+GggWYZ/rYncOfmgcDtP3ualNHCAg+Robxp2/6xfH1WwPHtGpPwv7mbA3qomtBw==",
+ "version": "1.6.4",
+ "resolved": "https://registry.npmjs.org/vitepress/-/vitepress-1.6.4.tgz",
+ "integrity": "sha512-+2ym1/+0VVrbhNyRoFFesVvBvHAVMZMK0rw60E3X/5349M1GuVdKeazuksqopEdvkKwKGs21Q729jX81/bkBJg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9791,6 +9998,23 @@
}
}
},
+ "node_modules/vitepress-plugin-llmstxt": {
+ "version": "0.4.2",
+ "resolved": "https://registry.npmjs.org/vitepress-plugin-llmstxt/-/vitepress-plugin-llmstxt-0.4.2.tgz",
+ "integrity": "sha512-WcAIYtwx3xaTe6lL4QLCqySqVB2zrlMLPmLWcS5JmrsKer7ZK4wcHHb6cSQFRduPmX4aA1tLivg3U/5Wn0QfcA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=20.19.4"
+ },
+ "funding": {
+ "type": "individual",
+ "url": "https://pigeonposse.com/contribute"
+ },
+ "peerDependencies": {
+ "vitepress": "^1.0.0"
+ }
+ },
"node_modules/vitepress-plugin-tabs": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/vitepress-plugin-tabs/-/vitepress-plugin-tabs-0.7.1.tgz",
@@ -9803,24 +10027,24 @@
}
},
"node_modules/vitepress-sidebar": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/vitepress-sidebar/-/vitepress-sidebar-1.31.1.tgz",
- "integrity": "sha512-Hx10z5le87jIIXVfKq4AtRrVqVJJ/1cQsZhmwT+ghVR/j4Yor9FjNMszyigJ54ktrEtoxSLO6C9tvuLauT4lZA==",
+ "version": "1.33.0",
+ "resolved": "https://registry.npmjs.org/vitepress-sidebar/-/vitepress-sidebar-1.33.0.tgz",
+ "integrity": "sha512-+z45vGG6OQRKNU7OMhmrp5y9dk9Y8loFZGE2LwzqloqA4p+ECP3/Ti6qrS8kB3N8Rol4v0Nf8HSnsgZEDU4HXQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"glob": "10.4.5",
"gray-matter": "4.0.3",
- "qsu": "^1.10.0"
+ "qsu": "^1.10.1"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/vitepress-sidebar/node_modules/brace-expansion": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
+ "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9928,9 +10152,9 @@
}
},
"node_modules/vscode-languageclient/node_modules/brace-expansion": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
+ "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
"license": "MIT",
"dependencies": {
"balanced-match": "^1.0.0"
@@ -9965,17 +10189,17 @@
"license": "MIT"
},
"node_modules/vue": {
- "version": "3.5.14",
- "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.14.tgz",
- "integrity": "sha512-LbOm50/vZFG6Mhy6KscQYXZMQ0LMCC/y40HDJPPvGFQ+i/lUH+PJHR6C3assgOQiXdl6tAfsXHbXYVBZZu65ew==",
+ "version": "3.5.18",
+ "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.18.tgz",
+ "integrity": "sha512-7W4Y4ZbMiQ3SEo+m9lnoNpV9xG7QVMLa+/0RFwwiAVkeYoyGXqWE85jabU4pllJNUzqfLShJ5YLptewhCWUgNA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vue/compiler-dom": "3.5.14",
- "@vue/compiler-sfc": "3.5.14",
- "@vue/runtime-dom": "3.5.14",
- "@vue/server-renderer": "3.5.14",
- "@vue/shared": "3.5.14"
+ "@vue/compiler-dom": "3.5.18",
+ "@vue/compiler-sfc": "3.5.18",
+ "@vue/runtime-dom": "3.5.18",
+ "@vue/server-renderer": "3.5.18",
+ "@vue/shared": "3.5.18"
},
"peerDependencies": {
"typescript": "*"
@@ -9987,9 +10211,9 @@
}
},
"node_modules/watchpack": {
- "version": "2.4.3",
- "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.3.tgz",
- "integrity": "sha512-adBYQLivcg1jbdKEJeqScJJFvgm4qY9+3tXw+jdG6lkVeqRJEtiQmSWjmth8GKmDZuX7sYM4YFxQsf0AzMfGGw==",
+ "version": "2.4.4",
+ "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz",
+ "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==",
"dev": true,
"license": "MIT",
"peer": true,
@@ -10144,23 +10368,24 @@
"license": "BSD-2-Clause"
},
"node_modules/webpack": {
- "version": "5.99.9",
- "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.99.9.tgz",
- "integrity": "sha512-brOPwM3JnmOa+7kd3NsmOUOwbDAj8FT9xDsG3IW0MgbN9yZV7Oi/s/+MNQ/EcSMqw7qfoRyXPoeEWT8zLVdVGg==",
+ "version": "5.101.1",
+ "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.101.1.tgz",
+ "integrity": "sha512-rHY3vHXRbkSfhG6fH8zYQdth/BtDgXXuR2pHF++1f/EBkI8zkgM5XWfsC3BvOoW9pr1CvZ1qQCxhCEsbNgT50g==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@types/eslint-scope": "^3.7.7",
- "@types/estree": "^1.0.6",
+ "@types/estree": "^1.0.8",
"@types/json-schema": "^7.0.15",
"@webassemblyjs/ast": "^1.14.1",
"@webassemblyjs/wasm-edit": "^1.14.1",
"@webassemblyjs/wasm-parser": "^1.14.1",
- "acorn": "^8.14.0",
+ "acorn": "^8.15.0",
+ "acorn-import-phases": "^1.0.3",
"browserslist": "^4.24.0",
"chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^5.17.1",
+ "enhanced-resolve": "^5.17.3",
"es-module-lexer": "^1.2.1",
"eslint-scope": "5.1.1",
"events": "^3.2.0",
@@ -10174,7 +10399,7 @@
"tapable": "^2.1.1",
"terser-webpack-plugin": "^5.3.11",
"watchpack": "^2.4.1",
- "webpack-sources": "^3.2.3"
+ "webpack-sources": "^3.3.3"
},
"bin": {
"webpack": "bin/webpack.js"
@@ -10193,9 +10418,9 @@
}
},
"node_modules/webpack-sources": {
- "version": "3.2.3",
- "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz",
- "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==",
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.3.tgz",
+ "integrity": "sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==",
"dev": true,
"license": "MIT",
"peer": true,
@@ -10229,14 +10454,6 @@
"node": ">=4.0"
}
},
- "node_modules/webpack/node_modules/json-parse-even-better-errors": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
- "dev": true,
- "license": "MIT",
- "peer": true
- },
"node_modules/whatwg-encoding": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz",
@@ -10341,53 +10558,27 @@
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
- "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
"engines": {
"node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/wrap-ansi-cjs/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-name": "~1.1.4"
+ "ansi-regex": "^5.0.1"
},
"engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/wrap-ansi-cjs/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/wrap-ansi/node_modules/ansi-regex": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
- "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ "node": ">=8"
}
},
"node_modules/wrap-ansi/node_modules/ansi-styles": {
@@ -10428,30 +10619,30 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/wrap-ansi/node_modules/strip-ansi": {
- "version": "7.1.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
- "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+ "node_modules/wrappy": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
+ "dev": true,
+ "license": "ISC",
+ "optional": true
+ },
+ "node_modules/wsl-utils": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/wsl-utils/-/wsl-utils-0.1.0.tgz",
+ "integrity": "sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-regex": "^6.0.1"
+ "is-wsl": "^3.1.0"
},
"engines": {
- "node": ">=12"
+ "node": ">=18"
},
"funding": {
- "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/wrappy": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
- "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
- "dev": true,
- "license": "ISC",
- "optional": true
- },
"node_modules/xml2js": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.5.0.tgz",
@@ -10494,6 +10685,21 @@
"fd-slicer": "~1.1.0"
}
},
+ "node_modules/yauzl-promise": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/yauzl-promise/-/yauzl-promise-4.0.0.tgz",
+ "integrity": "sha512-/HCXpyHXJQQHvFq9noqrjfa/WpQC2XYs3vI7tBiAi4QiIU1knvYhZGaO1QPjwIVMdqflxbmwgMXtYeaRiAE0CA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@node-rs/crc32": "^1.7.0",
+ "is-it-type": "^5.1.2",
+ "simple-invariant": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16"
+ }
+ },
"node_modules/yazl": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/yazl/-/yazl-2.5.1.tgz",
diff --git a/package.json b/package.json
index a6cc447fa..0e63da877 100644
--- a/package.json
+++ b/package.json
@@ -4,7 +4,7 @@
"description": "Robot Framework IntelliSense, linting, test execution and debugging, code formatting, refactoring, and many more",
"icon": "images/icon.png",
"publisher": "d-biehl",
- "version": "1.3.0-dev.2",
+ "version": "1.7.0",
"author": {
"name": "Daniel Biehl",
"url": "https://github.com/robotcodedev/"
@@ -19,7 +19,7 @@
},
"qna": "https://github.com/robotcodedev/robotcode/discussions/categories/q-a",
"engines": {
- "vscode": "^1.96.0"
+ "vscode": "^1.99.0"
},
"categories": [
"Programming Languages",
@@ -448,10 +448,13 @@
"editor.semanticTokenColorCustomizations": {
"rules": {
"*.documentation:robotframework": {
- "fontStyle": "italic"
+ "italic": true
},
"*.embedded:robotframework": {
- "fontStyle": "italic"
+ "italic": true
+ },
+ "*.builtin:robotframework": {
+ "italic": true
}
}
}
@@ -512,9 +515,6 @@
"argument": [
"string.unquoted.argument.robotframework"
],
- "embeddedArgument": [
- "string.unquoted.embeddedArgument.robotframework"
- ],
"variable": [
"variable.name.readwrite.robotframework"
],
@@ -1116,13 +1116,13 @@
}
},
{
- "title": "Linting - Robocop",
+ "title": "Linting and Formatting - Robocop",
"type": "object",
"properties": {
"robotcode.robocop.enabled": {
"type": "boolean",
"default": true,
- "markdownDescription": "Enables 'robocop' code analysis, if installed. See [robocop](https://github.com/MarketSquare/robotframework-robocop)",
+ "markdownDescription": "Enables 'robocop' code analysis, if installed. See [robocop](https://robocop.readthedocs.io/)",
"scope": "resource"
},
"robotcode.robocop.include": {
@@ -1132,7 +1132,8 @@
"type": "string"
},
"description": "Include specified 'robocop' rules. You can define rule by its name or id. Glob patterns are supported",
- "scope": "resource"
+ "scope": "resource",
+ "markdownDeprecationMessage": "This is a setting for an old `robotframework-robocop` version `<6.0` and will be removed in the future and will be removed in the future and is ignored if you have `robotframework-robocop>=6.0` installed."
},
"robotcode.robocop.exclude": {
"type": "array",
@@ -1140,7 +1141,26 @@
"items": {
"type": "string"
},
- "description": "Exlude specified 'robocop' rules. You can define rule by its name or id. Glob patterns are supported",
+ "description": "Exclude specified 'robocop' rules. You can define rule by its name or id. Glob patterns are supported",
+ "scope": "resource",
+ "markdownDeprecationMessage": "This is a setting for an old `robotframework-robocop` version `<6.0` and will be removed in the future and is ignored if you have `robotframework-robocop>=6.0` installed."
+ },
+ "robotcode.robocop.ignoreGitDir": {
+ "type": "boolean",
+ "default": false,
+ "markdownDescription": "Do not stop searching for config file when .git directory is found. Corresponds to the `--ignore-git-dir` of _robocop_ See [robocop](https://robocop.readthedocs.io/)",
+ "scope": "resource"
+ },
+ "robotcode.robocop.configFile": {
+ "type": "string",
+ "default": null,
+ "markdownDescription": "Read configuration from FILE path. Corresponds to the `--config` option of _robocop_ See [robocop](https://robocop.readthedocs.io/)",
+ "scope": "resource"
+ },
+ "robotcode.robocop.ignoreFileConfig": {
+ "type": "boolean",
+ "default": false,
+ "markdownDescription": "Do not load configuration files. Corresponds to the `--ignore-file-config` option of _robocop_ See [robocop](https://robocop.readthedocs.io/)",
"scope": "resource"
},
"robotcode.robocop.configurations": {
@@ -1149,8 +1169,9 @@
"items": {
"type": "string"
},
- "description": "Configure 'robocop' checker with parameter value.",
- "scope": "resource"
+ "description": "Configure checker or report with parameter value. Corresponds to the `--configure` option of _robocop_ See [robocop](https://robocop.readthedocs.io/)",
+ "scope": "resource",
+ "markdownDeprecationMessage": "This is a setting for an old `robotframework-robocop` version `<6.0` and will be removed in the future and will be removed in the future and is ignored if you have `robotframework-robocop>=6.0` installed."
}
}
},
@@ -1162,19 +1183,22 @@
"type": "boolean",
"default": true,
"markdownDescription": "Enables 'robotidy' code formatting, if installed. See [robotidy](https://github.com/MarketSquare/robotframework-tidy)",
- "scope": "resource"
+ "scope": "resource",
+ "markdownDeprecationMessage": "Using of `robotframework-tidy` is deprecated, because it is no longer maintained. Please use `robotframework-robocop>=6.0` instead."
},
"robotcode.robotidy.ignoreGitDir": {
"type": "boolean",
"default": true,
"markdownDescription": "Ignore .git directories when searching for the default configuration file. Corresponds to the `--ignore-git-dir` of _robotidy_ See [robotidy](https://github.com/MarketSquare/robotframework-tidy)",
- "scope": "resource"
+ "scope": "resource",
+ "markdownDeprecationMessage": "Using of `robotframework-tidy` is deprecated, because it is no longer maintained. Please use `robotframework-robocop>=6.0` instead."
},
"robotcode.robotidy.config": {
"type": "string",
"default": "",
"markdownDescription": "Read configuration from FILE path. Corresponds to the `--config` of _robotidy_ See [robotidy](https://github.com/MarketSquare/robotframework-tidy)",
- "scope": "resource"
+ "scope": "resource",
+ "markdownDeprecationMessage": "Using of `robotframework-tidy` is deprecated, because it is no longer maintained. Please use `robotframework-robocop>=6.0` instead."
}
}
},
@@ -1250,7 +1274,7 @@
},
"robotcode.documentationServer.startOnDemand": {
"type": "boolean",
- "default": true,
+ "default": false,
"description": "Starts the internal HTTP server only if needed."
}
}
@@ -1744,11 +1768,13 @@
"string"
],
"enum": [
+ "none",
"default",
"test",
"test-profile"
],
"markdownEnumDescriptions": [
+ "No purpose defined.",
"Configuration is uses as default for all other configurations.",
"Default configuration for running or debugging tests.",
"Defines a test profile that you can select in the test explorer or via the play button during a test. This configuration is used instead of the configuration with the purpose `test`."
@@ -1757,11 +1783,13 @@
"description": "Defines what purpose this configuration has.",
"items": {
"enum": [
+ "none",
"default",
"test",
"test-profile"
],
"markdownEnumDescriptions": [
+ "No purpose defined.",
"Configuration is uses as default for all other configurations.",
"Default configuration for running or debugging tests.",
"Defines a test profile that you can select in the test explorer or via the play button during a test. This configuration is used instead of the configuration with the purpose `test`."
@@ -1916,6 +1944,128 @@
}
]
}
+ ],
+ "chatParticipants": [],
+ "languageModelTools": [
+ {
+ "name": "robot-get_library_documentation",
+ "displayName": "Get Library Documentation",
+ "toolReferenceName": "robotGetLibraryDocumentation",
+ "modelDescription": "Retrieves comprehensive documentation for Robot Framework libraries. Returns the library's description, initialization parameters with their types and default values, complete list of available keywords with their signatures (including arguments, types, and return values). Use this tool when you need to understand what keywords are available in a library, how to initialize it, or get detailed parameter information. Do not use for getting documentation of specific keywords (use robot-get_keyword_documentation instead) or for analyzing test files. Limitations: Only works with libraries that are properly installed and importable in the current Python environment, may not work with dynamic libraries that change behavior based on runtime conditions, and requires the specified library to be accessible from the workspace's Robot Framework configuration.",
+ "userDescription": "Gets Documentation and keyword list for a Robot Framework library.",
+ "canBeReferencedInPrompt": true,
+ "tags": [
+ "robot",
+ "robotframework",
+ "robotframework-library",
+ "robotframework-keyword",
+ "robotcode"
+ ],
+ "icon": "$(robotcode-robot)",
+ "inputSchema": {
+ "type": "object",
+ "required": [
+ "libraryName"
+ ],
+ "properties": {
+ "libraryName": {
+ "type": "string",
+ "description": "The name of the library."
+ },
+ "resourcePath": {
+ "type": "string",
+ "description": "The path to the robot framework file or workspace to get the library information for."
+ }
+ }
+ }
+ },
+ {
+ "name": "robot-get_keyword_documentation",
+ "displayName": "Get Keyword Documentation",
+ "toolReferenceName": "robotGetKeywordDoc",
+ "modelDescription": "Retrieves detailed documentation for a specific Robot Framework keyword. Returns the keyword's complete signature with parameter names, types, default values, and detailed descriptions, along with return value information and usage examples. Use this tool when you need specific information about how to use a particular keyword, its parameters, or expected behavior. Do not use for getting a list of all keywords in a library (use robot-get_library_documentation instead) or for analyzing test file content. Limitations: Requires both the keyword name and library name to be specified accurately, only works with keywords from libraries that are properly installed and importable in the current Python environment, may not work with dynamic keywords that change behavior based on runtime conditions, and requires the specified library to be accessible from the workspace's Robot Framework configuration.",
+ "userDescription": "Gets detailed documentation for a specific Robot Framework keyword.",
+ "canBeReferencedInPrompt": true,
+ "tags": [
+ "robot",
+ "robotframework",
+ "robotframework-keyword",
+ "robotcode"
+ ],
+ "icon": "$(robotcode-robot)",
+ "inputSchema": {
+ "type": "object",
+ "required": [
+ "keywordName",
+ "libraryName"
+ ],
+ "properties": {
+ "keywordName": {
+ "type": "string",
+ "description": "The name of the keyword."
+ },
+ "libraryName": {
+ "type": "string",
+ "description": "The name of the library containing the keyword."
+ },
+ "resourcePath": {
+ "type": "string",
+ "description": "The path to the robot framework file or workspace."
+ }
+ }
+ }
+ },
+ {
+ "name": "robot-get_file_imports",
+ "displayName": "List imported libraries, resources and variable files for a Robot Framework Document",
+ "toolReferenceName": "robotGetDocumentImports",
+ "modelDescription": "Retrieves a list of all imported libraries, resources and variable files for a specific Robot Framework document. Returns the names and paths of all libraries imported in the specified Robot Framework file. Use this tool when you need to analyze the dependencies of a Robot Framework document or understand its library and resource usage. Limitations: Only works with Robot Framework files, may not detect dynamic imports or libraries loaded at runtime, and requires the specified file to be accessible from the workspace's Robot Framework configuration.",
+ "userDescription": "Gets a list of all imported libraries, resources and variable files for a specific Robot Framework document.",
+ "canBeReferencedInPrompt": true,
+ "tags": [
+ "robot",
+ "robotframework",
+ "robotframework-library",
+ "robotframework-resource",
+ "robotcode"
+ ],
+ "icon": "$(robotcode-robot)",
+ "inputSchema": {
+ "type": "object",
+ "required": [
+ "resourcePath"
+ ],
+ "properties": {
+ "resourcePath": {
+ "type": "string",
+ "description": "The path to a robot framework file."
+ }
+ }
+ }
+ },
+ {
+ "name": "robot-get_environment_details",
+ "displayName": "Get Robot Framework Environment Informations",
+ "toolReferenceName": "robotGetEnvironmentInfo",
+ "modelDescription": "Retrieves detailed environment information for Robot Framework workspaces or files. Returns comprehensive details about the Python interpreter (version, executable path), installed Robot Framework version, RobotCode extension version, and optional tool versions (robocop, robotidy) if available. Use this tool when you need to diagnose environment issues, verify installations, check version compatibility, or troubleshoot Robot Framework setup problems. Limitations: Only provides information about the currently configured Python environment for the workspace, may not detect tools installed in different Python environments, requires proper workspace configuration to access environment details, and information accuracy depends on the current RobotCode language server connection.",
+ "userDescription": "Gets informations about the Robot Framework Environment .",
+ "canBeReferencedInPrompt": true,
+ "tags": [
+ "robot",
+ "robotframework",
+ "robotcode"
+ ],
+ "icon": "$(robotcode-robot)",
+ "inputSchema": {
+ "type": "object",
+ "properties": {
+ "resourcePath": {
+ "type": "string",
+ "description": "The path to the robot framework file or workspace to get the details for."
+ }
+ }
+ }
+ }
]
},
"scripts": {
@@ -1936,31 +2086,32 @@
],
"dependencies": {
"ansi-colors": "^4.1.3",
- "fs-extra": "^11.3.0",
- "vscode-languageclient": "^9.0.1"
+ "fs-extra": "^11.3.1",
+ "vscode-languageclient": "^9.0.1",
+ "@vscode/prompt-tsx": "^0.4.0-alpha.5"
},
"devDependencies": {
- "@eslint/compat": "^1.2.9",
+ "@eslint/compat": "^1.3.2",
"@eslint/eslintrc": "^3.3.1",
- "@eslint/js": "^9.27.0",
+ "@eslint/js": "^9.33.0",
"@jgoz/esbuild-plugin-typecheck": "^4.0.3",
"@types/fs-extra": "^11.0.4",
- "@types/node": "^22.15.19",
- "@types/vscode": "^1.96.0",
- "@types/vscode-notebook-renderer": "^1.72.3",
- "@vscode/python-extension": "^1.0.5",
- "@vscode/vsce": "^3.4.1",
- "esbuild": "^0.25.4",
- "eslint": "^9.27.0",
- "eslint-config-prettier": "^10.1.5",
- "eslint-plugin-prettier": "^5.4.0",
- "globals": "^16.1.0",
- "ovsx": "^0.10.2",
- "preact": "^10.26.6",
- "prettier": "^3.5.3",
+ "@types/node": "^20.19.0",
+ "@types/vscode": "^1.99.0",
+ "@types/vscode-notebook-renderer": "^1.72.4",
+ "@vscode/python-extension": "^1.0.6",
+ "@vscode/vsce": "^3.6.0",
+ "esbuild": "^0.25.9",
+ "eslint": "^9.33.0",
+ "eslint-config-prettier": "^10.1.8",
+ "eslint-plugin-prettier": "^5.5.4",
+ "globals": "^16.3.0",
+ "ovsx": "^0.10.5",
+ "preact": "^10.27.0",
+ "prettier": "^3.6.2",
"ts-loader": "^9.5.2",
- "typescript": "^5.8.3",
- "typescript-eslint": "^8.32.1"
+ "typescript": "^5.9.2",
+ "typescript-eslint": "^8.39.1"
},
"workspaces": [
"docs"
diff --git a/packages/analyze/pyproject.toml b/packages/analyze/pyproject.toml
index d03358f70..139fe7080 100644
--- a/packages/analyze/pyproject.toml
+++ b/packages/analyze/pyproject.toml
@@ -27,9 +27,9 @@ classifiers = [
]
dependencies = [
"robotframework>=4.1.0",
- "robotcode-plugin==1.3.0-dev.2",
- "robotcode-robot==1.3.0-dev.2",
- "robotcode==1.3.0-dev.2",
+ "robotcode-plugin==1.7.0",
+ "robotcode-robot==1.7.0",
+ "robotcode==1.7.0",
]
dynamic = ["version"]
diff --git a/packages/analyze/src/robotcode/analyze/__version__.py b/packages/analyze/src/robotcode/analyze/__version__.py
index 1cb3f8c2e..14d9d2f58 100644
--- a/packages/analyze/src/robotcode/analyze/__version__.py
+++ b/packages/analyze/src/robotcode/analyze/__version__.py
@@ -1 +1 @@
-__version__ = "1.3.0-dev.2"
+__version__ = "1.7.0"
diff --git a/packages/core/src/robotcode/core/__version__.py b/packages/core/src/robotcode/core/__version__.py
index 1cb3f8c2e..14d9d2f58 100644
--- a/packages/core/src/robotcode/core/__version__.py
+++ b/packages/core/src/robotcode/core/__version__.py
@@ -1 +1 @@
-__version__ = "1.3.0-dev.2"
+__version__ = "1.7.0"
diff --git a/packages/core/src/robotcode/core/event.py b/packages/core/src/robotcode/core/event.py
index f30297f7a..2a64dfad4 100644
--- a/packages/core/src/robotcode/core/event.py
+++ b/packages/core/src/robotcode/core/event.py
@@ -72,10 +72,10 @@ def __iter__(self) -> Iterator[Callable[_TParams, _TResult]]:
def _notify(
self,
- *__args: _TParams.args,
+ *__args: Any,
return_exceptions: Optional[bool] = True,
callback_filter: Optional[Callable[[Callable[..., Any]], bool]] = None,
- **__kwargs: _TParams.kwargs,
+ **__kwargs: Any,
) -> Iterator[Union[_TResult, BaseException]]:
for method in filter(
lambda x: callback_filter(x) if callback_filter is not None else True,
@@ -95,9 +95,9 @@ def _notify(
class EventIterator(EventResultIteratorBase[_TParams, _TResult]):
def __call__(
self,
- *__args: _TParams.args,
+ *__args: Any,
callback_filter: Optional[Callable[[Callable[..., Any]], bool]] = None,
- **__kwargs: _TParams.kwargs,
+ **__kwargs: Any,
) -> Iterator[Union[_TResult, BaseException]]:
return self._notify(*__args, callback_filter=callback_filter, **__kwargs)
@@ -105,9 +105,9 @@ def __call__(
class Event(EventResultIteratorBase[_TParams, _TResult]):
def __call__(
self,
- *__args: _TParams.args,
+ *__args: Any,
callback_filter: Optional[Callable[[Callable[..., Any]], bool]] = None,
- **__kwargs: _TParams.kwargs,
+ **__kwargs: Any,
) -> List[Union[_TResult, BaseException]]:
return list(self._notify(*__args, callback_filter=callback_filter, **__kwargs))
diff --git a/packages/core/src/robotcode/core/text_document.py b/packages/core/src/robotcode/core/text_document.py
index 367b383b2..74c643ab7 100644
--- a/packages/core/src/robotcode/core/text_document.py
+++ b/packages/core/src/robotcode/core/text_document.py
@@ -216,6 +216,70 @@ def get_lines(self) -> List[str]:
return self._lines
+ def get_text(self, r: Range) -> str:
+ lines = self.get_lines()
+
+ start_pos = r.start
+ end_pos = r.end
+
+ # Validate range
+ if start_pos.line < 0 or start_pos.character < 0:
+ raise InvalidRangeError(f"Invalid start position: {start_pos}")
+ if end_pos.line < 0 or end_pos.character < 0:
+ raise InvalidRangeError(f"Invalid end position: {end_pos}")
+ if start_pos > end_pos:
+ raise InvalidRangeError(f"Start position is greater than end position: {r}")
+
+ # Handle case where range is beyond document
+ if start_pos.line >= len(lines):
+ return ""
+
+ # Single line case
+ if start_pos.line == end_pos.line:
+ if start_pos.line < len(lines):
+ line = lines[start_pos.line]
+ # Handle newline character at end of line
+ if line.endswith(("\n", "\r\n")):
+ line_content = line.rstrip("\r\n")
+ if end_pos.character > len(line_content):
+ # Include the newline character(s)
+ return line[start_pos.character :]
+
+ return line_content[start_pos.character : end_pos.character]
+
+ return line[start_pos.character : end_pos.character]
+ return ""
+
+ # Multi-line case
+ result_lines = []
+
+ # First line
+ if start_pos.line < len(lines):
+ first_line = lines[start_pos.line]
+ if first_line.endswith(("\n", "\r\n")):
+ result_lines.append(first_line[start_pos.character :])
+ else:
+ result_lines.append(first_line[start_pos.character :] + "\n")
+
+ # Middle lines
+ for line_idx in range(start_pos.line + 1, min(end_pos.line, len(lines))):
+ result_lines.append(lines[line_idx])
+
+ # Last line
+ if end_pos.line < len(lines):
+ last_line = lines[end_pos.line]
+ if last_line.endswith(("\n", "\r\n")):
+ line_content = last_line.rstrip("\r\n")
+ if end_pos.character > len(line_content):
+ # Include the newline character(s)
+ result_lines.append(last_line)
+ else:
+ result_lines.append(line_content[: end_pos.character])
+ else:
+ result_lines.append(last_line[: end_pos.character])
+
+ return "".join(result_lines)
+
@event
def cache_invalidate(sender) -> None: ...
@@ -226,7 +290,7 @@ def cache_invalidated(sender) -> None: ...
def _cache_invalidating(self) -> Iterator[None]:
send_events = len(self._cache) > 0
if send_events:
- self.cache_invalidate()
+ self.cache_invalidate(self)
try:
with self._lock:
yield
diff --git a/packages/core/src/robotcode/core/utils/dataclasses.py b/packages/core/src/robotcode/core/utils/dataclasses.py
index 4a6bd5cdd..9e462c681 100644
--- a/packages/core/src/robotcode/core/utils/dataclasses.py
+++ b/packages/core/src/robotcode/core/utils/dataclasses.py
@@ -647,7 +647,7 @@ def validate_types(expected_types: Union[type, Tuple[type, ...], None], value: A
continue
if (
- t is Any # type: ignore
+ t is Any
or t is Ellipsis # type: ignore
or isinstance(value, origin or t)
or (
@@ -683,7 +683,7 @@ def validate_types(expected_types: Union[type, Tuple[type, ...], None], value: A
return []
- if t is Any: # type: ignore
+ if t is Any:
return []
if isinstance(value, origin or t):
diff --git a/packages/core/src/robotcode/core/utils/inspect.py b/packages/core/src/robotcode/core/utils/inspect.py
index 3943fa900..42e81c7ea 100644
--- a/packages/core/src/robotcode/core/utils/inspect.py
+++ b/packages/core/src/robotcode/core/utils/inspect.py
@@ -15,7 +15,7 @@ def iter_methods(
m = v
else:
m = getattr(obj, name)
- if not inspect.ismethod(m): # type: ignore
+ if not inspect.ismethod(m):
continue
if predicate is None or predicate(m):
diff --git a/packages/core/src/robotcode/core/utils/logging.py b/packages/core/src/robotcode/core/utils/logging.py
index d1808275d..c6d923350 100644
--- a/packages/core/src/robotcode/core/utils/logging.py
+++ b/packages/core/src/robotcode/core/utils/logging.py
@@ -136,7 +136,7 @@ def __init_logger(self) -> LoggingDescriptor:
if self.__func is not None:
if isinstance(self.__func, staticmethod):
- returned_logger = self.__func.__func__() # type: ignore
+ returned_logger = self.__func.__func__()
else:
returned_logger = self.__func()
@@ -198,15 +198,14 @@ def log(
extra: Optional[Mapping[str, object]] = None,
**kwargs: Any,
) -> None:
- if (self.is_enabled_for(level) and condition is not None and condition()) or condition is None:
+ if self.is_enabled_for(level) and (condition is None or condition()):
depth = 0
if context_name is not None:
depth = self._measure_contexts.get(context_name, 0)
- if depth > 0:
- extra = {**extra} if extra is not None else {}
- if "indent" not in extra:
- extra["indent"] = " " * depth
+ extra = {**extra} if extra is not None else {}
+ if "indent" not in extra:
+ extra["indent"] = (" " * depth) if depth > 0 else ""
self.logger.log(
level,
@@ -238,7 +237,6 @@ def debug(
**kwargs,
)
- _log_measure_time = log
_measure_contexts: Dict[str, int] = {}
@contextmanager
@@ -259,11 +257,12 @@ def measure_time(
self._measure_contexts[context_name] = depth
- self._log_measure_time(
+ self.log(
level,
lambda: f"Start {msg() if callable(msg) else msg}",
*args,
context_name=context_name,
+ stacklevel=3,
extra=extra,
**kwargs,
)
@@ -280,11 +279,12 @@ def measure_time(
if context_name is not None:
self._measure_contexts[context_name] = depth
- self._log_measure_time(
+ self.log(
level,
lambda: f"End {msg() if callable(msg) else msg} took {duration:.4f} seconds",
*args,
context_name=context_name,
+ stacklevel=3,
extra=extra,
**kwargs,
)
diff --git a/packages/core/src/robotcode/core/utils/net.py b/packages/core/src/robotcode/core/utils/net.py
index d227cd743..4e9108be2 100644
--- a/packages/core/src/robotcode/core/utils/net.py
+++ b/packages/core/src/robotcode/core/utils/net.py
@@ -18,7 +18,6 @@ def find_free_port(start: Optional[int] = None, end: Optional[int] = None) -> in
s.bind(("127.0.0.1", port))
- s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
return cast(int, s.getsockname()[1])
except (SystemExit, KeyboardInterrupt):
raise
diff --git a/packages/core/src/robotcode/core/utils/safe_eval.py b/packages/core/src/robotcode/core/utils/safe_eval.py
index 34f3e55dc..e1d7703bb 100644
--- a/packages/core/src/robotcode/core/utils/safe_eval.py
+++ b/packages/core/src/robotcode/core/utils/safe_eval.py
@@ -47,7 +47,7 @@ class Transformer(ast.NodeTransformer):
def __init__(self, allowed_names: Optional[Sequence[str]]) -> None:
self.allowed_names = (*self.STD_ALLOWED_NAMES, *(allowed_names or []))
- def visit_Name(self, node: ast.Name) -> ast.AST: # noqa: N802
+ def visit_Name(self, node: ast.Name) -> ast.AST:
if node.id not in self.allowed_names:
raise NameError(f"Name access to '{node.id}' is not allowed")
diff --git a/packages/core/src/robotcode/core/utils/version.py b/packages/core/src/robotcode/core/utils/version.py
index b09af8555..ab79a1649 100644
--- a/packages/core/src/robotcode/core/utils/version.py
+++ b/packages/core/src/robotcode/core/utils/version.py
@@ -1,3 +1,4 @@
+import functools
import re
from typing import NamedTuple, Optional
@@ -16,6 +17,7 @@ class Version(NamedTuple):
dev: Optional[int] = None
+@functools.lru_cache(maxsize=128)
def create_version_from_str(version_str: str) -> Version:
def s_to_i(s: Optional[str]) -> Optional[int]:
return int(s) if s is not None else None
diff --git a/packages/core/src/robotcode/core/workspace.py b/packages/core/src/robotcode/core/workspace.py
index 218a7a1b5..b71ae9421 100644
--- a/packages/core/src/robotcode/core/workspace.py
+++ b/packages/core/src/robotcode/core/workspace.py
@@ -76,7 +76,7 @@ def get_configuration(
section: Type[TConfig],
scope_uri: Union[str, Uri, None] = None,
) -> TConfig:
- result = self.settings
+ result: Any = self.settings
for sub_key in str(section).split("."):
if sub_key in result:
result = result.get(sub_key, None)
diff --git a/packages/debugger/pyproject.toml b/packages/debugger/pyproject.toml
index 0af6500f3..9bf21d451 100644
--- a/packages/debugger/pyproject.toml
+++ b/packages/debugger/pyproject.toml
@@ -28,8 +28,8 @@ classifiers = [
dynamic = ["version"]
dependencies = [
"robotframework>=4.1.0",
- "robotcode-jsonrpc2==1.3.0-dev.2",
- "robotcode-runner==1.3.0-dev.2",
+ "robotcode-jsonrpc2==1.7.0",
+ "robotcode-runner==1.7.0",
]
[project.optional-dependencies]
diff --git a/packages/debugger/src/robotcode/debugger/__version__.py b/packages/debugger/src/robotcode/debugger/__version__.py
index 1cb3f8c2e..14d9d2f58 100644
--- a/packages/debugger/src/robotcode/debugger/__version__.py
+++ b/packages/debugger/src/robotcode/debugger/__version__.py
@@ -1 +1 @@
-__version__ = "1.3.0-dev.2"
+__version__ = "1.7.0"
diff --git a/packages/debugger/src/robotcode/debugger/dap_types.py b/packages/debugger/src/robotcode/debugger/dap_types.py
index b75103a4b..01653ec7c 100644
--- a/packages/debugger/src/robotcode/debugger/dap_types.py
+++ b/packages/debugger/src/robotcode/debugger/dap_types.py
@@ -622,6 +622,26 @@ class TerminateResponse(Response):
pass
+class RestartArguments(Model):
+ arguments: Union[LaunchRequestArguments | AttachRequestArguments]
+
+
+@dataclass
+class _RestartRequest:
+ arguments: Optional[RestartArguments] = None
+
+
+@dataclass
+class RestartRequest(Request, _RestartRequest):
+ arguments: Optional[RestartArguments] = None
+ command: str = "restart"
+
+
+@dataclass
+class RestartResponse(Response):
+ pass
+
+
@dataclass
class StackFrameFormat(Model):
parameters: Optional[bool] = None
@@ -781,7 +801,6 @@ class PauseResponse(Response):
pass
-@dataclass
class SteppingGranularity(Enum):
STATEMENT = "statement"
LINE = "line"
diff --git a/packages/debugger/src/robotcode/debugger/debugger.py b/packages/debugger/src/robotcode/debugger/debugger.py
index d09f684c6..e43c92b98 100644
--- a/packages/debugger/src/robotcode/debugger/debugger.py
+++ b/packages/debugger/src/robotcode/debugger/debugger.py
@@ -6,7 +6,7 @@
import threading
import time
import weakref
-from collections import deque
+from collections import OrderedDict, deque
from enum import Enum
from functools import cached_property
from pathlib import Path, PurePath
@@ -23,6 +23,7 @@
MutableMapping,
NamedTuple,
Optional,
+ Protocol,
Sequence,
Set,
Tuple,
@@ -71,6 +72,10 @@
)
from .id_manager import IdManager
+if get_robot_version() >= (5, 0):
+ from robot.running.model import Try
+ from robot.utils import Matcher as RobotMatcher
+
if get_robot_version() >= (7, 0):
from robot.running import UserKeyword as UserKeywordHandler
else:
@@ -98,6 +103,48 @@ def __repr__(self) -> str:
UNDEFINED = Undefined()
+# Debugger configuration constants
+STATE_CHANGE_DELAY = 0.01 # Delay to avoid busy loops during state changes
+EVALUATE_TIMEOUT = 120 # Timeout for keyword evaluation in seconds
+KEYWORD_EVALUATION_TIMEOUT = 60 # Timeout for keyword evaluation wait in seconds
+MAX_VARIABLE_ITEMS_DISPLAY = 500 # Maximum items to display in variable view
+MAX_REGEX_CACHE_SIZE = 25 # Maximum number of compiled regex patterns to cache
+
+
+# Type definitions for better type safety
+EvaluationResult = Union[Any, Exception]
+KeywordCallable = Callable[[], EvaluationResult]
+AttributeDict = Dict[str, Any]
+
+
+class ExceptionInformation(TypedDict, total=False):
+ text: Optional[str]
+ description: str
+ status: str
+
+
+class LogMessage(TypedDict, total=False):
+ level: str
+ message: str
+ timestamp: str
+ html: Optional[str]
+
+
+class RobotContextProtocol(Protocol):
+ """Protocol for Robot Framework execution context."""
+
+ variables: Any
+ namespace: Any
+
+
+class KeywordHandlerProtocol(Protocol):
+ """Protocol for Robot Framework keyword handlers."""
+
+ name: str
+ args: Any # Robot version dependent type
+ arguments: Any # Robot version dependent type
+
+
class DebugRepr(reprlib.Repr):
def __init__(self) -> None:
super().__init__()
@@ -251,12 +298,14 @@ class PathMapping(NamedTuple):
remote_root: Optional[str]
-if get_robot_version() < (7, 0):
+class DebugLoggerBase:
+ def __init__(self) -> None:
+ self.steps: List[Any] = []
- class DebugLogger:
- def __init__(self) -> None:
- self.steps: List[Any] = []
+if get_robot_version() < (7, 0):
+
+ class DebugLogger(DebugLoggerBase):
def start_keyword(self, kw: Any) -> None:
self.steps.append(kw)
@@ -267,10 +316,7 @@ def end_keyword(self, kw: Any) -> None:
from robot import result, running
from robot.output.loggerapi import LoggerApi
- class DebugLogger(LoggerApi): # type: ignore[no-redef]
- def __init__(self) -> None:
- self.steps: List[Any] = []
-
+ class DebugLogger(DebugLoggerBase, LoggerApi): # type: ignore[no-redef]
def start_try(self, data: "running.Try", result: "result.Try") -> None:
self.steps.append(data)
@@ -287,10 +333,29 @@ def end_keyword(self, data: running.Keyword, result: result.Keyword) -> None:
breakpoint_id_manager = IdManager()
-class ExceptionInformation(TypedDict):
- text: Optional[str]
- description: str
- status: str
+class _DebuggerInstanceDescriptor:
+ """Descriptor that forwards all attribute access to the singleton instance."""
+
+ def __init__(self) -> None:
+ self._owner_class: Optional[type] = None
+
+ def __set_name__(self, owner: type, name: str) -> None:
+ """Called when the descriptor is assigned to a class."""
+ self._owner_class = owner
+
+ def __get__(self, obj: Any, owner: Optional[type]) -> "Debugger":
+ if self._owner_class is None:
+ self._owner_class = owner
+ if self._owner_class is not None and hasattr(self._owner_class, "_get_instance"):
+ return cast("Debugger", self._owner_class._get_instance())
+ # This should never happen in practice, but needed for type checking
+ raise RuntimeError("Debugger class not properly initialized")
+
+ def __set__(self, obj: Any, value: Any) -> None:
+ raise AttributeError("Cannot replace the debugger instance")
+
+ def __delete__(self, obj: Any) -> None:
+ raise AttributeError("Cannot delete the debugger instance")
class Debugger:
@@ -300,12 +365,15 @@ class Debugger:
_logger = LoggingDescriptor()
+ # Descriptor that allows Debugger.instance.field = value syntax
+ instance = _DebuggerInstanceDescriptor()
+
@classmethod
- def instance(cls) -> "Debugger":
+ def _get_instance(cls) -> "Debugger":
+ """Internal method to get the singleton instance."""
if cls.__instance is not None:
return cls.__instance
with cls.__lock:
- # re-check, perhaps it was created in the mean time...
if cls.__instance is None:
cls.__inside_instance = True
try:
@@ -314,6 +382,11 @@ def instance(cls) -> "Debugger":
cls.__inside_instance = False
return cls.__instance
+ @classmethod
+ def get_instance(cls) -> "Debugger":
+ """Backward compatibility method for old instance() calls."""
+ return cls._get_instance()
+
def __new__(cls, *args: Any, **kwargs: Any) -> Any:
if cls.__instance is None:
with cls.__lock:
@@ -353,8 +426,8 @@ def __init__(self) -> None:
self.attached = False
self.path_mappings: List[PathMapping] = []
- self._keyword_to_evaluate: Optional[Callable[..., Any]] = None
- self._evaluated_keyword_result: Any = None
+ self._keyword_to_evaluate: Optional[KeywordCallable] = None
+ self._evaluated_keyword_result: Optional[EvaluationResult] = None
self._evaluate_keyword_event = threading.Event()
self._evaluate_keyword_event.set()
self._after_evaluate_keyword_event = threading.Event()
@@ -363,7 +436,6 @@ def __init__(self) -> None:
self.debug_logger: Optional[DebugLogger] = None
self.run_started = False
- self._evaluate_cache: List[Any] = []
self._variables_cache: Dict[int, Any] = {}
self._variables_object_cache: List[Any] = []
self._current_exception: Optional[ExceptionInformation] = None
@@ -380,11 +452,9 @@ def state(self, value: State) -> None:
State.Paused,
State.CallKeyword,
]:
- self._variables_cache.clear()
- self._variables_object_cache.clear()
- self._evaluate_cache.clear()
+ self._clear_all_caches()
- time.sleep(0.01)
+ time.sleep(STATE_CHANGE_DELAY)
self._state = value
@@ -423,6 +493,12 @@ def robot_output_file(self, value: Optional[str]) -> None:
def terminate(self) -> None:
self.terminated = True
+ def _clear_all_caches(self) -> None:
+ """Optimized method to clear all caches in one operation."""
+ self._variables_cache.clear()
+ self._variables_object_cache.clear()
+ self.__compiled_regex_cache.clear()
+
def start(self) -> None:
with self.condition:
self.state = State.Running
@@ -449,6 +525,10 @@ def check_thread_id(self, thread_id: int) -> None:
if not self.main_thread_is_alive and thread_id != self.main_thread_id:
raise InvalidThreadIdError(thread_id, self.main_thread_id)
+ def continue_all_if_paused(self) -> None:
+ if self.state == State.Paused:
+ self.continue_all()
+
def continue_all(self) -> None:
if self.main_thread_is_alive:
self.continue_thread(self.main_thread_id)
@@ -775,7 +855,7 @@ def wait_for_running(self) -> None:
self._evaluated_keyword_result = e
finally:
self._evaluate_keyword_event.set()
- self._after_evaluate_keyword_event.wait(120)
+ self._after_evaluate_keyword_event.wait(EVALUATE_TIMEOUT)
continue
@@ -797,7 +877,7 @@ def wait_for_running(self) -> None:
break
self._current_exception = None
- def start_output_group(self, name: str, attributes: Dict[str, Any], type: Optional[str] = None) -> None:
+ def start_output_group(self, name: str, attributes: AttributeDict, type: Optional[str] = None) -> None:
if self.group_output:
source = attributes.get("source")
line_no = attributes.get("lineno")
@@ -816,7 +896,7 @@ def start_output_group(self, name: str, attributes: Dict[str, Any], type: Option
),
)
- def end_output_group(self, name: str, attributes: Dict[str, Any], type: Optional[str] = None) -> None:
+ def end_output_group(self, name: str, attributes: AttributeDict, type: Optional[str] = None) -> None:
if self.group_output:
source = attributes.get("source")
line_no = attributes.get("lineno")
@@ -843,7 +923,7 @@ def add_stackframe_entry(
line: Optional[int],
column: Optional[int] = None,
*,
- handler: Any = None,
+ handler: Optional[KeywordHandlerProtocol] = None,
libname: Optional[str] = None,
kwname: Optional[str] = None,
longname: Optional[str] = None,
@@ -897,7 +977,7 @@ def remove_stackframe_entry(
line: Optional[int],
column: Optional[int] = None,
*,
- handler: Any = None,
+ handler: Optional[KeywordHandlerProtocol] = None,
) -> None:
self.full_stack_frames.popleft()
@@ -915,7 +995,7 @@ def remove_stackframe_entry(
if self.stack_frames:
self.stack_frames[0].stack_frames.popleft()
- def start_suite(self, name: str, attributes: Dict[str, Any]) -> None:
+ def start_suite(self, name: str, attributes: AttributeDict) -> None:
if self.state == State.CallKeyword:
return
@@ -963,7 +1043,7 @@ def start_suite(self, name: str, attributes: Dict[str, Any]) -> None:
self.wait_for_running()
- def end_suite(self, name: str, attributes: Dict[str, Any]) -> None:
+ def end_suite(self, name: str, attributes: AttributeDict) -> None:
if self.state == State.CallKeyword:
return
@@ -985,7 +1065,7 @@ def end_suite(self, name: str, attributes: Dict[str, Any]) -> None:
self.remove_stackframe_entry(name, type, source, line_no)
- def start_test(self, name: str, attributes: Dict[str, Any]) -> None:
+ def start_test(self, name: str, attributes: AttributeDict) -> None:
if self.state == State.CallKeyword:
return
@@ -1012,7 +1092,7 @@ def start_test(self, name: str, attributes: Dict[str, Any]) -> None:
self.wait_for_running()
- def end_test(self, name: str, attributes: Dict[str, Any]) -> None:
+ def end_test(self, name: str, attributes: AttributeDict) -> None:
if self.state == State.CallKeyword:
return
@@ -1046,7 +1126,7 @@ def get_current_keyword_handler(self, name: str) -> UserKeywordHandler:
def get_current_keyword_handler(self, name: str) -> UserKeywordHandler:
return EXECUTION_CONTEXTS.current.namespace.get_runner(name)._handler
- def start_keyword(self, name: str, attributes: Dict[str, Any]) -> None:
+ def start_keyword(self, name: str, attributes: AttributeDict) -> None:
if self.state == State.CallKeyword:
return
@@ -1061,7 +1141,7 @@ def start_keyword(self, name: str, attributes: Dict[str, Any]) -> None:
libname = attributes.get("libname")
kwname = attributes.get("kwname")
- handler: Any = None
+ handler: Optional[KeywordHandlerProtocol] = None
if type in ["KEYWORD", "SETUP", "TEARDOWN"]:
try:
handler = self.get_current_keyword_handler(name)
@@ -1110,20 +1190,42 @@ def is_not_caughted_by_keyword(self) -> bool:
return r is None
__matchers: Optional[Dict[str, Callable[[str, str], bool]]] = None
+ __compiled_regex_cache: "OrderedDict[str, re.Pattern[str]]" = OrderedDict()
+ __robot_matcher: Optional[Any] = None
def _get_matcher(self, pattern_type: str) -> Optional[Callable[[str, str], bool]]:
- from robot.utils import Matcher
-
if self.__matchers is None:
self.__matchers: Dict[str, Callable[[str, str], bool]] = {
- "GLOB": lambda m, p: bool(Matcher(p, spaceless=False, caseless=False).match(m)),
+ "GLOB": self._glob_matcher,
"LITERAL": lambda m, p: m == p,
- "REGEXP": lambda m, p: re.match(rf"{p}\Z", m) is not None,
+ "REGEXP": self._regexp_matcher,
"START": lambda m, p: m.startswith(p),
}
return self.__matchers.get(pattern_type.upper(), None)
+ def _glob_matcher(self, message: str, pattern: str) -> bool:
+ """Optimized glob matcher with cached Robot Matcher."""
+
+ return bool(RobotMatcher(pattern, spaceless=False, caseless=False).match(message))
+
+ def _regexp_matcher(self, message: str, pattern: str) -> bool:
+ """Optimized regex matcher with LRU caching (max 25 entries)."""
+ if pattern in self.__compiled_regex_cache:
+ self.__compiled_regex_cache.move_to_end(pattern)
+ compiled_pattern = self.__compiled_regex_cache[pattern]
+ else:
+ if len(self.__compiled_regex_cache) >= MAX_REGEX_CACHE_SIZE:
+ self.__compiled_regex_cache.popitem(last=False)
+
+ try:
+ compiled_pattern = re.compile(rf"{pattern}\Z")
+ self.__compiled_regex_cache[pattern] = compiled_pattern
+ except re.error:
+ return False
+
+ return compiled_pattern.match(message) is not None
+
def _should_run_except(self, branch: Any, error: str) -> bool:
if not branch.patterns:
return True
@@ -1157,14 +1259,21 @@ def _get_step_data(self, step: Any) -> Any:
def _get_step_data(self, step: Any) -> Any:
return step.data
- def is_not_caugthed_by_except(self, message: Optional[str]) -> bool:
- if not message:
- return True
+ if get_robot_version() < (5, 0):
- if self.debug_logger:
- if get_robot_version() >= (5, 0):
- from robot.running.model import Try
+ def is_not_caugthed_by_except(self, message: Optional[str]) -> bool:
+ if not message:
+ return True
+ return False
+ else:
+ def is_not_caugthed_by_except(self, message: Optional[str]) -> bool:
+ if not message:
+ return True
+
+ # TODO resolve variables in exception message
+
+ if self.debug_logger:
if self.debug_logger.steps:
for branch in [
self._get_step_data(f)
@@ -1174,9 +1283,9 @@ def is_not_caugthed_by_except(self, message: Optional[str]) -> bool:
for except_branch in branch.except_branches:
if self._should_run_except(except_branch, message):
return False
- return True
+ return True
- def end_keyword(self, name: str, attributes: Dict[str, Any]) -> None:
+ def end_keyword(self, name: str, attributes: AttributeDict) -> None:
if self.state == State.CallKeyword:
return
@@ -1207,7 +1316,7 @@ def end_keyword(self, name: str, attributes: Dict[str, Any]) -> None:
type = attributes.get("type", "KEYWORD")
kwname = attributes.get("kwname")
- handler: Any = None
+ handler: Optional[KeywordHandlerProtocol] = None
if type in ["KEYWORD", "SETUP", "TEARDOWN"]:
try:
handler = self.get_current_keyword_handler(name)
@@ -1332,7 +1441,7 @@ def yield_stack() -> Iterator[StackFrame]:
"DEBUG": "\u001b[38;5;8m",
}
- def log_message(self, message: Dict[str, Any]) -> None:
+ def log_message(self, message: LogMessage) -> None:
level = message["level"]
msg = message["message"]
@@ -1392,7 +1501,7 @@ def _build_output(self, level: str, msg: str, timestamp: str) -> str:
+ f"{msg}\n"
)
- def message(self, message: Dict[str, Any]) -> None:
+ def message(self, message: LogMessage) -> None:
level = message["level"]
current_frame = self.full_stack_frames[0] if self.full_stack_frames else None
@@ -1508,131 +1617,143 @@ def get_variables(
count: Optional[int] = None,
format: Optional[ValueFormat] = None,
) -> List[Variable]:
- result: MutableMapping[str, Any] = {}
-
if filter is None:
- entry = next(
- (
- v
- for v in self.stack_frames
- if variables_reference in [v.global_id, v.suite_id, v.test_id, v.local_id]
- ),
- None,
- )
- if entry is not None:
- context = entry.context()
- if context is not None:
- if entry.global_id == variables_reference:
- result.update(
- {k: self._create_variable(k, v) for k, v in context.variables._global.as_dict().items()}
- )
- elif entry.suite_id == variables_reference:
- globals = context.variables._global.as_dict()
- vars = entry.get_first_or_self().variables()
- vars_dict = vars.as_dict() if vars is not None else {}
- result.update(
- {
- k: self._create_variable(k, v)
- for k, v in context.variables._suite.as_dict().items()
- if (k not in globals or globals[k] != v) and (k in vars_dict)
- }
- )
- elif entry.test_id == variables_reference:
- globals = context.variables._suite.as_dict()
- vars = entry.get_first_or_self().variables()
- vars_dict = vars.as_dict() if vars is not None else {}
- result.update(
- {
- k: self._create_variable(k, v)
- for k, v in context.variables._test.as_dict().items()
- if (k not in globals or globals[k] != v) and (k in vars_dict)
- }
- )
- elif entry.local_id == variables_reference:
- vars = entry.get_first_or_self().variables()
-
- if self._current_exception is not None:
- result["${EXCEPTION}"] = self._create_variable(
- "${EXCEPTION}",
- self._current_exception,
- VariablePresentationHint(kind="virtual"),
- )
-
- if vars is not None:
- p = entry.parent() if entry.parent else None
-
- globals = (
- (p.get_first_or_self().variables() if p is not None else None)
- or context.variables._test
- or context.variables._suite
- or context.variables._global
- ).as_dict()
-
- suite_vars = (context.variables._suite or context.variables._global).as_dict()
-
- result.update(
- {
- k: self._create_variable(k, v)
- for k, v in vars.as_dict().items()
- if (k not in globals or globals[k] != v)
- and (entry.handler is None or k not in suite_vars or suite_vars[k] != v)
- }
- )
-
- if entry.handler is not None and self.get_handler_args(entry.handler):
- for argument in self.get_handler_args(entry.handler).argument_names:
- name = f"${{{argument}}}"
- try:
- value = vars[name]
- except (SystemExit, KeyboardInterrupt):
- raise
- except BaseException as e:
- value = str(e)
-
- result[name] = self._create_variable(name, value)
- else:
- value = self._variables_cache.get(variables_reference, None)
-
- if value is not None and isinstance(value, Mapping):
- result.update({"len()": self._create_variable("len()", len(value))})
-
- for i, (k, v) in enumerate(value.items(), start or 0):
- result[repr(i)] = self._create_variable(repr(k), v)
- if i >= 500:
- result["Unable to handle"] = self._create_variable(
- "Unable to handle",
- "Maximum number of items (500) reached.",
- )
- break
+ return self._get_variables_no_filter(variables_reference)
+ if filter == "indexed":
+ return self._get_variables_indexed(variables_reference, start, count)
+ if filter == "named":
+ return self._get_variables_named(variables_reference, start, count)
- elif value is not None and isinstance(value, Sequence) and not isinstance(value, str):
- result.update({"len()": self._create_variable("len()", len(value))})
+ raise ValueError(f"Unknown filter: {filter}")
- elif filter == "indexed":
+ def _get_variables_no_filter(self, variables_reference: int) -> List[Variable]:
+ result: MutableMapping[str, Any] = {}
+ entry = next(
+ (v for v in self.stack_frames if variables_reference in [v.global_id, v.suite_id, v.test_id, v.local_id]),
+ None,
+ )
+ if entry is not None:
+ context = entry.context()
+ if context is not None:
+ if entry.global_id == variables_reference:
+ result.update(
+ {k: self._create_variable(k, v) for k, v in context.variables._global.as_dict().items()}
+ )
+ elif entry.suite_id == variables_reference:
+ result.update(self._get_suite_variables(context, entry))
+ elif entry.test_id == variables_reference:
+ result.update(self._get_test_variables(context, entry))
+ elif entry.local_id == variables_reference:
+ result.update(self._get_local_variables(context, entry))
+ else:
value = self._variables_cache.get(variables_reference, None)
+ result.update(self._get_cached_variables(value))
+ return list(result.values())
- if value is not None:
- c = 0
+ def _get_suite_variables(self, context: Any, entry: Any) -> MutableMapping[str, Variable]:
+ result: MutableMapping[str, Variable] = {}
+ globals = context.variables._global.as_dict()
+ vars = entry.get_first_or_self().variables()
+ vars_dict = vars.as_dict() if vars is not None else {}
+ for k, v in context.variables._suite.as_dict().items():
+ if (k not in globals or globals[k] != v) and (k in vars_dict):
+ result[k] = self._create_variable(k, v)
+ return result
- padding = len(str(len(value)))
+ def _get_test_variables(self, context: Any, entry: Any) -> MutableMapping[str, Variable]:
+ result: MutableMapping[str, Variable] = {}
+ globals = context.variables._suite.as_dict()
+ vars = entry.get_first_or_self().variables()
+ vars_dict = vars.as_dict() if vars is not None else {}
+ for k, v in context.variables._test.as_dict().items():
+ if (k not in globals or globals[k] != v) and (k in vars_dict):
+ result[k] = self._create_variable(k, v)
+ return result
- for i, v in enumerate(value[start:], start or 0):
- result[str(i)] = self._create_variable(str(i).zfill(padding), v)
- c += 1
- if count is not None and c >= count:
- break
+ def _get_local_variables(self, context: Any, entry: Any) -> MutableMapping[str, Variable]:
+ result: MutableMapping[str, Variable] = {}
+ vars = entry.get_first_or_self().variables()
+ if self._current_exception is not None:
+ result["${EXCEPTION}"] = self._create_variable(
+ "${EXCEPTION}",
+ self._current_exception,
+ VariablePresentationHint(kind="virtual"),
+ )
+ if vars is not None:
+ p = entry.parent() if entry.parent else None
+ globals = (
+ (p.get_first_or_self().variables() if p is not None else None)
+ or context.variables._test
+ or context.variables._suite
+ or context.variables._global
+ ).as_dict()
+ suite_vars = (context.variables._suite or context.variables._global).as_dict()
+ for k, v in vars.as_dict().items():
+ if (k not in globals or globals[k] != v) and (
+ entry.handler is None or k not in suite_vars or suite_vars[k] != v
+ ):
+ result[k] = self._create_variable(k, v)
+ if entry.handler is not None and self.get_handler_args(entry.handler):
+ for argument in self.get_handler_args(entry.handler).argument_names:
+ name = f"${{{argument}}}"
+ try:
+ value = vars[name]
+ except (SystemExit, KeyboardInterrupt):
+ raise
+ except BaseException as e:
+ value = str(e)
+ result[name] = self._create_variable(name, value)
+ return result
- elif filter == "named":
- value = self._variables_cache.get(variables_reference, None)
+ def _get_cached_variables(self, value: Any) -> MutableMapping[str, Variable]:
+ result: MutableMapping[str, Variable] = {}
+ if value is not None and isinstance(value, Mapping):
+ result["len()"] = self._create_variable("len()", len(value))
+ for i, (k, v) in enumerate(value.items()):
+ result[repr(i)] = self._create_variable(repr(k), v)
+ if i >= MAX_VARIABLE_ITEMS_DISPLAY:
+ result["Unable to handle"] = self._create_variable(
+ "Unable to handle",
+ f"Maximum number of items ({MAX_VARIABLE_ITEMS_DISPLAY}) reached.",
+ )
+ break
+ elif value is not None and isinstance(value, Sequence) and not isinstance(value, str):
+ result["len()"] = self._create_variable("len()", len(value))
+ return result
- if value is not None and isinstance(value, Mapping):
- for i, (k, v) in enumerate(value.items(), start or 0):
- result[repr(i)] = self._create_variable(repr(k), v)
- if count is not None and i >= count:
- break
- elif value is not None and isinstance(value, Sequence) and not isinstance(value, str):
- result.update({"len()": self._create_variable("len()", len(value))})
+ def _get_variables_indexed(
+ self,
+ variables_reference: int,
+ start: Optional[int],
+ count: Optional[int],
+ ) -> List[Variable]:
+ result: MutableMapping[str, Any] = {}
+ value = self._variables_cache.get(variables_reference, None)
+ if value is not None:
+ c = 0
+ padding = len(str(len(value)))
+ for i, v in enumerate(value[start:], start or 0):
+ result[str(i)] = self._create_variable(str(i).zfill(padding), v)
+ c += 1
+ if count is not None and c >= count:
+ break
+ return list(result.values())
+ def _get_variables_named(
+ self,
+ variables_reference: int,
+ start: Optional[int],
+ count: Optional[int],
+ ) -> List[Variable]:
+ result: MutableMapping[str, Any] = {}
+ value = self._variables_cache.get(variables_reference, None)
+ if value is not None and isinstance(value, Mapping):
+ for i, (k, v) in enumerate(value.items(), start or 0):
+ result[repr(i)] = self._create_variable(repr(k), v)
+ if count is not None and i >= count:
+ break
+ elif value is not None and isinstance(value, Sequence) and not isinstance(value, str):
+ result["len()"] = self._create_variable("len()", len(value))
return list(result.values())
IS_VARIABLE_RE: ClassVar = re.compile(r"^[$@&]\{.*\}(\[[^\]]*\])?$")
@@ -1669,161 +1790,235 @@ def evaluate(
context: Union[EvaluateArgumentContext, str, None] = None,
format: Optional[ValueFormat] = None,
) -> EvaluateResult:
+ """Evaluate an expression in the context of a stack frame."""
if not expression:
return EvaluateResult(result="")
- if (
+ # Handle expression mode toggle
+ if self._is_expression_mode_toggle(expression, context):
+ self.expression_mode = not self.expression_mode
+ return EvaluateResult(result="# Expression mode is now " + ("on" if self.expression_mode else "off"))
+
+ # Get evaluation context
+ stack_frame, evaluate_context = self._get_evaluation_context(frame_id)
+ if evaluate_context is None:
+ return EvaluateResult(result="Unable to evaluate expression. No context available.", type="FatalError")
+
+ # Process CURDIR substitution
+ processed_expression = self._process_curdir_substitution(expression, stack_frame)
+ if isinstance(processed_expression, EvaluateResult):
+ return processed_expression
+
+ # Get variables context
+ vars = self._get_variables_context(stack_frame, evaluate_context)
+
+ # Evaluate expression
+ try:
+ if self._is_expression_mode(context):
+ result = self._evaluate_expression_mode(processed_expression, vars, evaluate_context, context)
+ else:
+ result = self._evaluate_repl_mode(processed_expression, vars, evaluate_context)
+
+ except (SystemExit, KeyboardInterrupt):
+ raise
+ except BaseException as e:
+ self._logger.exception(e)
+ raise
+
+ return self._create_evaluate_result(result)
+
+ def _is_expression_mode_toggle(self, expression: str, context: Union[EvaluateArgumentContext, str, None]) -> bool:
+ """Check if expression is a command to toggle expression mode."""
+ return (
(context == EvaluateArgumentContext.REPL)
and expression.startswith("#")
and expression[1:].strip() == "exprmode"
- ):
- self.expression_mode = not self.expression_mode
- return EvaluateResult(result="# Expression mode is now " + ("on" if self.expression_mode else "off"))
+ )
+ def _get_evaluation_context(self, frame_id: Optional[int]) -> tuple[Optional[StackFrameEntry], Any]:
+ """Get the stack frame and evaluation context for the given frame ID."""
stack_frame = next((v for v in self.full_stack_frames if v.id == frame_id), None)
-
evaluate_context = stack_frame.context() if stack_frame else None
if evaluate_context is None:
evaluate_context = EXECUTION_CONTEXTS.current
- if stack_frame is None and evaluate_context is None:
- return EvaluateResult(result="Unable to evaluate expression. No context available.", type="FatalError")
+ return stack_frame, evaluate_context
+
+ def _process_curdir_substitution(
+ self, expression: str, stack_frame: Optional[StackFrameEntry]
+ ) -> Union[str, EvaluateResult]:
+ """Process ${CURDIR} substitution in expression."""
+ if stack_frame is not None and stack_frame.source is not None:
+ curdir = str(Path(stack_frame.source).parent)
+ expression = self.CURRDIR.sub(curdir.replace("\\", "\\\\"), expression)
+ if expression == curdir:
+ return EvaluateResult(repr(expression), repr(type(expression)))
+ return expression
+
+ def _get_variables_context(self, stack_frame: Optional[StackFrameEntry], evaluate_context: Any) -> Any:
+ """Get the variables context for evaluation."""
+ return (
+ (stack_frame.get_first_or_self().variables() or evaluate_context.variables.current)
+ if stack_frame is not None
+ else evaluate_context.variables._global
+ )
- result: Any = None
- try:
- if stack_frame is not None and stack_frame.source is not None:
- curdir = str(Path(stack_frame.source).parent)
- expression = self.CURRDIR.sub(curdir.replace("\\", "\\\\"), expression)
- if expression == curdir:
- return EvaluateResult(repr(expression), repr(type(expression)))
-
- vars = (
- (stack_frame.get_first_or_self().variables() or evaluate_context.variables.current)
- if stack_frame is not None
- else evaluate_context.variables._global
+ def _is_expression_mode(self, context: Union[EvaluateArgumentContext, str, None]) -> bool:
+ """Check if we should use expression mode for evaluation."""
+ return (
+ isinstance(context, EvaluateArgumentContext) and context != EvaluateArgumentContext.REPL
+ ) or self.expression_mode
+
+ def _evaluate_expression_mode(
+ self, expression: str, vars: Any, evaluate_context: Any, context: Union[EvaluateArgumentContext, str, None]
+ ) -> Any:
+ """Evaluate expression in expression mode."""
+ if expression.startswith("! "):
+ return self._evaluate_keyword_expression(expression, evaluate_context)
+ if self.IS_VARIABLE_RE.match(expression.strip()):
+ return self._evaluate_variable_expression(expression, vars, context)
+ return internal_evaluate_expression(vars.replace_string(expression), vars)
+
+ def _evaluate_keyword_expression(self, expression: str, evaluate_context: Any) -> Any:
+ """Evaluate a keyword expression (starting with '! ')."""
+ splitted = self.SPLIT_LINE.split(expression[2:].strip())
+
+ if not splitted:
+ return None
+
+ # Extract variable assignments
+ variables: List[str] = []
+ while len(splitted) > 1 and self.IS_VARIABLE_ASSIGNMENT_RE.match(splitted[0].strip()):
+ var = splitted[0]
+ splitted = splitted[1:]
+ if var.endswith("="):
+ var = var[:-1]
+ variables.append(var)
+
+ if not splitted:
+ return None
+
+ def run_kw() -> Any:
+ kw = Keyword(
+ name=splitted[0],
+ args=tuple(splitted[1:]),
+ assign=tuple(variables),
)
- if (
- isinstance(context, EvaluateArgumentContext) and context != EvaluateArgumentContext.REPL
- ) or self.expression_mode:
- if expression.startswith("! "):
- splitted = self.SPLIT_LINE.split(expression[2:].strip())
-
- if splitted:
- variables: List[str] = []
- while len(splitted) > 1 and self.IS_VARIABLE_ASSIGNMENT_RE.match(splitted[0].strip()):
- var = splitted[0]
- splitted = splitted[1:]
- if var.endswith("="):
- var = var[:-1]
- variables.append(var)
-
- if splitted:
-
- def run_kw() -> Any:
- kw = Keyword(
- name=splitted[0],
- args=tuple(splitted[1:]),
- assign=tuple(variables),
- )
- return self._run_keyword(kw, evaluate_context)
+ return self._run_keyword(kw, evaluate_context)
- result = self.run_in_robot_thread(run_kw)
+ result = self.run_in_robot_thread(run_kw)
- if isinstance(result, BaseException):
- raise result
+ if isinstance(result, BaseException):
+ raise result
- elif self.IS_VARIABLE_RE.match(expression.strip()):
- try:
- result = vars.replace_scalar(expression)
- except VariableError:
- if context is not None and (
- (
- isinstance(context, EvaluateArgumentContext)
- and (
- context
- in [
- EvaluateArgumentContext.HOVER,
- EvaluateArgumentContext.WATCH,
- ]
- )
- )
- or context
- in [
- EvaluateArgumentContext.HOVER.value,
- EvaluateArgumentContext.WATCH.value,
- ]
- ):
- result = UNDEFINED
- else:
- raise
- else:
- result = internal_evaluate_expression(vars.replace_string(expression), vars)
- else:
- parts = self.SPLIT_LINE.split(expression.strip())
- if parts and len(parts) == 1 and self.IS_VARIABLE_RE.match(parts[0].strip()):
- # result = vars[parts[0].strip()]
- result = vars.replace_scalar(parts[0].strip())
+ return result
+
+ def _evaluate_variable_expression(
+ self, expression: str, vars: Any, context: Union[EvaluateArgumentContext, str, None]
+ ) -> Any:
+ """Evaluate a variable expression."""
+ try:
+ return vars.replace_scalar(expression)
+ except VariableError:
+ if self._should_return_undefined_for_variable_error(context):
+ return UNDEFINED
+ raise
+
+ def _should_return_undefined_for_variable_error(self, context: Union[EvaluateArgumentContext, str, None]) -> bool:
+ """Check if we should return UNDEFINED for variable errors in certain contexts."""
+ return context is not None and (
+ (
+ isinstance(context, EvaluateArgumentContext)
+ and context in [EvaluateArgumentContext.HOVER, EvaluateArgumentContext.WATCH]
+ )
+ or context in [EvaluateArgumentContext.HOVER.value, EvaluateArgumentContext.WATCH.value]
+ )
+
+ def _evaluate_repl_mode(self, expression: str, vars: Any, evaluate_context: Any) -> Any:
+ """Evaluate expression in REPL mode."""
+ parts = self.SPLIT_LINE.split(expression.strip())
+ if parts and len(parts) == 1 and self.IS_VARIABLE_RE.match(parts[0].strip()):
+ return vars.replace_scalar(parts[0].strip())
+ return self._evaluate_test_body_expression(expression, evaluate_context)
+
+ def _evaluate_test_body_expression(self, expression: str, evaluate_context: Any) -> Any:
+ """Evaluate a test body expression (Robot Framework commands)."""
+
+ def get_test_body_from_string(command: str) -> TestCase:
+ suite_str = (
+ "*** Test Cases ***\nDummyTestCase423141592653589793\n "
+ + ("\n ".join(command.split("\n")) if "\n" in command else command)
+ ) + "\n"
+
+ model = get_model(suite_str)
+ suite: TestSuite = TestSuite.from_model(model)
+ return cast(TestCase, suite.tests[0])
+
+ def run_kw() -> Any:
+ test = get_test_body_from_string(expression)
+ result = None
+
+ if len(test.body):
+ if get_robot_version() >= (7, 3):
+ result = self._execute_keywords_with_delayed_logging_v73(test.body, evaluate_context)
else:
+ result = self._execute_keywords_with_delayed_logging_legacy(test.body, evaluate_context)
+ return result
- def get_test_body_from_string(command: str) -> TestCase:
- suite_str = (
- "*** Test Cases ***\nDummyTestCase423141592653589793\n "
- + ("\n ".join(command.split("\n")) if "\n" in command else command)
- ) + "\n"
-
- model = get_model(suite_str)
- suite: TestSuite = TestSuite.from_model(model)
- return cast(TestCase, suite.tests[0])
-
- def run_kw() -> Any:
- test = get_test_body_from_string(expression)
- result = None
-
- if len(test.body):
- for kw in test.body:
- with LOGGER.delayed_logging:
- try:
- result = self._run_keyword(kw, evaluate_context)
- except (SystemExit, KeyboardInterrupt):
- raise
- except BaseException as e:
- result = e
- break
- finally:
- if get_robot_version() <= (7, 2):
- messages = LOGGER._log_message_cache or []
- for msg in messages or ():
- # hack to get and evaluate log level
- listener: Any = next(iter(LOGGER), None)
- if listener is None or self.check_message_is_logged(listener, msg):
- self.log_message(
- {
- "level": msg.level,
- "message": msg.message,
- "timestamp": msg.timestamp,
- }
- )
- return result
-
- result = self.run_in_robot_thread(run_kw)
-
- if isinstance(result, BaseException):
- raise result
+ result = self.run_in_robot_thread(run_kw)
- except (SystemExit, KeyboardInterrupt):
- raise
- except BaseException as e:
- self._logger.exception(e)
- raise
+ if isinstance(result, BaseException):
+ raise result
- return self._create_evaluate_result(result)
+ return result
- def _create_evaluate_result(self, value: Any) -> EvaluateResult:
- self._evaluate_cache.insert(0, value)
- if len(self._evaluate_cache) > 50:
- self._evaluate_cache.pop()
+ def _execute_keywords_with_delayed_logging_v73(self, keywords: Any, evaluate_context: Any) -> Any:
+ """Execute keywords with delayed logging for Robot Framework >= 7.3."""
+ result = None
+ for kw in keywords:
+ with evaluate_context.output.delayed_logging:
+ try:
+ result = self._run_keyword(kw, evaluate_context)
+ except (SystemExit, KeyboardInterrupt):
+ raise
+ except BaseException as e:
+ result = e
+ break
+ return result
+
+ def _execute_keywords_with_delayed_logging_legacy(self, keywords: Any, evaluate_context: Any) -> Any:
+ """Execute keywords with delayed logging for Robot Framework < 7.3."""
+ result = None
+ for kw in keywords:
+ with LOGGER.delayed_logging:
+ try:
+ result = self._run_keyword(kw, evaluate_context)
+ except (SystemExit, KeyboardInterrupt):
+ raise
+ except BaseException as e:
+ result = e
+ break
+ finally:
+ if get_robot_version() <= (7, 2):
+ self._process_delayed_log_messages()
+ return result
+ def _process_delayed_log_messages(self) -> None:
+ """Process delayed log messages for older Robot Framework versions."""
+ messages = LOGGER._log_message_cache or []
+ for msg in messages or ():
+ listener: Any = next(iter(LOGGER), None)
+ if listener is None or self.check_message_is_logged(listener, msg):
+ self.log_message(
+ {
+ "level": msg.level,
+ "message": msg.message,
+ "timestamp": msg.timestamp,
+ }
+ )
+
+ def _create_evaluate_result(self, value: Any) -> EvaluateResult:
if isinstance(value, Mapping):
v_id = self._new_cache_id()
self._variables_cache[v_id] = value
@@ -1848,7 +2043,7 @@ def _create_evaluate_result(self, value: Any) -> EvaluateResult:
return EvaluateResult(result=repr(value), type=repr(type(value)))
- def run_in_robot_thread(self, kw: Callable[[], Any]) -> Any:
+ def run_in_robot_thread(self, kw: KeywordCallable) -> EvaluationResult:
with self.condition:
self._keyword_to_evaluate = kw
self._evaluated_keyword_result = None
@@ -1861,7 +2056,7 @@ def run_in_robot_thread(self, kw: Callable[[], Any]) -> Any:
self.condition.notify_all()
try:
- self._evaluate_keyword_event.wait(60)
+ self._evaluate_keyword_event.wait(KEYWORD_EVALUATION_TIMEOUT)
finally:
result = self._evaluated_keyword_result
@@ -1877,10 +2072,6 @@ def run_in_robot_thread(self, kw: Callable[[], Any]) -> Any:
return result
def _create_set_variable_result(self, value: Any) -> SetVariableResult:
- self._evaluate_cache.insert(0, value)
- if len(self._evaluate_cache) > 50:
- self._evaluate_cache.pop()
-
if isinstance(value, Mapping):
v_id = self._new_cache_id()
self._variables_cache[v_id] = value
diff --git a/packages/debugger/src/robotcode/debugger/launcher/client.py b/packages/debugger/src/robotcode/debugger/launcher/client.py
index 958fad1a8..70e38f618 100644
--- a/packages/debugger/src/robotcode/debugger/launcher/client.py
+++ b/packages/debugger/src/robotcode/debugger/launcher/client.py
@@ -96,8 +96,10 @@ async def wait() -> None:
self._protocol.on_connection_lost.add(self.on_connection_lost)
except (asyncio.CancelledError, KeyboardInterrupt, SystemExit):
raise
- except ConnectionError:
+ except (ConnectionError, OSError):
pass
+ except BaseException as e:
+ raise DAPClientError(f"Failed to connect to {self.tcp_params.host}:{self.tcp_params.port}") from e
if self._protocol is not None:
raise DAPClientError("Client already connected.")
diff --git a/packages/debugger/src/robotcode/debugger/launcher/server.py b/packages/debugger/src/robotcode/debugger/launcher/server.py
index ea178a311..454998d70 100644
--- a/packages/debugger/src/robotcode/debugger/launcher/server.py
+++ b/packages/debugger/src/robotcode/debugger/launcher/server.py
@@ -136,7 +136,7 @@ async def _launch(
connect_timeout = launcherTimeout or 10
- port = find_free_port(DEBUGGER_DEFAULT_PORT)
+ port = find_free_port()
debugger_script = ["-m", "robotcode.cli"] if self.debugger_script is None else [str(Path(self.debugger_script))]
@@ -254,6 +254,7 @@ async def _launch(
),
return_type=RunInTerminalResponseBody,
)
+ # time.sleep(1) # Give some time for the terminal to start
elif console is None or console == "internalConsole":
run_env: Dict[str, Optional[str]] = dict(os.environ)
run_env.update(env)
diff --git a/packages/debugger/src/robotcode/debugger/listeners.py b/packages/debugger/src/robotcode/debugger/listeners.py
index b52f06e5d..9f32e9a56 100644
--- a/packages/debugger/src/robotcode/debugger/listeners.py
+++ b/packages/debugger/src/robotcode/debugger/listeners.py
@@ -9,17 +9,43 @@
from robotcode.core.utils.path import normalized_path
from .dap_types import Event, Model
-from .debugger import Debugger
+from .debugger import Debugger, LogMessage
+from .mixins import SyncedEventBody
@dataclass
-class RobotExecutionEventBody(Model):
+class RobotExecutionEventBody(Model, SyncedEventBody):
type: str
id: str
name: str
parent_id: Optional[str] = None
attributes: Optional[Dict[str, Any]] = None
failed_keywords: Optional[List[Dict[str, Any]]] = None
+ source: Optional[str] = None
+ lineno: Optional[int] = None
+ synced: bool = True
+
+
+@dataclass
+class RobotEnqueuedEventBody(Model, SyncedEventBody):
+ items: List[str]
+ synced: bool = True
+
+
+@dataclass
+class RobotLogMessageEventBody(Model, SyncedEventBody):
+ item_id: Optional[str]
+
+ message: Optional[str]
+ level: Optional[str]
+ timestamp: Optional[str]
+ html: Optional[str]
+
+ source: Optional[str] = None
+ lineno: Optional[int] = None
+ column: Optional[int] = None
+
+ synced: bool = True
def source_from_attributes(attributes: Dict[str, Any]) -> str:
@@ -40,7 +66,8 @@ def __init__(self) -> None:
def start_suite(self, name: str, attributes: Dict[str, Any]) -> None:
id = f"{source_from_attributes(attributes)};{attributes.get('longname', '')}"
- Debugger.instance().send_event(
+
+ Debugger.instance.send_event(
self,
Event(
event="robotStarted",
@@ -50,22 +77,24 @@ def start_suite(self, name: str, attributes: Dict[str, Any]) -> None:
id=id,
parent_id=self.suite_id_stack[-1] if self.suite_id_stack else None,
attributes=dict(attributes),
+ source=source_from_attributes(attributes) or None,
+ lineno=attributes.get("lineno", None),
),
),
)
- Debugger.instance().start_output_group(name, attributes, "SUITE")
+ Debugger.instance.start_output_group(name, attributes, "SUITE")
- Debugger.instance().start_suite(name, attributes)
+ Debugger.instance.start_suite(name, attributes)
self.suite_id_stack.append(id)
def end_suite(self, name: str, attributes: Dict[str, Any]) -> None:
id = f"{source_from_attributes(attributes)};{attributes.get('longname', '')}"
- Debugger.instance().end_suite(name, attributes)
+ Debugger.instance.end_suite(name, attributes)
- Debugger.instance().end_output_group(name, attributes, "SUITE")
+ Debugger.instance.end_output_group(name, attributes, "SUITE")
- Debugger.instance().send_event(
+ Debugger.instance.send_event(
self,
Event(
event="robotEnded",
@@ -76,6 +105,8 @@ def end_suite(self, name: str, attributes: Dict[str, Any]) -> None:
id=id,
parent_id=self.suite_id_stack[-1] if self.suite_id_stack else None,
failed_keywords=self.failed_keywords,
+ source=source_from_attributes(attributes) or None,
+ lineno=attributes.get("lineno", None),
),
),
)
@@ -85,7 +116,7 @@ def end_suite(self, name: str, attributes: Dict[str, Any]) -> None:
def start_test(self, name: str, attributes: Dict[str, Any]) -> None:
self.failed_keywords = None
- Debugger.instance().send_event(
+ Debugger.instance.send_event(
self,
Event(
event="robotStarted",
@@ -96,20 +127,22 @@ def start_test(self, name: str, attributes: Dict[str, Any]) -> None:
f"{attributes.get('lineno', 0)}",
parent_id=self.suite_id_stack[-1] if self.suite_id_stack else None,
attributes=dict(attributes),
+ source=source_from_attributes(attributes) or None,
+ lineno=attributes.get("lineno", None),
),
),
)
- Debugger.instance().start_output_group(name, attributes, "TEST")
+ Debugger.instance.start_output_group(name, attributes, "TEST")
- Debugger.instance().start_test(name, attributes)
+ Debugger.instance.start_test(name, attributes)
def end_test(self, name: str, attributes: Dict[str, Any]) -> None:
- Debugger.instance().end_test(name, attributes)
+ Debugger.instance.end_test(name, attributes)
- Debugger.instance().end_output_group(name, attributes, "TEST")
+ Debugger.instance.end_output_group(name, attributes, "TEST")
- Debugger.instance().send_event(
+ Debugger.instance.send_event(
self,
Event(
event="robotEnded",
@@ -121,6 +154,8 @@ def end_test(self, name: str, attributes: Dict[str, Any]) -> None:
parent_id=self.suite_id_stack[-1] if self.suite_id_stack else None,
attributes=dict(attributes),
failed_keywords=self.failed_keywords,
+ source=source_from_attributes(attributes) or None,
+ lineno=attributes.get("lineno", None),
),
),
)
@@ -129,19 +164,53 @@ def end_test(self, name: str, attributes: Dict[str, Any]) -> None:
def start_keyword(self, name: str, attributes: Dict[str, Any]) -> None:
if attributes["type"] in ["KEYWORD", "SETUP", "TEARDOWN"]:
- Debugger.instance().start_output_group(
+ Debugger.instance.start_output_group(
f"{name}({', '.join(repr(v) for v in attributes.get('args', []))})",
attributes,
attributes.get("type"),
)
- Debugger.instance().start_keyword(name, attributes)
+ # if Debugger.instance.state != State.CallKeyword:
+ # Debugger.instance.send_event(
+ # self,
+ # Event(
+ # event="robotStarted",
+ # body=RobotExecutionEventBody(
+ # type="keyword",
+ # name=name,
+ # id=f"{source_from_attributes(attributes)};{name};{attributes.get('lineno', 0)}",
+ # parent_id=self.suite_id_stack[-1] if self.suite_id_stack else None,
+ # attributes=dict(attributes),
+ # source=source_from_attributes(attributes) or None,
+ # lineno=attributes.get("lineno", None),
+ # ),
+ # ),
+ # )
+
+ Debugger.instance.start_keyword(name, attributes)
def end_keyword(self, name: str, attributes: Dict[str, Any]) -> None:
- Debugger.instance().end_keyword(name, attributes)
+ Debugger.instance.end_keyword(name, attributes)
+
+ # if Debugger.instance.state != State.CallKeyword:
+ # Debugger.instance.send_event(
+ # self,
+ # Event(
+ # event="robotEnded",
+ # body=RobotExecutionEventBody(
+ # type="keyword",
+ # name=name,
+ # id=f"{source_from_attributes(attributes)};{name};{attributes.get('lineno', 0)}",
+ # parent_id=self.suite_id_stack[-1] if self.suite_id_stack else None,
+ # attributes=dict(attributes),
+ # source=source_from_attributes(attributes) or None,
+ # lineno=attributes.get("lineno", None),
+ # ),
+ # ),
+ # )
if attributes["type"] in ["KEYWORD", "SETUP", "TEARDOWN"]:
- Debugger.instance().end_output_group(name, attributes, attributes.get("type"))
+ Debugger.instance.end_output_group(name, attributes, attributes.get("type"))
if attributes["status"] == "FAIL" and attributes.get("source"):
if self.failed_keywords is None:
@@ -151,13 +220,13 @@ def end_keyword(self, name: str, attributes: Dict[str, Any]) -> None:
RE_FILE_LINE_MATCHER = re.compile(r".+\sin\sfile\s'(?P.*)'\son\sline\s(?P\d+):(?P.*)")
- def log_message(self, message: Dict[str, Any]) -> None:
+ def log_message(self, message: LogMessage) -> None:
if message["level"] in ["FAIL", "ERROR", "WARN"]:
- current_frame = Debugger.instance().full_stack_frames[0] if Debugger.instance().full_stack_frames else None
+ current_frame = Debugger.instance.full_stack_frames[0] if Debugger.instance.full_stack_frames else None
if message["level"] == "FAIL":
self.last_fail_message = message["message"]
- Debugger.instance().last_fail_message = self.last_fail_message
+ Debugger.instance.last_fail_message = self.last_fail_message
source = current_frame.source if current_frame else None
line = current_frame.line if current_frame else None
@@ -171,7 +240,7 @@ def log_message(self, message: Dict[str, Any]) -> None:
else f"{normalized_path(Path(item.source)) if item.source is not None else ''};"
f"{item.longname};{item.line}"
)
- for item in Debugger.instance().full_stack_frames
+ for item in Debugger.instance.full_stack_frames
if item.type in ["SUITE", "TEST"]
),
None,
@@ -185,26 +254,28 @@ def log_message(self, message: Dict[str, Any]) -> None:
msg = match.group("message")
column = 0
- Debugger.instance().send_event(
+ Debugger.instance.send_event(
self,
Event(
event="robotLog",
- body={
- "itemId": item_id,
- "source": source,
- "lineno": line,
- "column": column,
- **dict(message),
- **({"message": msg} if msg else {}),
- },
+ body=RobotLogMessageEventBody(
+ item_id=item_id,
+ message=msg if msg else message.get("message", None),
+ level=message.get("level", None),
+ timestamp=message.get("timestamp", None),
+ html=message.get("html", None),
+ source=source,
+ lineno=line,
+ column=column,
+ ),
),
)
- Debugger.instance().log_message(message)
+ Debugger.instance.log_message(message)
- def message(self, message: Dict[str, Any]) -> None:
+ def message(self, message: LogMessage) -> None:
if message["level"] in ["FAIL", "ERROR", "WARN"]:
- current_frame = Debugger.instance().full_stack_frames[0] if Debugger.instance().full_stack_frames else None
+ current_frame = Debugger.instance.full_stack_frames[0] if Debugger.instance.full_stack_frames else None
source = current_frame.source if current_frame else None
line = current_frame.line if current_frame else None
@@ -218,7 +289,7 @@ def message(self, message: Dict[str, Any]) -> None:
else f"{normalized_path(Path(item.source)) if item.source is not None else ''};"
f"{item.longname};{item.line}"
)
- for item in Debugger.instance().full_stack_frames
+ for item in Debugger.instance.full_stack_frames
if item.type in ["SUITE", "TEST"]
),
None,
@@ -232,22 +303,24 @@ def message(self, message: Dict[str, Any]) -> None:
msg = match.group("message")
column = 0
- Debugger.instance().send_event(
+ Debugger.instance.send_event(
self,
Event(
event="robotMessage",
- body={
- "itemId": item_id,
- "source": source,
- "lineno": line,
- "column": column,
- **dict(message),
- **({"message": msg} if msg else {}),
- },
+ body=RobotLogMessageEventBody(
+ item_id=item_id,
+ message=msg if msg else message.get("message", None),
+ level=message.get("level", None),
+ timestamp=message.get("timestamp", None),
+ html=message.get("html", None),
+ source=source,
+ lineno=line,
+ column=column,
+ ),
),
)
- Debugger.instance().message(message)
+ Debugger.instance.message(message)
def library_import(self, name: str, attributes: Dict[str, Any]) -> None:
pass
@@ -259,13 +332,13 @@ def variables_import(self, name: str, attributes: Dict[str, Any]) -> None:
pass
def output_file(self, path: str) -> None:
- Debugger.instance().robot_output_file = path
+ Debugger.instance.robot_output_file = path
def log_file(self, path: str) -> None:
- Debugger.instance().robot_log_file = path
+ Debugger.instance.robot_log_file = path
def report_file(self, path: str) -> None:
- Debugger.instance().robot_report_file = path
+ Debugger.instance.robot_report_file = path
def xunit_file(self, path: str) -> None:
pass
@@ -305,7 +378,7 @@ def enqueue(
items = list(reversed(list(enqueue(cast(running.model.TestSuite, data)))))
- Debugger.instance().send_event(self, Event(event="robotEnqueued", body={"items": items}))
+ Debugger.instance.send_event(self, Event(event="robotEnqueued", body=RobotEnqueuedEventBody(items)))
self._event_sended = True
@@ -316,7 +389,7 @@ def report_status(
message: str,
) -> None:
if isinstance(result_item, result.TestCase):
- Debugger.instance().send_event(
+ Debugger.instance.send_event(
self,
Event(
event="robotSetFailed",
@@ -337,6 +410,8 @@ def report_status(
if isinstance(result_item, result.TestCase)
else ""
),
+ source=str(normalized_path(Path(result_item.source))) if result_item.source else None,
+ lineno=data_item.lineno if data_item else None,
),
),
)
diff --git a/packages/debugger/src/robotcode/debugger/mixins.py b/packages/debugger/src/robotcode/debugger/mixins.py
new file mode 100644
index 000000000..1b95b2a23
--- /dev/null
+++ b/packages/debugger/src/robotcode/debugger/mixins.py
@@ -0,0 +1,5 @@
+from typing import Optional
+
+
+class SyncedEventBody:
+ synced: Optional[bool]
diff --git a/packages/debugger/src/robotcode/debugger/protocol.py b/packages/debugger/src/robotcode/debugger/protocol.py
index 7d667dfca..d094c0f54 100644
--- a/packages/debugger/src/robotcode/debugger/protocol.py
+++ b/packages/debugger/src/robotcode/debugger/protocol.py
@@ -26,7 +26,7 @@
from robotcode.jsonrpc2.protocol import (
JsonRPCException,
JsonRPCProtocolBase,
- SendedRequestEntry,
+ SentRequestEntry,
)
from .dap_types import (
@@ -78,7 +78,7 @@ class DebugAdapterProtocol(JsonRPCProtocolBase):
def __init__(self) -> None:
super().__init__()
self._sended_request_lock = threading.RLock()
- self._sended_request: OrderedDict[int, SendedRequestEntry] = OrderedDict()
+ self._sended_request: OrderedDict[int, SentRequestEntry] = OrderedDict()
self._received_request_lock = threading.RLock()
self._received_request: OrderedDict[int, asyncio.Future[Any]] = OrderedDict()
self._initialized = False
@@ -307,7 +307,7 @@ def send_request(self, request: Request, return_type: Optional[Type[TResult]] =
result: Task[TResult] = Task()
with self._sended_request_lock:
- self._sended_request[request.seq] = SendedRequestEntry(result, return_type)
+ self._sended_request[request.seq] = SentRequestEntry(result, return_type)
self.send_message(request)
diff --git a/packages/debugger/src/robotcode/debugger/run.py b/packages/debugger/src/robotcode/debugger/run.py
index ee78e49c7..34a5fae17 100644
--- a/packages/debugger/src/robotcode/debugger/run.py
+++ b/packages/debugger/src/robotcode/debugger/run.py
@@ -223,17 +223,17 @@ def run_debugger(
*args,
]
- Debugger.instance().stop_on_entry = stop_on_entry
- Debugger.instance().output_messages = output_messages
- Debugger.instance().output_log = output_log
- Debugger.instance().group_output = group_output
- Debugger.instance().output_timestamps = output_timestamps
- Debugger.instance().colored_output = app.colored
- Debugger.instance().debug = debug
- Debugger.instance().set_main_thread(threading.current_thread())
+ Debugger.instance.stop_on_entry = stop_on_entry
+ Debugger.instance.output_messages = output_messages
+ Debugger.instance.output_log = output_log
+ Debugger.instance.group_output = group_output
+ Debugger.instance.output_timestamps = output_timestamps
+ Debugger.instance.colored_output = app.colored
+ Debugger.instance.debug = debug
+ Debugger.instance.set_main_thread(threading.current_thread())
app.verbose("Start the debugger instance")
- Debugger.instance().start()
+ Debugger.instance.start()
exit_code = 0
try:
@@ -252,20 +252,20 @@ def run_debugger(
Event(
event="robotExited",
body={
- "reportFile": Debugger.instance().robot_report_file,
- "logFile": Debugger.instance().robot_log_file,
- "outputFile": Debugger.instance().robot_output_file,
+ "reportFile": Debugger.instance.robot_report_file,
+ "logFile": Debugger.instance.robot_log_file,
+ "outputFile": Debugger.instance.robot_output_file,
"exitCode": exit_code,
},
)
)
- server.protocol.exit(exit_code)
except CancelledError:
pass
finally:
if server.protocol.connected:
server.protocol.terminate()
+ server.protocol.exit(exit_code)
if not server.protocol.wait_for_disconnected():
app.verbose("Timeout to get disconnected from client")
diff --git a/packages/debugger/src/robotcode/debugger/server.py b/packages/debugger/src/robotcode/debugger/server.py
index aad18bd93..5438ebccd 100644
--- a/packages/debugger/src/robotcode/debugger/server.py
+++ b/packages/debugger/src/robotcode/debugger/server.py
@@ -48,8 +48,9 @@
VariablesArguments,
VariablesResponseBody,
)
-from .debugger import Debugger, PathMapping
+from .debugger import Debugger, PathMapping, State
from .default_capabilities import DFEAULT_CAPABILITIES
+from .mixins import SyncedEventBody
from .protocol import DebugAdapterProtocol
TCP_DEFAULT_PORT = 6612
@@ -78,12 +79,26 @@ def __init__(self) -> None:
self._received_configuration_done_event = threading.Event()
self._received_configuration_done = False
self.received_configuration_done_callback: Optional[Callable[[], None]] = None
+ self.sync_event: threading.Event = threading.Event()
- Debugger.instance().send_event.add(self.on_debugger_send_event)
+ Debugger.instance.send_event.add(self.on_debugger_send_event)
- def on_debugger_send_event(self, sender: Any, event: Event) -> None:
+ def on_debugger_send_event(self, sender: Any, event: Event, synced: bool = False) -> None:
if self._loop is not None:
- asyncio.run_coroutine_threadsafe(self.send_event_async(event), loop=self._loop)
+ synced = (
+ Debugger.instance.state != State.CallKeyword
+ if isinstance(event.body, SyncedEventBody) and event.body.synced
+ else False
+ )
+
+ if synced:
+ self.sync_event.clear()
+
+ # asyncio.run_coroutine_threadsafe(self.send_event_async(event), loop=self._loop).result(15)
+ self._loop.call_soon_threadsafe(self.send_event, event)
+
+ if synced:
+ self.sync_event.wait(15)
@property
def connected(self) -> bool:
@@ -159,14 +174,14 @@ async def _attach(
**kwargs: Any,
) -> None:
if pathMappings:
- Debugger.instance().path_mappings = [
+ Debugger.instance.path_mappings = [
PathMapping(
local_root=v.get("localRoot", None),
remote_root=v.get("remoteRoot", None),
)
for v in pathMappings
]
- Debugger.instance().attached = True
+ Debugger.instance.attached = True
@_logger.call
def initialized(self) -> None:
@@ -189,20 +204,22 @@ def terminate(self) -> None:
async def _terminate(
self,
arguments: Optional[TerminateArguments] = None,
+ restart: Optional[bool] = None,
*args: Any,
**kwargs: Any,
) -> None:
- if not self._sigint_signaled:
- self._logger.info("Send SIGINT to process")
+ Debugger.instance.terminate()
+
+ if not restart and not self._sigint_signaled:
+ self._logger.debug("Send SIGINT to process")
signal.raise_signal(signal.SIGINT)
self._sigint_signaled = True
- # Debugger.instance().continue_all()
+
+ Debugger.instance.continue_all_if_paused()
else:
await self.send_event_async(Event("terminateRequested"))
- Debugger.instance().terminate()
-
- self._logger.info("Send SIGTERM to process")
+ self._logger.debug("Send SIGTERM to process")
signal.raise_signal(signal.SIGTERM)
@rpc_method(name="disconnect", param_type=DisconnectArguments)
@@ -216,15 +233,15 @@ async def _disconnect(
os._exit(-1)
else:
await self.send_event_async(Event("disconnectRequested"))
- Debugger.instance().attached = False
- Debugger.instance().continue_all()
+ Debugger.instance.attached = False
+ Debugger.instance.continue_all()
@rpc_method(name="setBreakpoints", param_type=SetBreakpointsArguments)
async def _set_breakpoints(
self, arguments: SetBreakpointsArguments, *args: Any, **kwargs: Any
) -> SetBreakpointsResponseBody:
return SetBreakpointsResponseBody(
- breakpoints=Debugger.instance().set_breakpoints(
+ breakpoints=Debugger.instance.set_breakpoints(
arguments.source,
arguments.breakpoints,
arguments.lines,
@@ -255,32 +272,32 @@ def wait_for_configuration_done(self, timeout: float = 5) -> bool:
@rpc_method(name="continue", param_type=ContinueArguments)
async def _continue(self, arguments: ContinueArguments, *args: Any, **kwargs: Any) -> ContinueResponseBody:
- Debugger.instance().continue_thread(arguments.thread_id)
+ Debugger.instance.continue_thread(arguments.thread_id)
return ContinueResponseBody(all_threads_continued=True)
@rpc_method(name="pause", param_type=PauseArguments)
async def _pause(self, arguments: PauseArguments, *args: Any, **kwargs: Any) -> None:
- Debugger.instance().pause_thread(arguments.thread_id)
+ Debugger.instance.pause_thread(arguments.thread_id)
@rpc_method(name="next", param_type=NextArguments)
async def _next(self, arguments: NextArguments, *args: Any, **kwargs: Any) -> None:
- Debugger.instance().next(arguments.thread_id, arguments.granularity)
+ Debugger.instance.next(arguments.thread_id, arguments.granularity)
@rpc_method(name="stepIn", param_type=StepInArguments)
async def _step_in(self, arguments: StepInArguments, *args: Any, **kwargs: Any) -> None:
- Debugger.instance().step_in(arguments.thread_id, arguments.target_id, arguments.granularity)
+ Debugger.instance.step_in(arguments.thread_id, arguments.target_id, arguments.granularity)
@rpc_method(name="stepOut", param_type=StepOutArguments)
async def _step_out(self, arguments: StepOutArguments, *args: Any, **kwargs: Any) -> None:
- Debugger.instance().step_out(arguments.thread_id, arguments.granularity)
+ Debugger.instance.step_out(arguments.thread_id, arguments.granularity)
@rpc_method(name="threads")
async def _threads(self, *args: Any, **kwargs: Any) -> ThreadsResponseBody:
- return ThreadsResponseBody(threads=Debugger.instance().get_threads())
+ return ThreadsResponseBody(threads=Debugger.instance.get_threads())
@rpc_method(name="stackTrace", param_type=StackTraceArguments)
async def _stack_trace(self, arguments: StackTraceArguments, *args: Any, **kwargs: Any) -> StackTraceResponseBody:
- result = Debugger.instance().get_stack_trace(
+ result = Debugger.instance.get_stack_trace(
arguments.thread_id,
arguments.start_frame,
arguments.levels,
@@ -290,7 +307,7 @@ async def _stack_trace(self, arguments: StackTraceArguments, *args: Any, **kwarg
@rpc_method(name="scopes", param_type=ScopesArguments)
async def _scopes(self, arguments: ScopesArguments, *args: Any, **kwargs: Any) -> ScopesResponseBody:
- return ScopesResponseBody(scopes=Debugger.instance().get_scopes(arguments.frame_id))
+ return ScopesResponseBody(scopes=Debugger.instance.get_scopes(arguments.frame_id))
@rpc_method(name="variables", param_type=VariablesArguments)
async def _variables(
@@ -305,7 +322,7 @@ async def _variables(
**kwargs: Any,
) -> VariablesResponseBody:
return VariablesResponseBody(
- variables=Debugger.instance().get_variables(variables_reference, filter, start, count, format)
+ variables=Debugger.instance.get_variables(variables_reference, filter, start, count, format)
)
@rpc_method(name="evaluate", param_type=EvaluateArguments)
@@ -319,7 +336,7 @@ async def _evaluate(
*args: Any,
**kwargs: Any,
) -> EvaluateResponseBody:
- result = Debugger.instance().evaluate(expression, frame_id, context, format)
+ result = Debugger.instance.evaluate(expression, frame_id, context, format)
return EvaluateResponseBody(
result=result.result,
type=result.type,
@@ -341,7 +358,7 @@ async def _set_variable(
*args: Any,
**kwargs: Any,
) -> SetVariableResponseBody:
- result = Debugger.instance().set_variable(variables_reference, name, value, format)
+ result = Debugger.instance.set_variable(variables_reference, name, value, format)
return SetVariableResponseBody(
value=result.value,
type=result.type,
@@ -360,7 +377,7 @@ async def _set_exception_breakpoints(
*args: Any,
**kwargs: Any,
) -> Optional[SetExceptionBreakpointsResponseBody]:
- result = Debugger.instance().set_exception_breakpoints(
+ result = Debugger.instance.set_exception_breakpoints(
arguments.filters,
arguments.filter_options,
arguments.exception_options,
@@ -378,9 +395,17 @@ async def _completions(
*args: Any,
**kwargs: Any,
) -> CompletionsResponseBody:
- result = Debugger.instance().completions(text, column, line, frame_id)
+ result = Debugger.instance.completions(text, column, line, frame_id)
return CompletionsResponseBody(targets=result)
+ @rpc_method(name="robot/sync", threaded=True)
+ def _robot_sync(
+ self,
+ *args: Any,
+ **kwargs: Any,
+ ) -> None:
+ self.sync_event.set()
+
class DebugAdapterServer(JsonRPCServer[DebugAdapterServerProtocol]):
def __init__(
diff --git a/packages/jsonrpc2/pyproject.toml b/packages/jsonrpc2/pyproject.toml
index 26a0e32f3..6b860ebc4 100644
--- a/packages/jsonrpc2/pyproject.toml
+++ b/packages/jsonrpc2/pyproject.toml
@@ -25,7 +25,7 @@ classifiers = [
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Tool",
]
-dependencies = ["robotcode-core==1.3.0-dev.2"]
+dependencies = ["robotcode-core==1.7.0"]
dynamic = ["version"]
[project.urls]
diff --git a/packages/jsonrpc2/src/robotcode/jsonrpc2/__version__.py b/packages/jsonrpc2/src/robotcode/jsonrpc2/__version__.py
index 1cb3f8c2e..14d9d2f58 100644
--- a/packages/jsonrpc2/src/robotcode/jsonrpc2/__version__.py
+++ b/packages/jsonrpc2/src/robotcode/jsonrpc2/__version__.py
@@ -1 +1 @@
-__version__ = "1.3.0-dev.2"
+__version__ = "1.7.0"
diff --git a/packages/jsonrpc2/src/robotcode/jsonrpc2/protocol.py b/packages/jsonrpc2/src/robotcode/jsonrpc2/protocol.py
index f2a4fd0ee..e672e53c6 100644
--- a/packages/jsonrpc2/src/robotcode/jsonrpc2/protocol.py
+++ b/packages/jsonrpc2/src/robotcode/jsonrpc2/protocol.py
@@ -196,7 +196,7 @@ def _decorator(func: _F) -> Callable[[_F], _F]:
if isinstance(func, classmethod):
f = func.__func__ # type: ignore
elif isinstance(func, staticmethod):
- f = func.__func__ # type: ignore
+ f = func.__func__
else:
f = func
@@ -348,7 +348,7 @@ def get_param_type(self, name: str) -> Optional[Type[Any]]:
return result.param_type
-class SendedRequestEntry:
+class SentRequestEntry:
def __init__(self, future: Task[Any], result_type: Optional[Type[Any]]) -> None:
self.future = future
self.result_type = result_type
@@ -420,6 +420,8 @@ def eof_received(self) -> Optional[bool]:
re.DOTALL,
)
+ DEFAULT_MESSAGE_LENGTH: Final = 1
+
def data_received(self, data: bytes) -> None:
while len(data):
# Append the incoming chunk to the message buffer
@@ -429,7 +431,7 @@ def data_received(self, data: bytes) -> None:
found = self.MESSAGE_PATTERN.match(self._message_buf)
body = found.group("body") if found else b""
- length = int(found.group("length")) if found else 1
+ length = int(found.group("length")) if found else self.DEFAULT_MESSAGE_LENGTH
charset = (
found.group("charset").decode("ascii") if found and found.group("charset") is not None else self.CHARSET
@@ -453,9 +455,9 @@ class JsonRPCProtocol(JsonRPCProtocolBase):
def __init__(self) -> None:
super().__init__()
- self._sended_request_lock = threading.RLock()
- self._sended_request: OrderedDict[Union[str, int], SendedRequestEntry] = OrderedDict()
- self._sended_request_count = 0
+ self._sent_request_lock = threading.RLock()
+ self._sent_request: OrderedDict[Union[str, int], SentRequestEntry] = OrderedDict()
+ self._sent_request_count = 0
self._received_request: OrderedDict[Union[str, int, None], ReceivedRequestEntry] = OrderedDict()
self._received_request_lock = threading.RLock()
self._signature_cache: Dict[Callable[..., Any], inspect.Signature] = {}
@@ -500,7 +502,7 @@ def _handle_body(self, body: bytes, charset: str) -> None:
raise
except BaseException as e:
self.__logger.exception(e)
- self.send_error(JsonRPCErrors.PARSE_ERROR, f"{type(e).__name__}: {e}")
+ self.send_error(JsonRPCErrors.PARSE_ERROR, f"{e}")
def _handle_messages(self, iterator: Iterator[JsonRPCMessage]) -> None:
for m in iterator:
@@ -567,11 +569,11 @@ def send_request(
) -> Task[_TResult]:
result: Task[_TResult] = Task()
- with self._sended_request_lock:
- self._sended_request_count += 1
- id = self._sended_request_count
+ with self._sent_request_lock:
+ self._sent_request_count += 1
+ id = self._sent_request_count
- self._sended_request[id] = SendedRequestEntry(result, return_type)
+ self._sent_request[id] = SentRequestEntry(result, return_type)
request = JsonRPCRequest(id=id, method=method, params=params)
self.send_message(request)
@@ -598,8 +600,8 @@ async def handle_response(self, message: JsonRPCResponse) -> None:
self.send_error(JsonRPCErrors.INTERNAL_ERROR, error)
return
- with self._sended_request_lock:
- entry = self._sended_request.pop(message.id, None)
+ with self._sent_request_lock:
+ entry = self._sent_request.pop(message.id, None)
if entry is None:
error = f"Invalid response. Could not find id '{message.id}' in request list."
@@ -628,8 +630,8 @@ async def handle_error(self, message: JsonRPCError) -> None:
self.__logger.warning(error)
raise JsonRPCErrorException(message.error.code, message.error.message, message.error.data)
- with self._sended_request_lock:
- entry = self._sended_request.pop(message.id, None)
+ with self._sent_request_lock:
+ entry = self._sent_request.pop(message.id, None)
if entry is None:
error = f"Invalid response. Could not find id '{message.id}' in request list."
@@ -660,71 +662,158 @@ def _convert_params(
params_type: Optional[Type[Any]],
params: Any,
) -> Tuple[List[Any], Dict[str, Any]]:
+ """Convert JSON-RPC parameters to function arguments.
+
+ Args:
+ callable: The target function to call
+ params_type: Expected parameter type for conversion
+ params: Raw parameters from JSON-RPC message
+
+ Returns:
+ Tuple of (positional_args, keyword_args) for function call
+ """
if params is None:
return [], {}
+
if params_type is None:
- if isinstance(params, Mapping):
- return [], dict(**params)
+ return self._handle_untyped_params(params)
+
+ return self._handle_typed_params(callable, params_type, params)
- return [params], {}
+ def _handle_untyped_params(self, params: Any) -> Tuple[List[Any], Dict[str, Any]]:
+ """Handle parameters when no specific type is expected."""
+ if isinstance(params, Mapping):
+ return [], dict(**params)
+ return [params], {}
- # try to convert the dict to correct type
+ def _handle_typed_params(
+ self,
+ callable: Callable[..., Any],
+ params_type: Type[Any],
+ params: Any,
+ ) -> Tuple[List[Any], Dict[str, Any]]:
+ """Handle parameters with type conversion and signature matching."""
+ # Convert the parameters to the expected type
converted_params = from_dict(params, params_type)
- # get the signature of the callable
+ # Get cached signature or create new one
+ signature = self._get_cached_signature(callable)
+
+ # Extract field names from converted parameters
+ field_names = self._extract_field_names(converted_params)
+
+ # Process signature parameters
+ return self._process_signature_parameters(signature, converted_params, params, field_names)
+
+ def _get_cached_signature(self, callable: Callable[..., Any]) -> inspect.Signature:
+ """Get or cache the signature of a callable."""
if callable in self._signature_cache:
- signature = self._signature_cache[callable]
- else:
- signature = inspect.signature(callable)
- self._signature_cache[callable] = signature
+ return self._signature_cache[callable]
+ signature = inspect.signature(callable)
+ self._signature_cache[callable] = signature
+ return signature
+
+ def _extract_field_names(self, converted_params: Any) -> List[str]:
+ """Extract field names from converted parameters."""
+ if is_dataclass(converted_params):
+ return [f.name for f in fields(converted_params)]
+ return list(converted_params.__dict__.keys())
+
+ def _process_signature_parameters(
+ self,
+ signature: inspect.Signature,
+ converted_params: Any,
+ params: Any,
+ field_names: List[str],
+ ) -> Tuple[List[Any], Dict[str, Any]]:
+ """Process function signature parameters and map them to arguments."""
has_var_kw = any(p.kind == inspect.Parameter.VAR_KEYWORD for p in signature.parameters.values())
- kw_args = {}
- args = []
+ kw_args: Dict[str, Any] = {}
+ args: List[Any] = []
params_added = False
- field_names = (
- [f.name for f in fields(converted_params)]
- if is_dataclass(converted_params)
- else list(converted_params.__dict__.keys())
- )
-
rest = set(field_names)
if isinstance(params, dict):
rest = set.union(rest, params.keys())
- for v in signature.parameters.values():
- if v.name in field_names:
- if v.kind == inspect.Parameter.POSITIONAL_ONLY:
- args.append(getattr(converted_params, v.name))
- else:
- kw_args[v.name] = getattr(converted_params, v.name)
-
- rest.remove(v.name)
- elif v.name == "params":
- if v.kind == inspect.Parameter.POSITIONAL_ONLY:
- args.append(converted_params)
- params_added = True
- else:
- kw_args[v.name] = converted_params
- params_added = True
- elif isinstance(params, dict) and v.name in params:
- if v.kind == inspect.Parameter.POSITIONAL_ONLY:
- args.append(params[v.name])
- else:
- kw_args[v.name] = params[v.name]
+ # Map signature parameters to arguments
+ for param in signature.parameters.values():
+ if param.name in field_names:
+ self._add_field_parameter(param, converted_params, args, kw_args)
+ rest.remove(param.name)
+ elif param.name == "params":
+ self._add_params_parameter(param, converted_params, args, kw_args)
+ params_added = True
+ elif isinstance(params, dict) and param.name in params:
+ self._add_dict_parameter(param, params, args, kw_args)
+
+ # Handle remaining parameters if function accepts **kwargs
if has_var_kw:
- for r in rest:
- if hasattr(converted_params, r):
- kw_args[r] = getattr(converted_params, r)
- elif isinstance(params, dict) and r in params:
- kw_args[r] = params[r]
-
- if not params_added:
- kw_args["params"] = converted_params
+ self._handle_var_keywords(rest, converted_params, params, kw_args, params_added)
+
return args, kw_args
+ def _add_field_parameter(
+ self,
+ param: inspect.Parameter,
+ converted_params: Any,
+ args: List[Any],
+ kw_args: Dict[str, Any],
+ ) -> None:
+ """Add a parameter from converted_params fields."""
+ value = getattr(converted_params, param.name)
+ if param.kind == inspect.Parameter.POSITIONAL_ONLY:
+ args.append(value)
+ else:
+ kw_args[param.name] = value
+
+ def _add_params_parameter(
+ self,
+ param: inspect.Parameter,
+ converted_params: Any,
+ args: List[Any],
+ kw_args: Dict[str, Any],
+ ) -> None:
+ """Add the entire converted_params as 'params' parameter."""
+ if param.kind == inspect.Parameter.POSITIONAL_ONLY:
+ args.append(converted_params)
+ else:
+ kw_args[param.name] = converted_params
+
+ def _add_dict_parameter(
+ self,
+ param: inspect.Parameter,
+ params: Dict[str, Any],
+ args: List[Any],
+ kw_args: Dict[str, Any],
+ ) -> None:
+ """Add a parameter from the original params dict."""
+ value = params[param.name]
+ if param.kind == inspect.Parameter.POSITIONAL_ONLY:
+ args.append(value)
+ else:
+ kw_args[param.name] = value
+
+ def _handle_var_keywords(
+ self,
+ rest: Set[str],
+ converted_params: Any,
+ params: Any,
+ kw_args: Dict[str, Any],
+ params_added: bool,
+ ) -> None:
+ """Handle remaining parameters for functions with **kwargs."""
+ for name in rest:
+ if hasattr(converted_params, name):
+ kw_args[name] = getattr(converted_params, name)
+ elif isinstance(params, dict) and name in params:
+ kw_args[name] = params[name]
+
+ if not params_added:
+ kw_args["params"] = converted_params
+
async def handle_request(self, message: JsonRPCRequest) -> None:
try:
e = self.registry.get_entry(message.method)
@@ -786,6 +875,9 @@ def _received_request_done(self, message: JsonRPCRequest, t: asyncio.Future[Any]
ex = t.exception()
if ex is not None:
self.__logger.exception(ex, exc_info=ex)
+ if isinstance(ex, JsonRPCErrorException):
+ raise ex
+
raise JsonRPCErrorException(
JsonRPCErrors.INTERNAL_ERROR,
f"{type(ex).__name__}: {ex}",
@@ -804,7 +896,7 @@ def _received_request_done(self, message: JsonRPCRequest, t: asyncio.Future[Any]
except JsonRPCErrorException as e:
self.send_error(
e.code,
- e.message or f"{type(e).__name__}: {e}",
+ e.message or f"{e}",
id=message.id,
data=e.data,
)
@@ -812,7 +904,7 @@ def _received_request_done(self, message: JsonRPCRequest, t: asyncio.Future[Any]
self.__logger.exception(e)
self.send_error(
JsonRPCErrors.INTERNAL_ERROR,
- f"{type(e).__name__}: {e}",
+ f"{e}",
id=message.id,
)
@@ -856,7 +948,14 @@ async def handle_notification(self, message: JsonRPCNotification) -> None:
pass
except (SystemExit, KeyboardInterrupt):
raise
+ except JsonRPCErrorException:
+ # Specific RPC errors should be re-raised
+ raise
+ except (ValueError, TypeError) as e:
+ # Parameter validation errors
+ self.__logger.warning(lambda: f"Parameter validation failed for {message.method}: {e}", exc_info=e)
except BaseException as e:
+ # Unexpected errors
self.__logger.exception(e)
diff --git a/packages/jsonrpc2/src/robotcode/jsonrpc2/server.py b/packages/jsonrpc2/src/robotcode/jsonrpc2/server.py
index 497a926ec..ad2f07231 100644
--- a/packages/jsonrpc2/src/robotcode/jsonrpc2/server.py
+++ b/packages/jsonrpc2/src/robotcode/jsonrpc2/server.py
@@ -6,6 +6,7 @@
from concurrent.futures import ThreadPoolExecutor
from types import TracebackType
from typing import (
+ Any,
BinaryIO,
Callable,
Coroutine,
@@ -44,7 +45,7 @@ def close(self) -> None:
self.rfile.close()
self.wfile.close()
- def write(self, data: bytes) -> None:
+ def write(self, data: "bytes | bytearray | memoryview[Any]") -> None:
self.wfile.write(data)
self.wfile.flush()
@@ -197,7 +198,6 @@ def run() -> None:
stop_event.wait(0.01)
with ThreadPoolExecutor(max_workers=1, thread_name_prefix="aio_readline") as stdio_executor:
- self._stdio_threadpool = stdio_executor
await asyncio.wrap_future(stdio_executor.submit(run))
self.loop.run_until_complete(aio_readline(transport.rfile, protocol))
diff --git a/packages/language_server/pyproject.toml b/packages/language_server/pyproject.toml
index 68d029dea..acba0e5ae 100644
--- a/packages/language_server/pyproject.toml
+++ b/packages/language_server/pyproject.toml
@@ -27,10 +27,10 @@ classifiers = [
]
dependencies = [
"robotframework>=4.1.0",
- "robotcode-jsonrpc2==1.3.0-dev.2",
- "robotcode-robot==1.3.0-dev.2",
- "robotcode-analyze==1.3.0-dev.2",
- "robotcode==1.3.0-dev.2",
+ "robotcode-jsonrpc2==1.7.0",
+ "robotcode-robot==1.7.0",
+ "robotcode-analyze==1.7.0",
+ "robotcode==1.7.0",
]
dynamic = ["version"]
diff --git a/packages/language_server/src/robotcode/language_server/__version__.py b/packages/language_server/src/robotcode/language_server/__version__.py
index 1cb3f8c2e..14d9d2f58 100644
--- a/packages/language_server/src/robotcode/language_server/__version__.py
+++ b/packages/language_server/src/robotcode/language_server/__version__.py
@@ -1 +1 @@
-__version__ = "1.3.0-dev.2"
+__version__ = "1.7.0"
diff --git a/packages/language_server/src/robotcode/language_server/common/parts/diagnostics.py b/packages/language_server/src/robotcode/language_server/common/parts/diagnostics.py
index 0e9bd0cdc..1aa56e099 100644
--- a/packages/language_server/src/robotcode/language_server/common/parts/diagnostics.py
+++ b/packages/language_server/src/robotcode/language_server/common/parts/diagnostics.py
@@ -1,7 +1,6 @@
import concurrent.futures
import functools
import itertools
-import logging
import time
import uuid
from concurrent.futures import CancelledError
@@ -361,7 +360,6 @@ def run_workspace_diagnostics(self) -> None:
with self._logger.measure_time(
lambda: f"analyzing workspace for {len(documents)} documents",
context_name="workspace_diagnostics",
- level=logging.CRITICAL,
):
self.on_workspace_diagnostics_analyze(self)
@@ -444,7 +442,6 @@ def run_workspace_diagnostics(self) -> None:
with self._logger.measure_time(
lambda: f"collect workspace diagnostic for {len(documents_to_collect)} documents",
context_name="collect_workspace_diagnostics",
- level=logging.CRITICAL,
):
breaked = False
for document in set(documents) - set(documents_to_collect):
diff --git a/packages/language_server/src/robotcode/language_server/common/parts/documents.py b/packages/language_server/src/robotcode/language_server/common/parts/documents.py
index 8989efda3..e2b7f38d5 100644
--- a/packages/language_server/src/robotcode/language_server/common/parts/documents.py
+++ b/packages/language_server/src/robotcode/language_server/common/parts/documents.py
@@ -47,10 +47,6 @@ class LanguageServerDocumentError(JsonRPCException):
pass
-class CantReadDocumentError(Exception):
- pass
-
-
class TextDocumentProtocolPart(LanguageServerProtocolPart, DocumentsManager):
__logger: Final = LoggingDescriptor()
diff --git a/packages/language_server/src/robotcode/language_server/common/parts/rename.py b/packages/language_server/src/robotcode/language_server/common/parts/rename.py
index 0cb988d6f..32f80aad4 100644
--- a/packages/language_server/src/robotcode/language_server/common/parts/rename.py
+++ b/packages/language_server/src/robotcode/language_server/common/parts/rename.py
@@ -46,12 +46,7 @@ def extend_capabilities(self, capabilities: ServerCapabilities) -> None:
)
@event
- def collect(
- sender,
- document: TextDocument,
- position: Position,
- new_name: str,
- ) -> Optional[WorkspaceEdit]: ...
+ def collect(sender, document: TextDocument, position: Position, new_name: str) -> Optional[WorkspaceEdit]: ...
@event
def collect_prepare(sender, document: TextDocument, position: Position) -> Optional[PrepareRenameResult]: ...
@@ -81,6 +76,9 @@ def _text_document_rename(
check_current_task_canceled()
if isinstance(result, BaseException):
+ if isinstance(result, CantRenameError):
+ raise JsonRPCErrorException(ErrorCodes.INVALID_PARAMS, str(result))
+
if not isinstance(result, CancelledError):
self._logger.exception(result, exc_info=result)
else:
diff --git a/packages/language_server/src/robotcode/language_server/common/parts/semantic_tokens.py b/packages/language_server/src/robotcode/language_server/common/parts/semantic_tokens.py
index 402ddddd0..09fd5555e 100644
--- a/packages/language_server/src/robotcode/language_server/common/parts/semantic_tokens.py
+++ b/packages/language_server/src/robotcode/language_server/common/parts/semantic_tokens.py
@@ -39,8 +39,8 @@ class SemanticTokensProtocolPart(LanguageServerProtocolPart):
def __init__(self, parent: "LanguageServerProtocol") -> None:
super().__init__(parent)
- self.token_types: List[Enum] = list(SemanticTokenTypes)
- self.token_modifiers: List[Enum] = list(SemanticTokenModifiers)
+ self.token_types: List[Union[SemanticTokenTypes, Enum]] = list(SemanticTokenTypes)
+ self.token_modifiers: List[Union[SemanticTokenModifiers, Enum]] = list(SemanticTokenModifiers)
self.refresh_timer_lock = threading.RLock()
self.refresh_timer: Optional[threading.Timer] = None
diff --git a/packages/language_server/src/robotcode/language_server/common/parts/workspace.py b/packages/language_server/src/robotcode/language_server/common/parts/workspace.py
index a9cc30a7a..13dc1372f 100644
--- a/packages/language_server/src/robotcode/language_server/common/parts/workspace.py
+++ b/packages/language_server/src/robotcode/language_server/common/parts/workspace.py
@@ -315,7 +315,7 @@ def get_configuration_raw(
List[Any],
)
- result = self.settings
+ result: Any = self.settings
for sub_key in str(section).split("."):
if sub_key in result:
result = result.get(sub_key, None)
diff --git a/packages/language_server/src/robotcode/language_server/common/protocol.py b/packages/language_server/src/robotcode/language_server/common/protocol.py
index c4e5f6dce..0304317f5 100644
--- a/packages/language_server/src/robotcode/language_server/common/protocol.py
+++ b/packages/language_server/src/robotcode/language_server/common/protocol.py
@@ -98,15 +98,6 @@ def emit(self, record: logging.LogRecord) -> None:
if self.trace != TraceValues.OFF:
self.protocol.log_trace(record.getMessage())
- type = self.MAPPING.get(record.levelno, None)
- if type is None:
- type = MessageType.LOG
-
- self.protocol.window_log_message(
- type=type,
- message=record.getMessage(),
- )
-
class LanguageServerProtocol(JsonRPCProtocol):
__logger = LoggingDescriptor()
diff --git a/packages/language_server/src/robotcode/language_server/robotframework/configuration.py b/packages/language_server/src/robotcode/language_server/robotframework/configuration.py
index 53412cc67..0933bb33b 100644
--- a/packages/language_server/src/robotcode/language_server/robotframework/configuration.py
+++ b/packages/language_server/src/robotcode/language_server/robotframework/configuration.py
@@ -33,6 +33,9 @@ class RoboCopConfig(ConfigBase):
enabled: bool = True
include: List[str] = field(default_factory=list)
exclude: List[str] = field(default_factory=list)
+ ignore_git_dir: bool = False
+ ignore_file_config: bool = False
+ config_file: Optional[str] = None
configurations: List[str] = field(default_factory=list)
@@ -49,7 +52,7 @@ class RoboTidyConfig(ConfigBase):
class DocumentationServerConfig(ConfigBase):
start_port: int = 3100
end_port: int = 3199
- start_on_demand: bool = True
+ start_on_demand: bool = False
@config_section("robotcode.inlayHints")
diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/document_highlight.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/document_highlight.py
index 98b4fc8ea..d0c0c221d 100644
--- a/packages/language_server/src/robotcode/language_server/robotframework/parts/document_highlight.py
+++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/document_highlight.py
@@ -1,4 +1,4 @@
-from typing import TYPE_CHECKING, Any, List, Optional, cast
+from typing import TYPE_CHECKING, Any, List, Optional
from robotcode.core.concurrent import check_current_task_canceled
from robotcode.core.language import language_id
@@ -100,12 +100,9 @@ def collect(self, sender: Any, document: TextDocument, position: Position) -> Op
ns.import_range
if ns.import_source == namespace.source
and (position.is_in_range(ns.alias_range, False) or position.is_in_range(ns.import_range, False))
- else cast(
- Optional[Range],
- next(
- (r.range for r in ns_refs if position.is_in_range(r.range, False)),
- None,
- ),
+ else next(
+ (r.range for r in ns_refs if position.is_in_range(r.range, False)),
+ None,
)
)
diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/formatting.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/formatting.py
index fe8e23345..1b8db6b37 100644
--- a/packages/language_server/src/robotcode/language_server/robotframework/parts/formatting.py
+++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/formatting.py
@@ -1,6 +1,5 @@
import io
import os
-import re
from concurrent.futures import CancelledError
from typing import TYPE_CHECKING, Any, List, Optional, cast
@@ -14,26 +13,16 @@
)
from robotcode.core.text_document import TextDocument
from robotcode.core.utils.logging import LoggingDescriptor
-from robotcode.core.utils.version import create_version_from_str
-from robotcode.robot.diagnostics.model_helper import ModelHelper
from robotcode.robot.utils import get_robot_version
-from ..configuration import RoboTidyConfig
+from ..configuration import RoboCopConfig, RoboTidyConfig
from .protocol_part import RobotLanguageServerProtocolPart
if TYPE_CHECKING:
from ..protocol import RobotLanguageServerProtocol
-def robotidy_installed() -> bool:
- try:
- __import__("robotidy")
- except ImportError:
- return False
- return True
-
-
-class RobotFormattingProtocolPart(RobotLanguageServerProtocolPart, ModelHelper):
+class RobotFormattingProtocolPart(RobotLanguageServerProtocolPart):
_logger = LoggingDescriptor()
def __init__(self, parent: "RobotLanguageServerProtocol") -> None:
@@ -41,7 +30,9 @@ def __init__(self, parent: "RobotLanguageServerProtocol") -> None:
parent.formatting.format.add(self.format)
- if robotidy_installed():
+ if self.parent.robocop_helper.robotidy_installed or (
+ self.parent.robocop_helper.robocop_installed and self.parent.robocop_helper.robocop_version >= (6, 0)
+ ):
parent.formatting.format_range.add(self.format_range)
self.space_count = 4
@@ -49,14 +40,22 @@ def __init__(self, parent: "RobotLanguageServerProtocol") -> None:
self.line_separator = os.linesep
self.short_test_name_length = 18
self.setting_and_variable_name_length = 14
+ self.is_robocop_notification_shown = False
- def get_config(self, document: TextDocument) -> RoboTidyConfig:
+ def get_tidy_config(self, document: TextDocument) -> RoboTidyConfig:
folder = self.parent.workspace.get_workspace_folder(document.uri)
if folder is None:
return RoboTidyConfig()
return self.parent.workspace.get_configuration(RoboTidyConfig, folder.uri)
+ def get_robocop_config(self, document: TextDocument) -> RoboCopConfig:
+ folder = self.parent.workspace.get_workspace_folder(document.uri)
+ if folder is None:
+ return RoboCopConfig()
+
+ return self.parent.workspace.get_configuration(RoboCopConfig, folder.uri)
+
@language_id("robotframework")
@_logger.call
def format(
@@ -66,23 +65,33 @@ def format(
options: FormattingOptions,
**further_options: Any,
) -> Optional[List[TextEdit]]:
- config = self.get_config(document)
+ if self.parent.robocop_helper.robocop_installed and self.parent.robocop_helper.robocop_version >= (6, 0):
+ if not self.is_robocop_notification_shown and self.parent.robocop_helper.robotidy_installed:
+ self.parent.window.show_message(
+ "`robotframework-robocop >= 6.0` is installed and will be used for formatting.\n\n"
+ "`robotframework-tidy` is also detected in the workspace, but its use is redundant.\n"
+ "Robocop fully supports all formatting tasks and provides a more comprehensive solution.\n\n"
+ "Note: The use of `robotframework-tidy` is deprecated and should be avoided in favor of Robocop.",
+ MessageType.INFO,
+ )
+ self.is_robocop_notification_shown = True
- if (config.enabled or get_robot_version() >= (5, 0)) and robotidy_installed():
- return self.format_robot_tidy(document, options, config=config, **further_options)
+ return self.format_robocop(document, options, **further_options)
+
+ tidy_config = self.get_tidy_config(document)
+ if (tidy_config.enabled or get_robot_version() >= (5, 0)) and self.parent.robocop_helper.robotidy_installed:
+ return self.format_robot_tidy(document, options, config=tidy_config, **further_options)
if get_robot_version() < (5, 0):
return self.format_internal(document, options, **further_options)
self.parent.window.show_message(
- "RobotFramework formatter is not available, please install 'robotframework-tidy'.",
+ "RobotFramework formatter is not available, please install 'robotframework-robocop'.",
MessageType.ERROR,
)
return None
- RE_LINEBREAKS = re.compile(r"\r\n|\r|\n")
-
def format_robot_tidy(
self,
document: TextDocument,
@@ -91,28 +100,24 @@ def format_robot_tidy(
config: Optional[RoboTidyConfig] = None,
**further_options: Any,
) -> Optional[List[TextEdit]]:
- from robotidy.version import __version__
-
try:
if config is None:
- config = self.get_config(document)
-
- robotidy_version = create_version_from_str(__version__)
+ config = self.get_tidy_config(document)
model = self.parent.documents_cache.get_model(document, False)
- if robotidy_version >= (3, 0):
+ if self.parent.robocop_helper.robotidy_version >= (3, 0):
from robotidy.api import get_robotidy
from robotidy.disablers import RegisterDisablers
- if robotidy_version >= (4, 2):
+ if self.parent.robocop_helper.robotidy_version >= (4, 2):
robot_tidy = get_robotidy(
document.uri.to_path(),
None,
ignore_git_dir=config.ignore_git_dir,
config=config.config,
)
- elif robotidy_version >= (4, 1):
+ elif self.parent.robocop_helper.robotidy_version >= (4, 1):
robot_tidy = get_robotidy(
document.uri.to_path(),
None,
@@ -131,14 +136,14 @@ def format_robot_tidy(
)
disabler_finder.visit(model)
- if robotidy_version >= (4, 11):
+ if self.parent.robocop_helper.robotidy_version >= (4, 11):
if disabler_finder.is_disabled_in_file():
return None
else:
if disabler_finder.file_disabled:
return None
- if robotidy_version >= (4, 0):
+ if self.parent.robocop_helper.robotidy_version >= (4, 0):
_, _, new, _ = robot_tidy.transform_until_stable(model, disabler_finder)
else:
_, _, new = robot_tidy.transform(model, disabler_finder.disablers)
@@ -152,7 +157,7 @@ def format_robot_tidy(
robot_tidy.formatting_config.start_line = range.start.line + 1
robot_tidy.formatting_config.end_line = range.end.line + 1
- if robotidy_version >= (2, 2):
+ if self.parent.robocop_helper.robotidy_version >= (2, 2):
from robotidy.disablers import RegisterDisablers
disabler_finder = RegisterDisablers(
@@ -186,6 +191,46 @@ def format_robot_tidy(
self.parent.window.show_message(f"Executing `robotidy` failed: {e}", MessageType.ERROR)
return None
+ def format_robocop(
+ self,
+ document: TextDocument,
+ options: FormattingOptions,
+ range: Optional[Range] = None,
+ **further_options: Any,
+ ) -> Optional[List[TextEdit]]:
+ from robocop.formatter.runner import RobocopFormatter
+
+ workspace_folder = self.parent.workspace.get_workspace_folder(document.uri)
+ if workspace_folder is None:
+ return None
+
+ config_manager = self.parent.robocop_helper.get_config_manager(workspace_folder)
+
+ config = config_manager.get_config_for_source_file(document.uri.to_path())
+
+ if range is not None:
+ config.formatter.start_line = range.start.line + 1
+ config.formatter.end_line = range.end.line + 1
+
+ runner = RobocopFormatter(config_manager)
+ runner.config = config
+
+ model = self.parent.documents_cache.get_model(document, False)
+ _, _, new, _ = runner.format_until_stable(model)
+
+ if new.text == document.text():
+ return None
+
+ return [
+ TextEdit(
+ range=Range(
+ start=Position(line=0, character=0),
+ end=Position(line=len(document.get_lines()), character=0),
+ ),
+ new_text=new.text,
+ )
+ ]
+
def format_internal(
self,
document: TextDocument,
@@ -233,8 +278,10 @@ def format_range(
options: FormattingOptions,
**further_options: Any,
) -> Optional[List[TextEdit]]:
- config = self.get_config(document)
- if config.enabled and robotidy_installed():
+ config = self.get_tidy_config(document)
+ if (config.enabled and self.parent.robocop_helper.robotidy_installed) or (
+ self.parent.robocop_helper.robocop_installed and self.parent.robocop_helper.robocop_version >= (6, 0)
+ ):
return self.format_robot_tidy(document, options, range=range, config=config, **further_options)
return None
diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/goto.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/goto.py
index 87c818bc0..6970c2cc2 100644
--- a/packages/language_server/src/robotcode/language_server/robotframework/parts/goto.py
+++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/goto.py
@@ -1,10 +1,10 @@
from __future__ import annotations
-from typing import TYPE_CHECKING, Any, List, Optional, Union, cast
+from typing import TYPE_CHECKING, Any, List, Union
from robotcode.core.concurrent import check_current_task_canceled
from robotcode.core.language import language_id
-from robotcode.core.lsp.types import Location, LocationLink, Position, Range
+from robotcode.core.lsp.types import Location, LocationLink, Position
from robotcode.core.text_document import TextDocument
from robotcode.core.uri import Uri
from robotcode.core.utils.logging import LoggingDescriptor
@@ -55,12 +55,9 @@ def collect(
found_range = (
variable.name_range
if variable.source == namespace.source and position.is_in_range(variable.name_range, False)
- else cast(
- Optional[Range],
- next(
- (r.range for r in var_refs if position.is_in_range(r.range)),
- None,
- ),
+ else next(
+ (r.range for r in var_refs if position.is_in_range(r.range)),
+ None,
)
)
@@ -90,12 +87,9 @@ def collect(
found_range = (
kw.name_range
if kw.source == namespace.source and position.is_in_range(kw.name_range, False)
- else cast(
- Optional[Range],
- next(
- (r.range for r in kw_refs if position.is_in_range(r.range, False)),
- None,
- ),
+ else next(
+ (r.range for r in kw_refs if position.is_in_range(r.range, False)),
+ None,
)
)
diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/hover.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/hover.py
index 3d640ddb8..b08f66254 100644
--- a/packages/language_server/src/robotcode/language_server/robotframework/parts/hover.py
+++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/hover.py
@@ -73,7 +73,7 @@ def _find_method(self, cls: Type[Any]) -> Optional[_HoverMethod]:
for base in cls.__bases__:
method = self._find_method(base)
if method:
- return cast(_HoverMethod, method)
+ return method
return None
@@ -116,12 +116,9 @@ def _hover_default(self, nodes: List[ast.AST], document: TextDocument, position:
found_range = (
variable.name_range
if variable.source == namespace.source and position.is_in_range(variable.name_range, False)
- else cast(
- Optional[Range],
- next(
- (r.range for r in var_refs if position.is_in_range(r.range)),
- None,
- ),
+ else next(
+ (r.range for r in var_refs if position.is_in_range(r.range)),
+ None,
)
)
value = None
@@ -163,7 +160,7 @@ def _hover_default(self, nodes: List[ast.AST], document: TextDocument, position:
else:
value = ""
- text = f"### {variable.type.value.title()} `{variable.name}`\n\n"
+ text = f"### {variable.type.value.title()} `{variable.convertable_name}`\n\n"
if value:
text += "```python\n"
@@ -187,12 +184,9 @@ def _hover_default(self, nodes: List[ast.AST], document: TextDocument, position:
found_range = (
kw.name_range
if kw.source == namespace.source and position.is_in_range(kw.name_range, False)
- else cast(
- Optional[Range],
- next(
- (r.range for r in kw_refs if position.is_in_range(r.range, False)),
- None,
- ),
+ else next(
+ (r.range for r in kw_refs if position.is_in_range(r.range, False)),
+ None,
)
)
@@ -231,12 +225,9 @@ def _hover_default(self, nodes: List[ast.AST], document: TextDocument, position:
else (
ns.alias_range
if ns.import_source == namespace.source and position.is_in_range(ns.alias_range, False)
- else cast(
- Optional[Range],
- next(
- (r.range for r in ns_refs if position.is_in_range(r.range, False)),
- None,
- ),
+ else next(
+ (r.range for r in ns_refs if position.is_in_range(r.range, False)),
+ None,
)
)
)
diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/http_server.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/http_server.py
index afd9e078f..a037b59d8 100644
--- a/packages/language_server/src/robotcode/language_server/robotframework/parts/http_server.py
+++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/http_server.py
@@ -89,7 +89,7 @@ def list_directory(self, _path: Union[str, "PathLike[str]"]) -> Optional[io.Byte
)
return None
- def do_GET(self) -> None: # noqa: N802
+ def do_GET(self) -> None:
query = parse_qs(urlparse(self.path).query)
name = n[0] if (n := query.get("name", [])) else None
args = n[0] if (n := query.get("args", [])) else None
diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/inlay_hint.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/inlay_hint.py
index 0850edbd2..8c01d0b90 100644
--- a/packages/language_server/src/robotcode/language_server/robotframework/parts/inlay_hint.py
+++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/inlay_hint.py
@@ -61,7 +61,7 @@ def _find_method(self, cls: Type[Any]) -> Optional[_HandlerMethod]:
for base in cls.__bases__:
method = self._find_method(base)
if method:
- return cast(_HandlerMethod, method)
+ return method
return None
diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/keywords_treeview.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/keywords_treeview.py
index d4a53f36a..0e8be8f4b 100644
--- a/packages/language_server/src/robotcode/language_server/robotframework/parts/keywords_treeview.py
+++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/keywords_treeview.py
@@ -2,6 +2,7 @@
from typing import TYPE_CHECKING, Any, List, Optional
from robotcode.core.lsp.types import TextDocumentIdentifier
+from robotcode.core.uri import Uri
from robotcode.core.utils.dataclasses import CamelSnakeMixin
from robotcode.core.utils.logging import LoggingDescriptor
from robotcode.jsonrpc2.protocol import rpc_method
@@ -16,6 +17,26 @@
@dataclass(repr=False)
class GetDocumentImportsParams(CamelSnakeMixin):
text_document: TextDocumentIdentifier
+ no_documentation: Optional[bool] = None
+
+
+@dataclass(repr=False)
+class GetDocumentKeywordsParams(CamelSnakeMixin):
+ text_document: TextDocumentIdentifier
+ no_documentation: Optional[bool] = None
+
+
+@dataclass(repr=False)
+class GetLibraryDocumentationParams(CamelSnakeMixin):
+ workspace_folder_uri: str
+ library_name: str
+
+
+@dataclass(repr=False)
+class GetKeywordDocumentationParams(CamelSnakeMixin):
+ workspace_folder_uri: str
+ library_name: str
+ keyword_name: str
@dataclass(repr=False)
@@ -26,6 +47,14 @@ class Keyword(CamelSnakeMixin):
documentation: Optional[str] = None
+@dataclass(repr=False)
+class LibraryDocumentation(CamelSnakeMixin):
+ name: str
+ documentation: Optional[str] = None
+ keywords: Optional[List[Keyword]] = None
+ initializers: Optional[List[Keyword]] = None
+
+
@dataclass(repr=False)
class DocumentImport(CamelSnakeMixin):
name: str
@@ -54,6 +83,7 @@ def __init__(self, parent: "RobotLanguageServerProtocol") -> None:
def _get_document_imports(
self,
text_document: TextDocumentIdentifier,
+ no_documentation: Optional[bool] = None,
*args: Any,
**kwargs: Any,
) -> Optional[List[DocumentImport]]:
@@ -72,16 +102,18 @@ def _get_document_imports(
alias=v.alias,
id=str(hash(v)),
type="library",
- documentation=v.library_doc.to_markdown(add_signature=False),
+ documentation=v.library_doc.to_markdown(add_signature=False) if not no_documentation else None,
keywords=[
Keyword(
l.name,
str(hash(l)),
l.parameter_signature(),
- l.to_markdown(add_signature=False),
+ l.to_markdown(add_signature=False) if not no_documentation else None,
)
for l in v.library_doc.keywords.values()
- ],
+ ]
+ if not no_documentation
+ else None,
)
)
for _k, v in namespace.get_resources().items():
@@ -91,21 +123,29 @@ def _get_document_imports(
alias=None,
id=str(hash(v)),
type="resource",
- documentation=v.library_doc.to_markdown(add_signature=False),
+ documentation=v.library_doc.to_markdown(add_signature=False) if not no_documentation else None,
keywords=[
- Keyword(l.name, str(hash(l)), l.parameter_signature(), l.to_markdown(add_signature=False))
+ Keyword(
+ l.name,
+ str(hash(l)),
+ l.parameter_signature(),
+ l.to_markdown(add_signature=False) if not no_documentation else None,
+ )
for l in v.library_doc.keywords.values()
- ],
+ ]
+ if not no_documentation
+ else None,
)
)
return result
- @rpc_method(name="robot/keywordsview/getDocumentKeywords", param_type=GetDocumentImportsParams, threaded=True)
+ @rpc_method(name="robot/keywordsview/getDocumentKeywords", param_type=GetDocumentKeywordsParams, threaded=True)
@_logger.call
def _get_document_keywords(
self,
text_document: TextDocumentIdentifier,
+ no_documentation: Optional[bool] = None,
*args: Any,
**kwargs: Any,
) -> Optional[List[Keyword]]:
@@ -116,7 +156,12 @@ def _get_document_keywords(
namespace = self.parent.documents_cache.get_namespace(document)
return [
- Keyword(l.name, str(hash(l)), l.parameter_signature(), l.to_markdown(add_signature=False))
+ Keyword(
+ l.name,
+ str(hash(l)),
+ l.parameter_signature(),
+ l.to_markdown(add_signature=False) if not no_documentation else None,
+ )
for l in namespace.get_library_doc().keywords.values()
]
@@ -165,3 +210,72 @@ def _get_documentation_url(
)
return None
+
+ @rpc_method(
+ name="robot/keywordsview/getLibraryDocumentation", param_type=GetLibraryDocumentationParams, threaded=True
+ )
+ @_logger.call
+ def _get_library_documentation(
+ self,
+ workspace_folder_uri: str,
+ library_name: str,
+ *args: Any,
+ **kwargs: Any,
+ ) -> Optional[LibraryDocumentation]:
+ imports_manager = self.parent.documents_cache.get_imports_manager_for_uri(Uri(workspace_folder_uri))
+
+ libdoc = imports_manager.get_libdoc_for_library_import(library_name, (), ".")
+ if libdoc.errors:
+ raise ValueError(f"Errors while loading library documentation: {libdoc.errors}")
+
+ return LibraryDocumentation(
+ name=libdoc.name,
+ documentation=libdoc.to_markdown(),
+ keywords=[
+ Keyword(
+ l.name,
+ str(hash(l)),
+ l.parameter_signature(),
+ l.to_markdown(),
+ )
+ for l in libdoc.keywords.values()
+ ],
+ initializers=[
+ Keyword(
+ s.name,
+ str(hash(s)),
+ s.parameter_signature(),
+ s.to_markdown(),
+ )
+ for s in libdoc.inits.values()
+ ],
+ )
+
+ @rpc_method(
+ name="robot/keywordsview/getKeywordDocumentation", param_type=GetKeywordDocumentationParams, threaded=True
+ )
+ @_logger.call
+ def _get_keyword_documentation(
+ self,
+ workspace_folder_uri: str,
+ library_name: str,
+ keyword_name: str,
+ *args: Any,
+ **kwargs: Any,
+ ) -> Optional[Keyword]:
+ imports_manager = self.parent.documents_cache.get_imports_manager_for_uri(Uri(workspace_folder_uri))
+
+ libdoc = imports_manager.get_libdoc_for_library_import(library_name, (), ".")
+ if libdoc.errors:
+ raise ValueError(f"Errors while loading library documentation: {libdoc.errors}")
+
+ kw = libdoc.keywords.get(keyword_name, None)
+ if kw is None:
+ raise ValueError(f"Keyword '{keyword_name}' not found in library '{library_name}'.")
+
+ return Keyword(
+ name=kw.name,
+ id=str(hash(kw)),
+ signature=kw.parameter_signature(),
+ documentation=kw.to_markdown(),
+ )
diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/project_info.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/project_info.py
index 45d403bc1..b09328085 100644
--- a/packages/language_server/src/robotcode/language_server/robotframework/parts/project_info.py
+++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/project_info.py
@@ -1,3 +1,4 @@
+import sys
from dataclasses import dataclass
from typing import TYPE_CHECKING, Any, Optional
@@ -7,9 +8,8 @@
from robotcode.core.utils.logging import LoggingDescriptor
from robotcode.jsonrpc2.protocol import rpc_method
-from .formatting import robotidy_installed
+from ...__version__ import __version__ as robotcode_version
from .protocol_part import RobotLanguageServerProtocolPart
-from .robocop_diagnostics import robocop_installed
if TYPE_CHECKING:
from ..protocol import RobotLanguageServerProtocol
@@ -20,6 +20,9 @@ class ProjectInfo(CamelSnakeMixin):
robot_version_string: str
robocop_version_string: Optional[str]
tidy_version_string: Optional[str] = None
+ python_version_string: Optional[str] = None
+ python_executable: Optional[str] = None
+ robot_code_version_string: Optional[str] = None
class ProjectInfoPart(RobotLanguageServerProtocolPart):
@@ -36,27 +39,18 @@ def _robot_project_info(
**kwargs: Any,
) -> ProjectInfo:
robocop_version_string = None
- if robocop_installed():
- try:
- from robocop.version import __version__
-
- robocop_version_string = __version__
- except ImportError:
- try:
- from robocop import __version__
-
- robocop_version_string = __version__
- except ImportError:
- pass
+ if self.parent.robocop_helper.robocop_installed:
+ robocop_version_string = self.parent.robocop_helper.robocop_version_str
tidy_version_string = None
- if robotidy_installed():
- from robotidy.version import __version__
-
- tidy_version_string = __version__
+ if self.parent.robocop_helper.robotidy_installed:
+ tidy_version_string = self.parent.robocop_helper.robotidy_version_str
return ProjectInfo(
robot_version_string=get_version(),
robocop_version_string=robocop_version_string,
tidy_version_string=tidy_version_string,
+ python_version_string=sys.version,
+ python_executable=sys.executable,
+ robot_code_version_string=robotcode_version,
)
diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/references.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/references.py
index 6320847ee..3486781dc 100644
--- a/packages/language_server/src/robotcode/language_server/robotframework/parts/references.py
+++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/references.py
@@ -113,7 +113,7 @@ def _find_method(self, cls: Type[Any]) -> Optional[_ReferencesMethod]:
for base in cls.__bases__:
method = self._find_method(base)
if method:
- return cast(_ReferencesMethod, method)
+ return method
return None
@language_id("robotframework")
diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/rename.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/rename.py
index 726642b84..0f37128d4 100644
--- a/packages/language_server/src/robotcode/language_server/robotframework/parts/rename.py
+++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/rename.py
@@ -6,15 +6,11 @@
List,
Optional,
Tuple,
- Type,
TypeVar,
Union,
- cast,
)
-from robot.parsing.lexer.tokens import Token
-from robot.parsing.model.statements import Statement
-
+from robotcode.core.concurrent import check_current_task_canceled
from robotcode.core.language import language_id
from robotcode.core.lsp.types import (
AnnotatedTextEdit,
@@ -25,6 +21,7 @@
Position,
PrepareRenameResult,
PrepareRenameResultType1,
+ Range,
RenameFile,
TextDocumentEdit,
WorkspaceEdit,
@@ -37,11 +34,6 @@
)
from robotcode.robot.diagnostics.library_doc import KeywordDoc
from robotcode.robot.diagnostics.model_helper import ModelHelper
-from robotcode.robot.utils.ast import (
- get_nodes_at_position,
- get_tokens_at_position,
- range_from_token,
-)
from ...common.parts.rename import CantRenameError
from .protocol_part import RobotLanguageServerProtocolPart
@@ -65,84 +57,38 @@ def __init__(self, parent: "RobotLanguageServerProtocol") -> None:
parent.rename.collect.add(self.collect)
parent.rename.collect_prepare.add(self.collect_prepare)
- def _find_method(self, cls: Type[Any], prefix: str) -> Optional[_T]:
- if cls is ast.AST:
- return None
- method_name = prefix + "_" + cls.__name__
- if hasattr(self, method_name):
- method = getattr(self, method_name)
- if callable(method):
- return cast(_T, method)
- for base in cls.__bases__:
- method = self._find_method(base, prefix)
- if method:
- return cast(_T, method)
- return None
-
@language_id("robotframework")
@_logger.call
def collect(
- self,
- sender: Any,
- document: TextDocument,
- position: Position,
- new_name: str,
+ self, sender: Any, document: TextDocument, position: Position, new_name: str
) -> Optional[WorkspaceEdit]:
- result_nodes = get_nodes_at_position(
- self.parent.documents_cache.get_model(document),
- position,
- include_end=True,
- )
-
- if not result_nodes:
- return None
-
- result_node = result_nodes[-1]
-
- result = self._rename_default(result_nodes, document, position, new_name)
+ result = self._rename_variable(document, position, new_name)
if result:
return result
- method: Optional[_RenameMethod] = self._find_method(type(result_node), "rename")
- if method is not None:
- result = method(result_node, document, position, new_name)
- if result is not None:
- return result
+ result = self._rename_keyword(document, position, new_name)
+ if result:
+ return result
return None
@language_id("robotframework")
@_logger.call
def collect_prepare(self, sender: Any, document: TextDocument, position: Position) -> Optional[PrepareRenameResult]:
- result_nodes = get_nodes_at_position(
- self.parent.documents_cache.get_model(document),
- position,
- include_end=True,
- )
-
- if not result_nodes:
- return None
-
- result_node = result_nodes[-1]
-
- result = self._prepare_rename_default(result_nodes, document, position)
+ result = self._prepare_rename_variable(document, position)
if result:
return result
- method: Optional[_PrepareRenameMethod] = self._find_method(type(result_node), "prepare_rename")
- if method is not None:
- result = method(result_node, document, position)
- if result is not None:
- return result
+ result = self._prepare_rename_keyword(document, position)
+ if result:
+ return result
return None
- def _prepare_rename_default(
- self, nodes: List[ast.AST], document: TextDocument, position: Position
- ) -> Optional[PrepareRenameResult]:
- result = self._find_default(nodes, document, position)
+ def _prepare_rename_variable(self, document: TextDocument, position: Position) -> Optional[PrepareRenameResult]:
+ result = self._find_variable_definition_on_pos(document, position)
if result is not None:
- var, token = result
+ var, found_range = result
if var.type == VariableDefinitionType.BUILTIN_VARIABLE:
self.parent.window.show_message("You cannot rename a builtin variable, only references are renamed.")
@@ -158,24 +104,23 @@ def _prepare_rename_default(
"Only references are renamed and you have to rename the variable definition yourself."
)
elif var.type == VariableDefinitionType.ENVIRONMENT_VARIABLE:
- token.value, _, _ = token.value.partition("=")
self.parent.window.show_message(
"You are about to rename an environment variable. "
"Only references are renamed and you have to rename the variable definition yourself."
)
- return PrepareRenameResultType1(range_from_token(token), token.value)
+ return PrepareRenameResultType1(found_range, document.get_text(found_range))
return None
- def _rename_default(
- self,
- nodes: List[ast.AST],
- document: TextDocument,
- position: Position,
- new_name: str,
- ) -> Optional[WorkspaceEdit]:
- result = self._find_default(nodes, document, position)
+ def _rename_variable(self, document: TextDocument, position: Position, new_name: str) -> Optional[WorkspaceEdit]:
+ if " " in new_name or "\t" in new_name:
+ raise CantRenameError(
+ "Variable names cannot contain more then one spaces or tabs. "
+ "Please use only one space or underscores instead.",
+ )
+
+ result = self._find_variable_definition_on_pos(document, position)
if result is not None:
var, _ = result
@@ -207,55 +152,33 @@ def _rename_default(
return None
- def _find_default(
- self, nodes: List[ast.AST], document: TextDocument, position: Position
- ) -> Optional[Tuple[VariableDefinition, Token]]:
- from robot.parsing.lexer.tokens import Token as RobotToken
-
+ def _find_variable_definition_on_pos(
+ self, document: TextDocument, position: Position
+ ) -> Optional[Tuple[VariableDefinition, Range]]:
namespace = self.parent.documents_cache.get_namespace(document)
- if not nodes:
- return None
-
- node = nodes[-1]
-
- if not isinstance(node, Statement):
- return None
-
- tokens = get_tokens_at_position(node, position)
-
- token_and_var: Optional[Tuple[VariableDefinition, Token]] = None
-
- for token in tokens:
- token_and_var = next(
- (
- (var, var_token)
- for var_token, var in self.iter_variables_from_token(token, namespace, nodes, position)
- if position in range_from_token(var_token)
- ),
- None,
- )
-
- if (
- token_and_var is None
- and isinstance(node, self.get_expression_statement_types())
- and (token := node.get_token(RobotToken.ARGUMENT)) is not None
- and position in range_from_token(token)
- ):
- token_and_var = next(
- (
- (var, var_token)
- for var_token, var in self.iter_expression_variables_from_token(token, namespace, nodes, position)
- if position in range_from_token(var_token)
- ),
- None,
- )
+ all_variable_refs = namespace.get_variable_references()
+ if all_variable_refs:
+ for variable, var_refs in all_variable_refs.items():
+ check_current_task_canceled()
+
+ found_range = (
+ variable.name_range
+ if variable.source == namespace.source and position.is_in_range(variable.name_range, False)
+ else next(
+ (r.range for r in var_refs if position.is_in_range(r.range)),
+ None,
+ )
+ )
- return token_and_var
+ if found_range is not None:
+ return variable, found_range
+ return None
- def _prepare_rename_keyword(self, result: Optional[Tuple[KeywordDoc, Token]]) -> Optional[PrepareRenameResult]:
+ def _prepare_rename_keyword(self, document: TextDocument, position: Position) -> Optional[PrepareRenameResult]:
+ result = self._find_keyword_definition_on_pos(document, position)
if result is not None:
- kw_doc, token = result
+ kw_doc, found_range = result
if kw_doc.is_embedded:
raise CantRenameError("Renaming of keywords with embedded parameters is not supported.")
@@ -266,21 +189,25 @@ def _prepare_rename_keyword(self, result: Optional[Tuple[KeywordDoc, Token]]) ->
"Only references are renamed and you have to rename the keyword definition yourself."
)
- return PrepareRenameResultType1(range_from_token(token), token.value)
+ return PrepareRenameResultType1(found_range, document.get_text(found_range))
return None
- def _rename_keyword(
- self,
- document: TextDocument,
- new_name: str,
- result: Optional[Tuple[KeywordDoc, Token]],
- ) -> Optional[WorkspaceEdit]:
+ def _rename_keyword(self, document: TextDocument, position: Position, new_name: str) -> Optional[WorkspaceEdit]:
+ if " " in new_name or "\t" in new_name:
+ raise CantRenameError(
+ "Keyword names cannot contain more then one spaces or tabs. "
+ "Please use only one space or underscores instead.",
+ )
+
+ result = self._find_keyword_definition_on_pos(document, position)
if result is not None:
kw_doc, _ = result
references = self.parent.robot_references.find_keyword_references(
- document, kw_doc, include_declaration=kw_doc.is_resource_keyword
+ document,
+ kw_doc,
+ include_declaration=kw_doc.is_resource_keyword,
)
changes: List[Union[TextDocumentEdit, CreateFile, RenameFile, DeleteFile]] = []
@@ -299,395 +226,28 @@ def _rename_keyword(
return None
- def prepare_rename_KeywordCall( # noqa: N802
- self, node: ast.AST, document: TextDocument, position: Position
- ) -> Optional[PrepareRenameResult]:
- return self._prepare_rename_keyword(self._find_KeywordCall(node, document, position))
-
- def rename_KeywordCall( # noqa: N802
- self,
- node: ast.AST,
- document: TextDocument,
- position: Position,
- new_name: str,
- ) -> Optional[WorkspaceEdit]:
- return self._rename_keyword(document, new_name, self._find_KeywordCall(node, document, position))
-
- def _find_KeywordCall( # noqa: N802
- self, node: ast.AST, document: TextDocument, position: Position
- ) -> Optional[Tuple[KeywordDoc, Token]]:
- from robot.parsing.lexer.tokens import Token as RobotToken
- from robot.parsing.model.statements import KeywordCall
-
- namespace = self.parent.documents_cache.get_namespace(document)
-
- kw_node = cast(KeywordCall, node)
- result = self.get_keyworddoc_and_token_from_position(
- kw_node.keyword,
- cast(Token, kw_node.get_token(RobotToken.KEYWORD)),
- [cast(Token, t) for t in kw_node.get_tokens(RobotToken.ARGUMENT)],
- namespace,
- position,
- )
-
- if result is not None:
- keyword_doc, keyword_token = result
-
- if (
- namespace.find_keyword(
- keyword_token.value,
- raise_keyword_error=False,
- handle_bdd_style=False,
- )
- is None
- ):
- keyword_token = self.strip_bdd_prefix(namespace, keyword_token)
-
- (
- lib_entry,
- kw_namespace,
- ) = self.get_namespace_info_from_keyword_token(namespace, keyword_token)
-
- kw_range = range_from_token(keyword_token)
-
- if lib_entry and kw_namespace:
- r = range_from_token(keyword_token)
- r.end.character = r.start.character + len(kw_namespace)
- kw_range.start.character = r.end.character + 1
- if position in r:
- # TODO namespaces
- return None
- if (
- position in kw_range
- and keyword_doc is not None
- and not keyword_doc.is_error_handler
- and keyword_doc.source
- ):
- return (
- keyword_doc,
- (
- RobotToken(
- keyword_token.type,
- keyword_token.value[len(kw_namespace) + 1 :],
- keyword_token.lineno,
- keyword_token.col_offset + len(kw_namespace) + 1,
- keyword_token.error,
- )
- if lib_entry and kw_namespace
- else keyword_token
- ),
- )
-
- return None
-
- def prepare_rename_KeywordName( # noqa: N802
- self, node: ast.AST, document: TextDocument, position: Position
- ) -> Optional[PrepareRenameResult]:
- return self._prepare_rename_keyword(self._find_KeywordName(node, document, position))
-
- def rename_KeywordName( # noqa: N802
- self,
- node: ast.AST,
- document: TextDocument,
- position: Position,
- new_name: str,
- ) -> Optional[WorkspaceEdit]:
- return self._rename_keyword(document, new_name, self._find_KeywordName(node, document, position))
-
- def _find_KeywordName( # noqa: N802
- self, node: ast.AST, document: TextDocument, position: Position
- ) -> Optional[Tuple[KeywordDoc, Token]]:
- from robot.parsing.lexer.tokens import Token as RobotToken
- from robot.parsing.model.statements import KeywordName
-
- namespace = self.parent.documents_cache.get_namespace(document)
-
- kw_node = cast(KeywordName, node)
-
- name_token = cast(RobotToken, kw_node.get_token(RobotToken.KEYWORD_NAME))
-
- if not name_token:
- return None
-
- doc = namespace.get_library_doc()
- if doc is not None:
- keyword = next(
- (v for v in doc.keywords.keywords if v.name == name_token.value and v.line_no == kw_node.lineno),
- None,
- )
-
- if keyword is not None and keyword.source and not keyword.is_error_handler:
- return keyword, name_token
-
- return None
-
- def prepare_rename_Fixture( # noqa: N802
- self, node: ast.AST, document: TextDocument, position: Position
- ) -> Optional[PrepareRenameResult]:
- return self._prepare_rename_keyword(self._find_Fixture(node, document, position))
-
- def rename_Fixture( # noqa: N802
- self,
- node: ast.AST,
- document: TextDocument,
- position: Position,
- new_name: str,
- ) -> Optional[WorkspaceEdit]:
- return self._rename_keyword(document, new_name, self._find_Fixture(node, document, position))
-
- def _find_Fixture( # noqa: N802
- self, node: ast.AST, document: TextDocument, position: Position
- ) -> Optional[Tuple[KeywordDoc, Token]]:
- from robot.parsing.lexer.tokens import Token as RobotToken
- from robot.parsing.model.statements import Fixture
-
+ def _find_keyword_definition_on_pos(
+ self, document: TextDocument, position: Position
+ ) -> Optional[Tuple[KeywordDoc, Range]]:
namespace = self.parent.documents_cache.get_namespace(document)
- fixture_node = cast(Fixture, node)
-
- name_token = cast(Token, fixture_node.get_token(RobotToken.NAME))
- if name_token is None or name_token.value is None or name_token.value.upper() in ("", "NONE"):
- return None
-
- result = self.get_keyworddoc_and_token_from_position(
- fixture_node.name,
- name_token,
- [cast(Token, t) for t in fixture_node.get_tokens(RobotToken.ARGUMENT)],
- namespace,
- position,
- )
-
- if result is not None:
- keyword_doc, keyword_token = result
-
- if (
- namespace.find_keyword(
- keyword_token.value,
- raise_keyword_error=False,
- handle_bdd_style=False,
- )
- is None
- ):
- keyword_token = self.strip_bdd_prefix(namespace, keyword_token)
-
- (
- lib_entry,
- kw_namespace,
- ) = self.get_namespace_info_from_keyword_token(namespace, keyword_token)
-
- kw_range = range_from_token(keyword_token)
-
- if lib_entry and kw_namespace:
- r = range_from_token(keyword_token)
- r.end.character = r.start.character + len(kw_namespace)
- kw_range.start.character = r.end.character + 1
- if position in r:
- # TODO namespaces
- return None
-
- if position in kw_range and keyword_doc is not None and not keyword_doc.is_error_handler:
- return (
- keyword_doc,
- (
- RobotToken(
- keyword_token.type,
- keyword_token.value[len(kw_namespace) + 1 :],
- keyword_token.lineno,
- keyword_token.col_offset + len(kw_namespace) + 1,
- keyword_token.error,
- )
- if lib_entry and kw_namespace
- else keyword_token
- ),
- )
-
- return None
-
- def _find_Template_or_TestTemplate( # noqa: N802
- self, node: ast.AST, document: TextDocument, position: Position
- ) -> Optional[Tuple[KeywordDoc, Token]]:
- from robot.parsing.lexer.tokens import Token as RobotToken
- from robot.parsing.model.statements import Template, TestTemplate
-
- template_node = cast(Union[Template, TestTemplate], node)
- if template_node.value:
- keyword_token = cast(RobotToken, template_node.get_token(RobotToken.NAME))
- if keyword_token is None or keyword_token.value is None or keyword_token.value.upper() in ("", "NONE"):
- return None
-
- namespace = self.parent.documents_cache.get_namespace(document)
-
- if (
- namespace.find_keyword(
- keyword_token.value,
- raise_keyword_error=False,
- handle_bdd_style=False,
- )
- is None
- ):
- keyword_token = self.strip_bdd_prefix(namespace, keyword_token)
-
- if position.is_in_range(range_from_token(keyword_token), False):
- keyword_doc = namespace.find_keyword(template_node.value)
-
- if keyword_doc is not None:
- (
- lib_entry,
- kw_namespace,
- ) = self.get_namespace_info_from_keyword_token(namespace, keyword_token)
-
- kw_range = range_from_token(keyword_token)
-
- if lib_entry and kw_namespace:
- r = range_from_token(keyword_token)
- r.end.character = r.start.character + len(kw_namespace)
- kw_range.start.character = r.end.character + 1
- if position in r:
- # TODO namespaces
- return None
-
- if not keyword_doc.is_error_handler:
- return (
- keyword_doc,
- (
- RobotToken(
- keyword_token.type,
- keyword_token.value[len(kw_namespace) + 1 :],
- keyword_token.lineno,
- keyword_token.col_offset + len(kw_namespace) + 1,
- keyword_token.error,
- )
- if lib_entry and kw_namespace
- else keyword_token
- ),
- )
- return None
-
- def prepare_rename_TestTemplate( # noqa: N802
- self, node: ast.AST, document: TextDocument, position: Position
- ) -> Optional[PrepareRenameResult]:
- return self._prepare_rename_keyword(self._find_Template_or_TestTemplate(node, document, position))
-
- def rename_TestTemplate( # noqa: N802
- self,
- node: ast.AST,
- document: TextDocument,
- position: Position,
- new_name: str,
- ) -> Optional[WorkspaceEdit]:
- return self._rename_keyword(
- document,
- new_name,
- self._find_Template_or_TestTemplate(node, document, position),
- )
-
- def prepare_rename_Template( # noqa: N802
- self, node: ast.AST, document: TextDocument, position: Position
- ) -> Optional[PrepareRenameResult]:
- return self._prepare_rename_keyword(self._find_Template_or_TestTemplate(node, document, position))
-
- def rename_Template( # noqa: N802
- self,
- node: ast.AST,
- document: TextDocument,
- position: Position,
- new_name: str,
- ) -> Optional[WorkspaceEdit]:
- return self._rename_keyword(
- document,
- new_name,
- self._find_Template_or_TestTemplate(node, document, position),
- )
-
- def _prepare_rename_tags(
- self, node: ast.AST, document: TextDocument, position: Position
- ) -> Optional[PrepareRenameResult]:
- from robot.parsing.lexer.tokens import Token as RobotToken
-
- tokens = get_tokens_at_position(cast(Statement, node), position)
- if not tokens:
- return None
-
- token = tokens[-1]
-
- if token.type == RobotToken.ARGUMENT and token.value:
- return PrepareRenameResultType1(range_from_token(token), token.value)
-
- return None
-
- def prepare_rename_ForceTags( # noqa: N802
- self, node: ast.AST, document: TextDocument, position: Position
- ) -> Optional[PrepareRenameResult]:
- return self._prepare_rename_tags(node, document, position)
-
- def prepare_rename_DefaultTags( # noqa: N802
- self, node: ast.AST, document: TextDocument, position: Position
- ) -> Optional[PrepareRenameResult]:
- return self._prepare_rename_tags(node, document, position)
-
- def prepare_rename_Tags( # noqa: N802
- self, node: ast.AST, document: TextDocument, position: Position
- ) -> Optional[PrepareRenameResult]:
- return self._prepare_rename_tags(node, document, position)
-
- def _rename_tags(
- self,
- node: ast.AST,
- document: TextDocument,
- position: Position,
- new_name: str,
- ) -> Optional[WorkspaceEdit]:
- from robot.parsing.lexer.tokens import Token as RobotToken
-
- tokens = get_tokens_at_position(cast(Statement, node), position)
- if not tokens:
- return None
-
- token = tokens[-1]
-
- if token.type == RobotToken.ARGUMENT and token.value:
- references = self.parent.robot_references.find_tag_references(document, token.value)
-
- changes: List[Union[TextDocumentEdit, CreateFile, RenameFile, DeleteFile]] = []
-
- for reference in references:
- changes.append(
- TextDocumentEdit(
- OptionalVersionedTextDocumentIdentifier(reference.uri, None),
- [AnnotatedTextEdit("rename_tag", reference.range, new_name)],
+ all_refs = namespace.get_keyword_references()
+ if all_refs:
+ for keyword, kw_refs in all_refs.items():
+ check_current_task_canceled()
+
+ found_range = (
+ keyword.name_range
+ if keyword.source == namespace.source and position.is_in_range(keyword.name_range, False)
+ else next(
+ (r.range for r in kw_refs if position.is_in_range(r.range)),
+ None,
)
)
- return WorkspaceEdit(
- document_changes=changes,
- change_annotations={"rename_keyword": ChangeAnnotation("Rename Tag", False)},
- )
-
+ if found_range is not None:
+ return keyword, found_range
return None
- def rename_ForceTags( # noqa: N802
- self,
- node: ast.AST,
- document: TextDocument,
- position: Position,
- new_name: str,
- ) -> Optional[WorkspaceEdit]:
- return self._rename_tags(node, document, position, new_name)
-
- def rename_DefaultTags( # noqa: N802
- self,
- node: ast.AST,
- document: TextDocument,
- position: Position,
- new_name: str,
- ) -> Optional[WorkspaceEdit]:
- return self._rename_tags(node, document, position, new_name)
-
- def rename_Tags( # noqa: N802
- self,
- node: ast.AST,
- document: TextDocument,
- position: Position,
- new_name: str,
- ) -> Optional[WorkspaceEdit]:
- return self._rename_tags(node, document, position, new_name)
+ # TODO: rename tags
+ # TODO: rename resource files and libraries
diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/robocop_diagnostics.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/robocop_diagnostics.py
index 6f18a6bd3..74b905599 100644
--- a/packages/language_server/src/robotcode/language_server/robotframework/parts/robocop_diagnostics.py
+++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/robocop_diagnostics.py
@@ -1,5 +1,6 @@
import io
from typing import TYPE_CHECKING, Any, List, Optional
+from weakref import WeakKeyDictionary
from robotcode.core.language import language_id
from robotcode.core.lsp.types import (
@@ -19,15 +20,9 @@
from .protocol_part import RobotLanguageServerProtocolPart
if TYPE_CHECKING:
- from ..protocol import RobotLanguageServerProtocol
-
+ from robocop.linter.runner import RobocopLinter
-def robocop_installed() -> bool:
- try:
- __import__("robocop")
- except ImportError:
- return False
- return True
+ from ..protocol import RobotLanguageServerProtocol
class RobotRoboCopDiagnosticsProtocolPart(RobotLanguageServerProtocolPart):
@@ -37,8 +32,9 @@ def __init__(self, parent: "RobotLanguageServerProtocol") -> None:
super().__init__(parent)
self.source_name = "robocop"
+ self._robocop_linters: WeakKeyDictionary[WorkspaceFolder, "RobocopLinter"] = WeakKeyDictionary()
- if robocop_installed():
+ if self.parent.robocop_helper.robocop_installed:
parent.diagnostics.collect.add(self.collect_diagnostics)
def get_config(self, document: TextDocument) -> Optional[RoboCopConfig]:
@@ -52,21 +48,80 @@ def get_config(self, document: TextDocument) -> Optional[RoboCopConfig]:
@_logger.call
def collect_diagnostics(
self, sender: Any, document: TextDocument, diagnostics_type: DiagnosticsCollectType
- ) -> DiagnosticsResult:
- workspace_folder = self.parent.workspace.get_workspace_folder(document.uri)
- if workspace_folder is not None:
- extension_config = self.get_config(document)
-
- if extension_config is not None and extension_config.enabled:
- return DiagnosticsResult(
- self.collect_diagnostics,
- self.collect(document, workspace_folder, extension_config),
- )
+ ) -> Optional[DiagnosticsResult]:
+ if self.parent.robocop_helper.robocop_installed:
+ workspace_folder = self.parent.workspace.get_workspace_folder(document.uri)
+ if workspace_folder is not None:
+ config = self.get_config(document)
+
+ if config is not None and config.enabled:
+ if self.parent.robocop_helper.robocop_version >= (6, 0):
+ # In Robocop 6.0, the diagnostics are collected in a different way
+ return DiagnosticsResult(self.collect_diagnostics, self.collect(document, workspace_folder))
+
+ return DiagnosticsResult(
+ self.collect_diagnostics,
+ self.collect_old(document, workspace_folder, config),
+ )
+
+ return None
+
+ @_logger.call
+ def collect(self, document: TextDocument, workspace_folder: WorkspaceFolder) -> List[Diagnostic]:
+ from robocop.linter.rules import RuleSeverity
+ from robocop.linter.runner import RobocopLinter
+
+ linter = self._robocop_linters.get(workspace_folder, None)
+
+ if linter is None:
+ config_manager = self.parent.robocop_helper.get_config_manager(workspace_folder)
- return DiagnosticsResult(self.collect_diagnostics, [])
+ config = config_manager.get_config_for_source_file(document.uri.to_path())
+
+ linter = RobocopLinter(config_manager)
+ self._robocop_linters[workspace_folder] = linter
+
+ source = document.uri.to_path()
+
+ config = linter.config_manager.get_config_for_source_file(source)
+ model = self.parent.documents_cache.get_model(document, False)
+ diagnostics = linter.run_check(model, source, config)
+
+ return [
+ Diagnostic(
+ range=Range(
+ start=Position(
+ line=diagnostic.range.start.line - 1,
+ character=diagnostic.range.start.character - 1,
+ ),
+ end=Position(
+ line=max(0, diagnostic.range.end.line - 1),
+ character=max(0, diagnostic.range.end.character - 1),
+ ),
+ ),
+ message=diagnostic.message,
+ severity=(
+ DiagnosticSeverity.INFORMATION
+ if diagnostic.severity == RuleSeverity.INFO
+ else (
+ DiagnosticSeverity.WARNING
+ if diagnostic.severity == RuleSeverity.WARNING
+ else (
+ DiagnosticSeverity.ERROR
+ if diagnostic.severity == RuleSeverity.ERROR
+ else DiagnosticSeverity.HINT
+ )
+ )
+ ),
+ source=self.source_name,
+ code=f"{diagnostic.rule.rule_id}-{diagnostic.rule.name}",
+ code_description=self.get_code_description(self.parent.robocop_helper.robocop_version, diagnostic),
+ )
+ for diagnostic in diagnostics
+ ]
@_logger.call
- def collect(
+ def collect_old(
self,
document: TextDocument,
workspace_folder: WorkspaceFolder,
@@ -181,7 +236,9 @@ def get_code_description(self, version: Version, issue: Any) -> Optional[CodeDes
if version < (3, 0):
return None
- base = f"https://robocop.readthedocs.io/en/{version.major}.{version.minor}.{version.patch}"
+ version_letter = "v" if version.major >= 6 else ""
+
+ base = f"https://robocop.readthedocs.io/en/{version_letter}{version.major}.{version.minor}.{version.patch}"
if version < (4, 0):
return CodeDescription(href=f"{base}/rules.html#{issue.name}".lower())
@@ -194,4 +251,7 @@ def get_code_description(self, version: Version, issue: Any) -> Optional[CodeDes
href=f"{base}/rules_list.html#{issue.name}-{issue.severity.value}{issue.rule_id}".lower()
)
- return CodeDescription(href=f"{base}/rules_list.html#{issue.name}".lower())
+ if version < (6, 0):
+ return CodeDescription(href=f"{base}/rules_list.html#{issue.name}".lower())
+
+ return CodeDescription(href=f"{base}/rules/rules_list.html#{issue.rule.rule_id}-{issue.rule.name}".lower())
diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/robocop_helper.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/robocop_helper.py
new file mode 100644
index 000000000..65bb31746
--- /dev/null
+++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/robocop_helper.py
@@ -0,0 +1,117 @@
+import functools
+from pathlib import Path
+from typing import TYPE_CHECKING, Dict, Union
+
+from robotcode.core.lsp.types import MessageType
+from robotcode.core.text_document import TextDocument
+from robotcode.core.utils.logging import LoggingDescriptor
+from robotcode.core.utils.version import Version, create_version_from_str
+from robotcode.core.workspace import WorkspaceFolder
+
+from ..configuration import RoboCopConfig
+from .protocol_part import RobotLanguageServerProtocolPart
+
+if TYPE_CHECKING:
+ from ..protocol import RobotLanguageServerProtocol
+
+if TYPE_CHECKING:
+ from robocop.config import ConfigManager
+
+
+class RobocopConfigError(Exception):
+ """Robocop configuration errors."""
+
+
+class RoboCopHelper(RobotLanguageServerProtocolPart):
+ _logger = LoggingDescriptor()
+
+ def __init__(self, parent: "RobotLanguageServerProtocol") -> None:
+ super().__init__(parent)
+ self._config_managers: Dict[WorkspaceFolder, "ConfigManager"] = {}
+
+ @functools.cached_property
+ def robotidy_installed(self) -> bool:
+ try:
+ __import__("robotidy")
+ except ImportError:
+ return False
+ return True
+
+ @functools.cached_property
+ def robotidy_version(self) -> Version:
+ from robotidy.version import __version__
+
+ return create_version_from_str(__version__)
+
+ @functools.cached_property
+ def robotidy_version_str(self) -> str:
+ from robotidy.version import __version__
+
+ return str(__version__)
+
+ @functools.cached_property
+ def robocop_installed(self) -> bool:
+ try:
+ __import__("robocop")
+ except ImportError:
+ return False
+ return True
+
+ @functools.cached_property
+ def robocop_version(self) -> Version:
+ from robocop import __version__
+
+ return create_version_from_str(__version__)
+
+ @functools.cached_property
+ def robocop_version_str(self) -> str:
+ from robocop import __version__
+
+ return str(__version__)
+
+ def get_robocop_config(self, resource: Union[TextDocument, WorkspaceFolder]) -> RoboCopConfig:
+ folder = (
+ self.parent.workspace.get_workspace_folder(resource.uri) if isinstance(resource, TextDocument) else resource
+ )
+ if folder is None:
+ return RoboCopConfig()
+
+ return self.parent.workspace.get_configuration(RoboCopConfig, folder.uri)
+
+ def get_config_manager(self, workspace_folder: WorkspaceFolder) -> "ConfigManager":
+ from robocop.config import ConfigManager
+
+ if workspace_folder in self._config_managers:
+ return self._config_managers[workspace_folder]
+
+ config = self.get_robocop_config(workspace_folder)
+
+ result = None
+ try:
+ config_path = None
+
+ if config.config_file:
+ config_path = Path(config.config_file)
+ if not config_path.exists():
+ raise RobocopConfigError(f"Config file {config_path} does not exist.")
+
+ result = ConfigManager(
+ [],
+ root=workspace_folder.uri.to_path(),
+ config=config_path,
+ ignore_git_dir=config.ignore_git_dir,
+ ignore_file_config=config.ignore_file_config,
+ )
+ self._config_managers[workspace_folder] = result
+ return result
+ except Exception as e:
+ self._logger.exception(e)
+ e_msg = str(e)
+ error_details = f": {e_msg}" if e_msg else ""
+ self.parent.window.show_message(
+ f"Robocop configuration could not be loaded{error_details}. "
+ f"Please verify your configuration files "
+ f"and workspace settings. Check the output logs for detailed error information.",
+ MessageType.ERROR,
+ )
+ raise RobocopConfigError(f"Failed to load Robocop configuration: {e} ({e.__class__.__qualname__})") from e
diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/robot_workspace.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/robot_workspace.py
index be332aa68..2fef82926 100644
--- a/packages/language_server/src/robotcode/language_server/robotframework/parts/robot_workspace.py
+++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/robot_workspace.py
@@ -26,10 +26,6 @@
from .protocol_part import RobotLanguageServerProtocolPart
-class CantReadDocumentError(Exception):
- pass
-
-
class RobotWorkspaceProtocolPart(RobotLanguageServerProtocolPart):
_logger = LoggingDescriptor()
diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/semantic_tokens.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/semantic_tokens.py
index 34a5971a9..c2dcf913d 100644
--- a/packages/language_server/src/robotcode/language_server/robotframework/parts/semantic_tokens.py
+++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/semantic_tokens.py
@@ -3,7 +3,7 @@
import re
from dataclasses import dataclass
from enum import Enum
-from functools import reduce
+from functools import lru_cache, reduce
from itertools import dropwhile, takewhile
from typing import (
TYPE_CHECKING,
@@ -12,7 +12,9 @@
Dict,
FrozenSet,
Iterator,
+ List,
Optional,
+ Pattern,
Sequence,
Set,
Tuple,
@@ -74,15 +76,34 @@
from .protocol_part import RobotLanguageServerProtocolPart
-if get_robot_version() >= (5, 0):
+# Cache robot version at module level for conditional imports
+_ROBOT_VERSION = get_robot_version()
+
+if _ROBOT_VERSION >= (5, 0):
from robot.parsing.model.statements import ExceptHeader, WhileHeader
-if get_robot_version() >= (7, 0):
+if _ROBOT_VERSION >= (7, 0):
from robot.parsing.model.blocks import InvalidSection
if TYPE_CHECKING:
from ..protocol import RobotLanguageServerProtocol
+_AND_SEPARATOR = frozenset({"AND"})
+_ELSE_SEPARATORS = frozenset({"ELSE", "ELSE IF"})
+
+
+@lru_cache(maxsize=512)
+def _cached_unescape(token_value: str) -> str:
+ """Cached version of unescape function for performance.
+
+ Args:
+ token_value: Token value to unescape
+
+ Returns:
+ Unescaped string
+ """
+ return str(unescape(token_value))
+
ROBOT_KEYWORD_INNER = "KEYWORD_INNER"
ROBOT_NAMED_ARGUMENT = "NAMED_ARGUMENT"
@@ -90,7 +111,6 @@
class RobotSemTokenTypes(Enum):
- SECTION = "section"
SETTING_IMPORT = "settingImport"
SETTING = "setting"
HEADER = "header"
@@ -104,7 +124,6 @@ class RobotSemTokenTypes(Enum):
KEYWORD_NAME = "keywordName"
CONTROL_FLOW = "controlFlow"
ARGUMENT = "argument"
- EMBEDDED_ARGUMENT = "embeddedArgument"
VARIABLE = "variable"
KEYWORD = "keywordCall"
KEYWORD_INNER = "keywordCallInner"
@@ -133,20 +152,25 @@ class RobotSemTokenModifiers(Enum):
EMBEDDED = "embedded"
+# Type aliases for better type hints - extend base types to be compatible with LSP framework
+AnyTokenType = Union[RobotSemTokenTypes, SemanticTokenTypes, Enum]
+AnyTokenModifier = Union[RobotSemTokenModifiers, SemanticTokenModifiers, Enum]
+
+
@dataclass
class SemTokenInfo:
lineno: int
col_offset: int
length: int
- sem_token_type: Enum
- sem_modifiers: Optional[Set[Enum]] = None
+ sem_token_type: AnyTokenType
+ sem_modifiers: Optional[Set[AnyTokenModifier]] = None
@classmethod
def from_token(
cls,
token: Token,
- sem_token_type: Enum,
- sem_modifiers: Optional[Set[Enum]] = None,
+ sem_token_type: AnyTokenType,
+ sem_modifiers: Optional[Set[AnyTokenModifier]] = None,
col_offset: Optional[int] = None,
length: Optional[int] = None,
) -> "SemTokenInfo":
@@ -159,27 +183,32 @@ def from_token(
)
-class RobotSemanticTokenProtocolPart(RobotLanguageServerProtocolPart):
- def __init__(self, parent: "RobotLanguageServerProtocol") -> None:
- super().__init__(parent)
- parent.semantic_tokens.token_types += list(RobotSemTokenTypes)
- parent.semantic_tokens.token_modifiers += list(RobotSemTokenModifiers)
-
- parent.semantic_tokens.collect_full.add(self.collect_full)
+class SemanticTokenMapper:
+ """Handles token type mapping and classification for Robot Framework semantic tokens.
- self.parent.on_initialized.add(self._on_initialized)
+ This class is responsible for:
+ - Generating and caching token type mappings
+ - Providing regex patterns for token analysis
+ - Managing builtin keyword matching
+ """
- def _on_initialized(self, sender: Any) -> None:
- self.parent.documents_cache.namespace_invalidated.add(self.namespace_invalidated)
+ _mapping: ClassVar[Optional[Dict[str, Tuple[AnyTokenType, Optional[Set[AnyTokenModifier]]]]]] = None
- @language_id("robotframework")
- def namespace_invalidated(self, sender: Any, namespace: Namespace) -> None:
- if namespace.document is not None and namespace.document.opened_in_editor:
- self.parent.semantic_tokens.refresh()
+ ESCAPE_REGEX: ClassVar[Pattern[str]] = re.compile(
+ r"(?P[^\\]+)|(?P\\(?:[\\nrt]|x[0-9A-Fa-f]{2}|u[0-9a-fA-F]{4}|U[0-9a-fA-F]{8}))|(?P\\(?:[^\\nrt\\xuU]|[\\xuU][^0-9a-fA-F]))",
+ re.MULTILINE | re.DOTALL,
+ )
+ BDD_TOKEN_REGEX: ClassVar[Pattern[str]] = re.compile(r"^(Given|When|Then|And|But)\s", flags=re.IGNORECASE)
+ BUILTIN_MATCHER: ClassVar[KeywordMatcher] = KeywordMatcher("BuiltIn", is_namespace=True)
@classmethod
- def generate_mapping(cls) -> Dict[str, Tuple[Enum, Optional[Set[Enum]]]]:
- definition: Dict[FrozenSet[str], Tuple[Enum, Optional[Set[Enum]]]] = {
+ def generate_mapping(cls) -> Dict[str, Tuple[AnyTokenType, Optional[Set[AnyTokenModifier]]]]:
+ """Generate semantic token mappings for different Robot Framework versions.
+
+ Returns:
+ Dict mapping token types to semantic token information
+ """
+ definition: Dict[FrozenSet[str], Tuple[AnyTokenType, Optional[Set[AnyTokenModifier]]]] = {
frozenset(Token.HEADER_TOKENS): (RobotSemTokenTypes.HEADER, None),
frozenset({Token.SETTING_HEADER}): (
RobotSemTokenTypes.HEADER_SETTINGS,
@@ -264,7 +293,7 @@ def generate_mapping(cls) -> Dict[str, Tuple[Enum, Optional[Set[Enum]]]]:
),
}
- if get_robot_version() >= (5, 0):
+ if _ROBOT_VERSION >= (5, 0):
definition.update(
{
frozenset(
@@ -284,7 +313,7 @@ def generate_mapping(cls) -> Dict[str, Tuple[Enum, Optional[Set[Enum]]]]:
}
)
- if get_robot_version() >= (6, 0):
+ if _ROBOT_VERSION >= (6, 0):
definition.update(
{
frozenset({Token.CONFIG}): (
@@ -297,7 +326,7 @@ def generate_mapping(cls) -> Dict[str, Tuple[Enum, Optional[Set[Enum]]]]:
),
}
)
- if get_robot_version() >= (7, 0):
+ if _ROBOT_VERSION >= (7, 0):
definition.update(
{
frozenset({Token.VAR}): (RobotSemTokenTypes.VAR, None),
@@ -317,34 +346,727 @@ def generate_mapping(cls) -> Dict[str, Tuple[Enum, Optional[Set[Enum]]]]:
}
)
- if get_robot_version() >= (7, 2):
+ if _ROBOT_VERSION >= (7, 2):
definition.update(
{
frozenset({Token.GROUP}): (RobotSemTokenTypes.CONTROL_FLOW, None),
}
)
- result: Dict[str, Tuple[Enum, Optional[Set[Enum]]]] = {}
+
+ result: Dict[str, Tuple[AnyTokenType, Optional[Set[AnyTokenModifier]]]] = {}
for k, v in definition.items():
for e in k:
result[e] = v
return result
- _mapping: ClassVar[Optional[Dict[str, Tuple[Enum, Optional[Set[Enum]]]]]] = None
-
@classmethod
- def mapping(cls) -> Dict[str, Tuple[Enum, Optional[Set[Enum]]]]:
+ def mapping(cls) -> Dict[str, Tuple[AnyTokenType, Optional[Set[AnyTokenModifier]]]]:
+ """Get cached token type mappings.
+
+ Returns:
+ Dict mapping token types to semantic token information
+ """
if cls._mapping is None:
cls._mapping = cls.generate_mapping()
return cls._mapping
- ESCAPE_REGEX: ClassVar = re.compile(
- r"(?P[^\\]+)|(?P\\(?:[\\nrt]|x[0-9A-Fa-f]{2}|u[0-9a-fA-F]{4}|U[0-9a-fA-F]{8}))|(?P\\(?:[^\\nrt\\xuU]|[\\xuU][^0-9a-fA-F]))",
- re.MULTILINE | re.DOTALL,
- )
- BDD_TOKEN_REGEX: ClassVar = re.compile(r"^(Given|When|Then|And|But)\s", flags=re.IGNORECASE)
+ def get_semantic_info(
+ self, token_type: Optional[str]
+ ) -> Optional[Tuple[AnyTokenType, Optional[Set[AnyTokenModifier]]]]:
+ """Get semantic token information for a given token type.
+
+ Args:
+ token_type: The Robot Framework token type
+
+ Returns:
+ Tuple of semantic token type and modifiers, or None if not found
+ """
+ if token_type is None:
+ return None
+ return self.mapping().get(token_type, None)
+
+
+@dataclass
+class NamedArgumentInfo:
+ """Information about a named argument token."""
+
+ name: str
+ value: str
+ name_length: int
+ total_length: int
+ is_valid: bool
+
+
+class ArgumentProcessor:
+ """Efficient argument processing without list slicing for performance.
+
+ This processor eliminates memory allocations from list slicing operations
+ by using index-based navigation through argument sequences.
+ """
+
+ def __init__(self, arguments: Sequence[Token]) -> None:
+ """Initialize with argument sequence.
+
+ Args:
+ arguments: Sequence of tokens to process
+ """
+ self.arguments = arguments
+ self.index = 0
+
+ def has_next(self) -> bool:
+ """Check if more arguments are available.
+
+ Returns:
+ True if more arguments exist at current position
+ """
+ return self.index < len(self.arguments)
+
+ def peek(self) -> Optional[Token]:
+ """Peek at next argument without consuming it.
+
+ Returns:
+ Next token or None if no more arguments
+ """
+ return self.arguments[self.index] if self.has_next() else None
+
+ def consume(self) -> Optional[Token]:
+ """Consume and return next argument.
+
+ Returns:
+ Next token or None if no more arguments
+ """
+ if self.has_next():
+ token = self.arguments[self.index]
+ self.index += 1
+ return token
+ return None
+
+ def skip_non_data_tokens(self) -> List[Token]:
+ """Skip non-data tokens and return them.
+
+ Returns:
+ List of skipped non-data tokens
+ """
+ skipped = []
+ while self.has_next():
+ next_token = self.peek()
+ if next_token and next_token.type in Token.NON_DATA_TOKENS:
+ consumed = self.consume()
+ if consumed:
+ skipped.append(consumed)
+ else:
+ break
+ return skipped
+
+ def remaining_slice(self) -> Sequence[Token]:
+ """Get remaining arguments as slice (fallback for compatibility).
+
+ Returns:
+ Remaining arguments from current position
+ """
+ return self.arguments[self.index :]
+
+ def find_separator_index(self, separator_values: FrozenSet[str]) -> Optional[int]:
+ """Find index of next separator token.
+
+ Args:
+ separator_values: Frozen set of separator values to search for
+
+ Returns:
+ Relative index of separator from current position, or None
+ """
+ if not separator_values:
+ return None
+
+ if self.index >= len(self.arguments):
+ return None
+
+ try:
+ return next(
+ offset for offset, arg in enumerate(self.arguments[self.index :]) if arg.value in separator_values
+ )
+ except StopIteration:
+ return None
+
+ def iter_until_separator(self, separator_values: List[str]) -> Iterator[Token]:
+ """Iterate tokens until separator is found without creating a list.
+
+ Args:
+ separator_values: List of separator values to stop at
+
+ Yields:
+ Tokens until separator is found (excluding separator)
+ """
+ while self.has_next():
+ next_token = self.peek()
+ if next_token and next_token.value in separator_values:
+ break
+ token = self.consume()
+ if token:
+ yield token
+
+ def iter_all_remaining(self) -> Iterator[Token]:
+ """Iterate all remaining tokens without creating a list.
+
+ Yields:
+ All remaining tokens from current position
+ """
+ while self.has_next():
+ token = self.consume()
+ if token:
+ yield token
+
+
+class NamedArgumentProcessor:
+ """Handles named argument processing consistently across different contexts."""
+
+ def __init__(self, token_mapper: SemanticTokenMapper) -> None:
+ """Initialize the processor with a token mapper.
+
+ Args:
+ token_mapper: The semantic token mapper for type resolution
+ """
+ self.token_mapper = token_mapper
+
+ def parse_named_argument(
+ self, token_value: str, kw_doc: Optional[KeywordDoc] = None
+ ) -> Optional[NamedArgumentInfo]:
+ """Parse named argument token into components.
+
+ Args:
+ token_value: The token value to parse
+ kw_doc: Optional keyword documentation for validation
+
+ Returns:
+ NamedArgumentInfo if valid named argument, None otherwise
+ """
+ name, value = split_from_equals(token_value)
+ if value is None:
+ return None
+
+ is_valid = self._validate_named_argument(name, kw_doc)
+
+ return NamedArgumentInfo(
+ name=name, value=value, name_length=len(name), total_length=len(token_value), is_valid=is_valid
+ )
+
+ def _validate_named_argument(self, name: str, kw_doc: Optional[KeywordDoc]) -> bool:
+ """Validate if named argument is valid for keyword.
+
+ Args:
+ name: The argument name to validate
+ kw_doc: Optional keyword documentation for validation
+
+ Returns:
+ True if named argument is valid
+ """
+ if not kw_doc or not kw_doc.arguments:
+ return False
+
+ return any(arg.kind == KeywordArgumentKind.VAR_NAMED or arg.name == name for arg in kw_doc.arguments)
+
+ def generate_named_argument_tokens(
+ self, token: Token, arg_info: NamedArgumentInfo, node: ast.AST, token_type_override: Optional[str] = None
+ ) -> Iterator[Tuple[Token, ast.AST]]:
+ """Generate tokens for named argument.
+
+ Args:
+ token: Original token
+ arg_info: Parsed argument information
+ node: AST node
+ token_type_override: Optional token type override for name token
+
+ Yields:
+ Token and node pairs for semantic highlighting
+ """
+ if not arg_info.is_valid:
+ yield token, node
+ return
+
+ yield (
+ Token(
+ token_type_override or ROBOT_NAMED_ARGUMENT,
+ arg_info.name,
+ token.lineno,
+ token.col_offset,
+ ),
+ node,
+ )
+
+ yield (
+ Token(
+ ROBOT_OPERATOR,
+ "=",
+ token.lineno,
+ token.col_offset + arg_info.name_length,
+ ),
+ node,
+ )
+
+ yield (
+ Token(
+ token.type,
+ arg_info.value,
+ token.lineno,
+ token.col_offset + arg_info.name_length + 1,
+ token.error,
+ ),
+ node,
+ )
+
+ def process_token_for_named_argument(
+ self,
+ token: Token,
+ node: ast.AST,
+ kw_doc: Optional[KeywordDoc] = None,
+ token_type_override: Optional[str] = None,
+ ) -> Iterator[Tuple[Token, ast.AST]]:
+ """Process a token that might be a named argument.
+
+ Args:
+ token: The token to process
+ node: The AST node
+ kw_doc: Optional keyword documentation
+ token_type_override: Optional token type override for name token
+
+ Yields:
+ Token and node pairs for semantic highlighting
+ """
+ arg_info = self.parse_named_argument(token.value, kw_doc)
+ if arg_info and arg_info.is_valid:
+ yield from self.generate_named_argument_tokens(token, arg_info, node, token_type_override)
+ else:
+ yield token, node
+
+
+class KeywordTokenAnalyzer:
+ """Specialized analysis for keyword tokens and run keywords.
+
+ This class handles the complex logic for analyzing keyword calls,
+ including run keyword variants and nested keyword structures.
+ """
+
+ def __init__(self, token_mapper: SemanticTokenMapper) -> None:
+ """Initialize the analyzer with a token mapper.
+
+ Args:
+ token_mapper: The semantic token mapper for type resolution
+ """
+ self.token_mapper = token_mapper
+ self.named_arg_processor = NamedArgumentProcessor(token_mapper)
+
+ def _skip_non_data_tokens(self, arg_processor: ArgumentProcessor, node: ast.AST) -> List[Tuple[Token, ast.AST]]:
+ """Skip non-data tokens using ArgumentProcessor.
+
+ Args:
+ arg_processor: The argument processor
+ node: AST node
+
+ Returns:
+ List of skipped token-node pairs
+ """
+ skipped_tokens = arg_processor.skip_non_data_tokens()
+ return [(token, node) for token in skipped_tokens]
+
+ def _generate_run_keyword_tokens(
+ self,
+ namespace: Namespace,
+ builtin_library_doc: Optional[LibraryDoc],
+ arguments: Sequence[Token],
+ node: ast.AST,
+ ) -> Iterator[Tuple[Token, ast.AST]]:
+ """Generate tokens for simple Run Keyword calls.
+
+ Args:
+ namespace: The namespace context
+ builtin_library_doc: BuiltIn library documentation
+ arguments: Arguments to the keyword
+ node: The AST node
+
+ Yields:
+ Token and node pairs for semantic highlighting
+ """
+ arg_processor = ArgumentProcessor(arguments)
+
+ skipped_tokens = self._skip_non_data_tokens(arg_processor, node)
+ for skipped_token in skipped_tokens:
+ yield skipped_token
+
+ if arg_processor.has_next():
+ token = arg_processor.consume()
+ if token:
+ yield from self.generate_run_kw_tokens(
+ namespace,
+ builtin_library_doc,
+ namespace.find_keyword(_cached_unescape(token.value), raise_keyword_error=False),
+ Token(
+ ROBOT_KEYWORD_INNER,
+ token.value,
+ token.lineno,
+ token.col_offset,
+ token.error,
+ ),
+ arg_processor.remaining_slice(),
+ node,
+ )
+
+ def _generate_run_keyword_with_condition_tokens(
+ self,
+ namespace: Namespace,
+ builtin_library_doc: Optional[LibraryDoc],
+ kw_doc: KeywordDoc,
+ arguments: Sequence[Token],
+ node: ast.AST,
+ ) -> Iterator[Tuple[Token, ast.AST]]:
+ """Generate tokens for Run Keyword with condition calls.
+
+ Args:
+ namespace: The namespace context
+ builtin_library_doc: BuiltIn library documentation
+ kw_doc: Keyword documentation
+ arguments: Arguments to the keyword
+ node: The AST node
+
+ Yields:
+ Token and node pairs for semantic highlighting
+ """
+ arg_processor = ArgumentProcessor(arguments)
+ cond_count = kw_doc.run_keyword_condition_count()
+
+ for _ in range(cond_count):
+ if arg_processor.has_next():
+ consumed_token = arg_processor.consume()
+ if consumed_token:
+ yield (consumed_token, node)
+
+ skipped_tokens = self._skip_non_data_tokens(arg_processor, node)
+ for skipped_token in skipped_tokens:
+ yield skipped_token
+
+ if arg_processor.has_next():
+ token = arg_processor.consume()
+ if token:
+ yield from self.generate_run_kw_tokens(
+ namespace,
+ builtin_library_doc,
+ namespace.find_keyword(_cached_unescape(token.value), raise_keyword_error=False),
+ Token(
+ ROBOT_KEYWORD_INNER,
+ token.value,
+ token.lineno,
+ token.col_offset,
+ token.error,
+ ),
+ arg_processor.remaining_slice(),
+ node,
+ )
+
+ def _generate_run_keywords_tokens(
+ self,
+ namespace: Namespace,
+ builtin_library_doc: Optional[LibraryDoc],
+ arguments: Sequence[Token],
+ node: ast.AST,
+ ) -> Iterator[Tuple[Token, ast.AST]]:
+ """Generate tokens for Run Keywords calls (with AND separators).
+
+ Args:
+ namespace: The namespace context
+ builtin_library_doc: BuiltIn library documentation
+ arguments: Arguments to the keyword
+ node: The AST node
+
+ Yields:
+ Token and node pairs for semantic highlighting
+ """
+ arg_processor = ArgumentProcessor(arguments)
+ has_separator = False
+
+ while arg_processor.has_next():
+ skipped_tokens = self._skip_non_data_tokens(arg_processor, node)
+ for skipped_token in skipped_tokens:
+ yield skipped_token
+
+ if not arg_processor.has_next():
+ break
+
+ token = arg_processor.consume()
+ if not token:
+ break
+
+ if token.value == "AND":
+ yield (
+ Token(
+ Token.ELSE,
+ token.value,
+ token.lineno,
+ token.col_offset,
+ token.error,
+ ),
+ node,
+ )
+ continue
+
+ and_index = arg_processor.find_separator_index(_AND_SEPARATOR)
+
+ if and_index is not None:
+ args = list(arg_processor.iter_until_separator(["AND"]))
+ has_separator = True
+ else:
+ if has_separator:
+ args = list(arg_processor.iter_all_remaining())
+ else:
+ args = []
+
+ yield from self.generate_run_kw_tokens(
+ namespace,
+ builtin_library_doc,
+ namespace.find_keyword(_cached_unescape(token.value), raise_keyword_error=False),
+ Token(
+ ROBOT_KEYWORD_INNER,
+ token.value,
+ token.lineno,
+ token.col_offset,
+ token.error,
+ ),
+ args,
+ node,
+ )
+
+ def _generate_run_keyword_if_tokens(
+ self,
+ namespace: Namespace,
+ builtin_library_doc: Optional[LibraryDoc],
+ arguments: Sequence[Token],
+ node: ast.AST,
+ ) -> Iterator[Tuple[Token, ast.AST]]:
+ """Generate tokens for Run Keyword If calls.
+
+ Args:
+ namespace: The namespace context
+ builtin_library_doc: BuiltIn library documentation
+ arguments: Arguments to the keyword
+ node: The AST node
+
+ Yields:
+ Token and node pairs for semantic highlighting
+ """
+
+ def generate_run_kw_if(arg_processor: ArgumentProcessor) -> Iterator[Tuple[Token, ast.AST]]:
+ if arg_processor.has_next():
+ consumed_token = arg_processor.consume()
+ if consumed_token:
+ yield (consumed_token, node)
+
+ while arg_processor.has_next():
+ skipped_tokens = self._skip_non_data_tokens(arg_processor, node)
+ for skipped_token in skipped_tokens:
+ yield skipped_token
+
+ if not arg_processor.has_next():
+ break
+
+ token = arg_processor.consume()
+ if not token:
+ break
+
+ if token.value in ["ELSE", "ELSE IF"]:
+ yield (
+ Token(
+ Token.ELSE,
+ token.value,
+ token.lineno,
+ token.col_offset,
+ token.error,
+ ),
+ node,
+ )
+
+ if token.value == "ELSE IF":
+ skipped_tokens = self._skip_non_data_tokens(arg_processor, node)
+ for skipped_token in skipped_tokens:
+ yield skipped_token
+
+ if arg_processor.has_next():
+ consumed_token = arg_processor.consume()
+ if consumed_token:
+ yield (consumed_token, node)
+ continue
+
+ inner_kw_doc = namespace.find_keyword(_cached_unescape(token.value), raise_keyword_error=False)
+
+ if inner_kw_doc is not None and inner_kw_doc.is_run_keyword_if():
+ yield (
+ Token(
+ ROBOT_KEYWORD_INNER,
+ token.value,
+ token.lineno,
+ token.col_offset,
+ token.error,
+ ),
+ node,
+ )
+
+ skipped_tokens = self._skip_non_data_tokens(arg_processor, node)
+ for skipped_token in skipped_tokens:
+ yield skipped_token
+
+ yield from generate_run_kw_if(arg_processor)
+ continue
+
+ separator_index = arg_processor.find_separator_index(_ELSE_SEPARATORS)
+ args: Sequence[Token] = []
- BUILTIN_MATCHER: ClassVar = KeywordMatcher("BuiltIn", is_namespace=True)
+ if separator_index is not None:
+ args = list(arg_processor.iter_until_separator(["ELSE", "ELSE IF"]))
+ else:
+ args = list(arg_processor.iter_all_remaining())
+
+ yield from self.generate_run_kw_tokens(
+ namespace,
+ builtin_library_doc,
+ inner_kw_doc,
+ Token(
+ ROBOT_KEYWORD_INNER,
+ token.value,
+ token.lineno,
+ token.col_offset,
+ token.error,
+ ),
+ args,
+ node,
+ )
+
+ arg_processor = ArgumentProcessor(arguments)
+ yield from generate_run_kw_if(arg_processor)
+
+ def generate_run_kw_tokens(
+ self,
+ namespace: Namespace,
+ builtin_library_doc: Optional[LibraryDoc],
+ kw_doc: Optional[KeywordDoc],
+ kw_token: Token,
+ arguments: Sequence[Token],
+ node: ast.AST,
+ ) -> Iterator[Tuple[Token, ast.AST]]:
+ """Generate tokens for run keyword variants.
+
+ Args:
+ namespace: The namespace context for keyword resolution
+ builtin_library_doc: BuiltIn library documentation
+ kw_doc: Documentation for the keyword being analyzed
+ kw_token: The keyword token
+ arguments: Arguments to the keyword
+ node: The AST node containing the keyword call
+
+ Yields:
+ Tuple[Token, ast.AST]: Token and node pairs for semantic highlighting
+ """
+
+ if kw_doc is not None and kw_doc.is_any_run_keyword():
+ yield kw_token, node
+
+ arg_processor = ArgumentProcessor(arguments)
+ skipped_tokens = self._skip_non_data_tokens(arg_processor, node)
+ for skipped_token in skipped_tokens:
+ yield skipped_token
+
+ remaining_arguments = arg_processor.remaining_slice()
+
+ if kw_doc.is_run_keyword() and len(remaining_arguments) > 0:
+ yield from self._generate_run_keyword_tokens(namespace, builtin_library_doc, remaining_arguments, node)
+ elif kw_doc.is_run_keyword_with_condition() and len(remaining_arguments) > 0:
+ yield from self._generate_run_keyword_with_condition_tokens(
+ namespace, builtin_library_doc, kw_doc, remaining_arguments, node
+ )
+ elif kw_doc.is_run_keywords() and len(remaining_arguments) > 0:
+ yield from self._generate_run_keywords_tokens(namespace, builtin_library_doc, remaining_arguments, node)
+ elif kw_doc.is_run_keyword_if() and len(remaining_arguments) > 0:
+ yield from self._generate_run_keyword_if_tokens(
+ namespace, builtin_library_doc, remaining_arguments, node
+ )
+ else:
+ yield from self.generate_keyword_tokens(namespace, kw_token, arguments, node, kw_doc)
+
+ def generate_keyword_tokens(
+ self,
+ namespace: Namespace,
+ kw_token: Token,
+ arguments: Sequence[Token],
+ node: ast.AST,
+ kw_doc: Optional[KeywordDoc] = None,
+ ) -> Iterator[Tuple[Token, ast.AST]]:
+ """Generate tokens for regular keyword calls with named arguments.
+
+ Args:
+ namespace: The namespace context for keyword resolution
+ kw_token: The keyword token
+ arguments: Arguments to the keyword
+ node: The AST node containing the keyword call
+ kw_doc: Optional keyword documentation for argument validation
+
+ Yields:
+ Tuple[Token, ast.AST]: Token and node pairs for semantic highlighting
+ """
+ yield kw_token, node
+
+ for token in arguments:
+ if token.type == Token.ARGUMENT:
+ name, value = split_from_equals(token.value)
+ if value is not None:
+ if kw_doc is None:
+ kw_doc = namespace.find_keyword(_cached_unescape(kw_token.value))
+
+ if kw_doc and any(
+ v for v in kw_doc.arguments if v.kind == KeywordArgumentKind.VAR_NAMED or v.name == name
+ ):
+ yield from self.named_arg_processor.process_token_for_named_argument(token, node, kw_doc)
+ else:
+ yield token, node
+ else:
+ yield token, node
+ else:
+ yield token, node
+
+
+class SemanticTokenGenerator:
+ """Generates semantic tokens from Robot Framework AST.
+
+ This class handles the main token generation logic,
+ creating and managing its own token mapper and keyword analyzer.
+ """
+
+ def __init__(self) -> None:
+ """Initialize the generator with its own dependencies."""
+ self.token_mapper = SemanticTokenMapper()
+ self.keyword_analyzer = KeywordTokenAnalyzer(self.token_mapper)
+
+ def _get_tokens_after(self, tokens: List[Token], target_token: Token) -> List[Token]:
+ """Get all tokens after target token efficiently.
+
+ This method is optimized for the common case where we need tokens after
+ a specific token object. It uses object identity for faster comparison.
+
+ Args:
+ tokens: List of tokens to search through
+ target_token: Token to find and get tokens after
+
+ Returns:
+ List of tokens that come after target_token
+ """
+ try:
+ index = tokens.index(target_token)
+ return tokens[index + 1 :]
+ except ValueError:
+ found = False
+ result = []
+ for token in tokens:
+ if found:
+ result.append(token)
+ elif token is target_token:
+ found = True
+ return result
def generate_sem_sub_tokens(
self,
@@ -356,23 +1078,37 @@ def generate_sem_sub_tokens(
length: Optional[int] = None,
yield_arguments: bool = False,
) -> Iterator[SemTokenInfo]:
- sem_info = self.mapping().get(token.type, None) if token.type is not None else None
+ """Generate semantic token information for Robot Framework tokens.
+
+ Args:
+ namespace: The namespace context for keyword resolution
+ builtin_library_doc: BuiltIn library documentation for builtin detection
+ token: The Robot Framework token to process
+ node: The AST node containing the token
+ col_offset: Optional column offset override
+ length: Optional length override
+ yield_arguments: Whether to yield argument tokens
+
+ Yields:
+ SemTokenInfo: Semantic token information for LSP client
+ """
+ sem_info = self.token_mapper.get_semantic_info(token.type)
if sem_info is not None:
sem_type, sem_mod = sem_info
if token.type in [Token.DOCUMENTATION, Token.METADATA]:
sem_mod = {SemanticTokenModifiers.DOCUMENTATION}
- if token.type in [Token.VARIABLE, Token.ASSIGN]:
- # TODO: maybe we can distinguish between local and global variables, by default all variables are global
- pass
+ # TODO: maybe we can distinguish between local and global variables, by default all variables are global
+ # if token.type in [Token.VARIABLE, Token.ASSIGN]:
+ # pass
elif token.type in [Token.KEYWORD, ROBOT_KEYWORD_INNER] or (
token.type == Token.NAME and cached_isinstance(node, Fixture, Template, TestTemplate)
):
if (
namespace.find_keyword(
- unescape(token.value), # TODO: this must be resovle possible variables
+ _cached_unescape(token.value), # TODO: this must be resovle possible variables
raise_keyword_error=False,
handle_bdd_style=False,
)
@@ -380,22 +1116,29 @@ def generate_sem_sub_tokens(
):
bdd_len = 0
- if get_robot_version() < (6, 0):
- bdd_match = self.BDD_TOKEN_REGEX.match(token.value)
+ if _ROBOT_VERSION < (6, 0):
+ bdd_match = self.token_mapper.BDD_TOKEN_REGEX.match(token.value)
if bdd_match:
bdd_len = len(bdd_match.group(1))
else:
- parts = token.value.split()
- if len(parts) > 1:
- for index in range(1, len(parts)):
- prefix = " ".join(parts[:index]).title()
- if prefix.title() in (
- namespace.languages.bdd_prefixes
- if namespace.languages is not None
- else DEFAULT_BDD_PREFIXES
- ):
- bdd_len = len(prefix)
- break
+ bdd_prefixes = (
+ namespace.languages.bdd_prefixes
+ if namespace.languages is not None
+ else DEFAULT_BDD_PREFIXES
+ )
+
+ for prefix in bdd_prefixes:
+ if token.value.startswith(prefix + " "):
+ bdd_len = len(prefix)
+ break
+ else:
+ parts = token.value.split()
+ if len(parts) > 1:
+ for index in range(1, len(parts)):
+ prefix = " ".join(parts[:index]).title()
+ if prefix in bdd_prefixes:
+ bdd_len = len(prefix)
+ break
if bdd_len > 0:
yield SemTokenInfo.from_token(
@@ -427,7 +1170,7 @@ def generate_sem_sub_tokens(
kw_namespace: Optional[str] = None
kw: str = token.value
kw_doc = namespace.find_keyword(
- unescape(token.value), raise_keyword_error=False
+ _cached_unescape(token.value), raise_keyword_error=False
) # TODO: this must be resovle possible variables
(
@@ -451,7 +1194,7 @@ def generate_sem_sub_tokens(
col_offset,
len(kw_namespace),
RobotSemTokenTypes.NAMESPACE,
- {RobotSemTokenModifiers.BUILTIN} if kw_namespace == self.BUILTIN_MATCHER else None,
+ {RobotSemTokenModifiers.BUILTIN} if kw_namespace == self.token_mapper.BUILTIN_MATCHER else None,
)
yield SemTokenInfo(
token.lineno,
@@ -463,7 +1206,7 @@ def generate_sem_sub_tokens(
if builtin_library_doc is not None and kw in builtin_library_doc.keywords:
if (
kw_doc is not None
- and kw_doc.libname == self.BUILTIN_MATCHER
+ and kw_doc.libname == self.token_mapper.BUILTIN_MATCHER
and kw_doc.matcher.match_string(kw)
):
if not sem_mod:
@@ -471,7 +1214,9 @@ def generate_sem_sub_tokens(
sem_mod.add(RobotSemTokenModifiers.BUILTIN)
if kw_doc is not None and kw_doc.is_embedded and kw_doc.matcher.embedded_arguments:
- if get_robot_version() >= (6, 0):
+ if _ROBOT_VERSION >= (7, 3):
+ m = kw_doc.matcher.embedded_arguments.name.fullmatch(kw)
+ elif _ROBOT_VERSION >= (6, 0):
m = kw_doc.matcher.embedded_arguments.match(kw)
else:
m = kw_doc.matcher.embedded_arguments.name.match(kw)
@@ -524,7 +1269,7 @@ def generate_sem_sub_tokens(
if col_offset is None:
col_offset = token.col_offset
- for g in self.ESCAPE_REGEX.finditer(token.value):
+ for g in self.token_mapper.ESCAPE_REGEX.finditer(token.value):
yield SemTokenInfo.from_token(
token,
RobotSemTokenTypes.NAMESPACE if g.group("x") is None else RobotSemTokenTypes.ESCAPE,
@@ -540,7 +1285,7 @@ def generate_sem_sub_tokens(
col_offset,
length,
)
- elif get_robot_version() >= (5, 0) and token.type == Token.OPTION:
+ elif _ROBOT_VERSION >= (5, 0) and token.type == Token.OPTION:
if (
cached_isinstance(node, ExceptHeader) or cached_isinstance(node, WhileHeader)
) and "=" in token.value:
@@ -604,6 +1349,17 @@ def generate_sem_tokens(
namespace: Namespace,
builtin_library_doc: Optional[LibraryDoc],
) -> Iterator[SemTokenInfo]:
+ """Generate semantic tokens for a given token and node.
+
+ Args:
+ token: The Robot Framework token
+ node: The AST node containing the token
+ namespace: The namespace context
+ builtin_library_doc: BuiltIn library documentation
+
+ Yields:
+ SemTokenInfo: Semantic token information
+ """
if token.type in {Token.ARGUMENT, Token.TESTCASE_NAME, Token.KEYWORD_NAME} or (
token.type == Token.NAME and cached_isinstance(node, VariablesImport, LibraryImport, ResourceImport)
):
@@ -673,284 +1429,30 @@ def generate_sem_tokens(
for e in self.generate_sem_sub_tokens(namespace, builtin_library_doc, token, node):
yield e
- def generate_run_kw_tokens(
- self,
- namespace: Namespace,
- builtin_library_doc: Optional[LibraryDoc],
- kw_doc: Optional[KeywordDoc],
- kw_token: Token,
- arguments: Sequence[Token],
- node: ast.AST,
- ) -> Iterator[Tuple[Token, ast.AST]]:
- def skip_non_data_tokens() -> Iterator[Tuple[Token, ast.AST]]:
- nonlocal arguments
- while arguments and arguments[0] and arguments[0].type in Token.NON_DATA_TOKENS:
- yield (arguments[0], node)
- arguments = arguments[1:]
-
- if kw_doc is not None and kw_doc.is_any_run_keyword():
- yield kw_token, node
-
- for b in skip_non_data_tokens():
- yield b
-
- if kw_doc.is_run_keyword() and len(arguments) > 0:
- token = arguments[0]
- for b in self.generate_run_kw_tokens(
- namespace,
- builtin_library_doc,
- namespace.find_keyword(unescape(token.value), raise_keyword_error=False),
- Token(
- ROBOT_KEYWORD_INNER,
- token.value,
- token.lineno,
- token.col_offset,
- token.error,
- ),
- arguments[1:],
- node,
- ):
- yield b
- elif kw_doc.is_run_keyword_with_condition() and len(arguments) > 0:
- cond_count = kw_doc.run_keyword_condition_count()
- for _ in range(cond_count):
- yield (arguments[0], node)
- arguments = arguments[1:]
-
- for b in skip_non_data_tokens():
- yield b
-
- if len(arguments) > 0:
- token = arguments[0]
- for b in self.generate_run_kw_tokens(
- namespace,
- builtin_library_doc,
- namespace.find_keyword(unescape(token.value), raise_keyword_error=False),
- Token(
- ROBOT_KEYWORD_INNER,
- token.value,
- token.lineno,
- token.col_offset,
- token.error,
- ),
- arguments[1:],
- node,
- ):
- yield b
- elif kw_doc.is_run_keywords() and len(arguments) > 0:
- has_separator = False
- while arguments:
- for b in skip_non_data_tokens():
- yield b
-
- if not arguments:
- break
-
- token = arguments[0]
- arguments = arguments[1:]
-
- if token.value == "AND":
- yield (
- Token(
- Token.ELSE,
- token.value,
- token.lineno,
- token.col_offset,
- token.error,
- ),
- node,
- )
- continue
-
- separator_token = next((e for e in arguments if e.value == "AND"), None)
- args: Sequence[Token] = []
- if separator_token is not None:
- args = arguments[: arguments.index(separator_token)]
- arguments = arguments[arguments.index(separator_token) :]
- has_separator = True
- else:
- if has_separator:
- args = arguments
- arguments = []
-
- for e in self.generate_run_kw_tokens(
- namespace,
- builtin_library_doc,
- namespace.find_keyword(unescape(token.value), raise_keyword_error=False),
- Token(
- ROBOT_KEYWORD_INNER,
- token.value,
- token.lineno,
- token.col_offset,
- token.error,
- ),
- args,
- node,
- ):
- yield e
- elif kw_doc.is_run_keyword_if() and len(arguments) > 0:
-
- def generate_run_kw_if() -> Iterator[Tuple[Token, ast.AST]]:
- nonlocal arguments
-
- yield (arguments[0], node)
- arguments = arguments[1:]
-
- while arguments:
- for b in skip_non_data_tokens():
- yield b
-
- if not arguments:
- break
-
- token = arguments[0]
- arguments = arguments[1:]
-
- if token.value in ["ELSE", "ELSE IF"]:
- yield (
- Token(
- Token.ELSE,
- token.value,
- token.lineno,
- token.col_offset,
- token.error,
- ),
- node,
- )
-
- if token.value == "ELSE IF":
- for b in skip_non_data_tokens():
- yield b
-
- if not arguments:
- break
-
- yield arguments[0], node
- arguments = arguments[1:]
- continue
-
- inner_kw_doc = namespace.find_keyword(unescape(token.value), raise_keyword_error=False)
-
- if inner_kw_doc is not None and inner_kw_doc.is_run_keyword_if():
- yield (
- Token(
- ROBOT_KEYWORD_INNER,
- token.value,
- token.lineno,
- token.col_offset,
- token.error,
- ),
- node,
- )
-
- arguments = arguments[1:]
-
- for b in skip_non_data_tokens():
- yield b
-
- for e in generate_run_kw_if():
- yield e
-
- continue
-
- separator_token = next(
- (e for e in arguments if e.value in ["ELSE", "ELSE IF"]),
- None,
- )
- args: Sequence[Token] = []
-
- if separator_token is not None:
- args = arguments[: arguments.index(separator_token)]
- arguments = arguments[arguments.index(separator_token) :]
- else:
- args = arguments
- arguments = []
-
- for e in self.generate_run_kw_tokens(
- namespace,
- builtin_library_doc,
- inner_kw_doc,
- Token(
- ROBOT_KEYWORD_INNER,
- token.value,
- token.lineno,
- token.col_offset,
- token.error,
- ),
- args,
- node,
- ):
- yield e
-
- for e in generate_run_kw_if():
- yield e
- else:
- for a in self.generate_keyword_tokens(namespace, kw_token, arguments, node, kw_doc):
- yield a
-
- def generate_keyword_tokens(
- self,
- namespace: Namespace,
- kw_token: Token,
- arguments: Sequence[Token],
- node: ast.AST,
- kw_doc: Optional[KeywordDoc] = None,
- ) -> Iterator[Tuple[Token, ast.AST]]:
- yield kw_token, node
-
- for token in arguments:
- if token.type == Token.ARGUMENT:
- name, value = split_from_equals(token.value)
- if value is not None:
- if kw_doc is None:
- kw_doc = namespace.find_keyword(kw_token.value)
-
- if kw_doc and any(
- v for v in kw_doc.arguments if v.kind == KeywordArgumentKind.VAR_NAMED or v.name == name
- ):
- length = len(name)
- yield (
- Token(
- ROBOT_NAMED_ARGUMENT,
- name,
- token.lineno,
- token.col_offset,
- ),
- node,
- )
-
- yield (
- Token(
- ROBOT_OPERATOR,
- "=",
- token.lineno,
- token.col_offset + length,
- ),
- node,
- )
- yield (
- Token(
- token.type,
- value,
- token.lineno,
- token.col_offset + length + 1,
- token.error,
- ),
- node,
- )
-
- continue
-
- yield token, node
-
- def _collect_internal(
+ def collect_tokens(
self,
document: TextDocument,
model: ast.AST,
range: Optional[Range],
namespace: Namespace,
builtin_library_doc: Optional[LibraryDoc],
+ token_types: Sequence[Enum],
+ token_modifiers: Sequence[Enum],
) -> Union[SemanticTokens, SemanticTokensPartialResult, None]:
+ """Collect semantic tokens from the Robot Framework AST.
+
+ Args:
+ document: The text document to process
+ model: The Robot Framework AST model
+ range: Optional range to limit token collection
+ namespace: The namespace context
+ builtin_library_doc: BuiltIn library documentation
+ token_types: Available semantic token types for encoding
+ token_modifiers: Available semantic token modifiers for encoding
+
+ Returns:
+ SemanticTokens with encoded token data
+ """
data = []
last_line = 0
last_col = 0
@@ -962,7 +1464,7 @@ def get_tokens() -> Iterator[Tuple[Token, ast.AST]]:
for node in iter_nodes(model):
if cached_isinstance(node, Section):
current_section = node
- if get_robot_version() >= (7, 0):
+ if _ROBOT_VERSION >= (7, 0):
in_invalid_section = cached_isinstance(current_section, InvalidSection)
check_current_task_canceled()
@@ -974,51 +1476,12 @@ def get_tokens() -> Iterator[Tuple[Token, ast.AST]]:
if lib_doc is not None:
for token in node.tokens:
if token.type == Token.ARGUMENT:
- name, value = split_from_equals(token.value)
- if (
- value is not None
- and kw_doc is not None
- and kw_doc.arguments
- and any(
- v
- for v in kw_doc.arguments
- if v.kind == KeywordArgumentKind.VAR_NAMED or v.name == name
- )
- ):
- length = len(name)
- yield (
- Token(
- ROBOT_NAMED_ARGUMENT,
- name,
- token.lineno,
- token.col_offset,
- ),
- node,
- )
-
- yield (
- Token(
- ROBOT_OPERATOR,
- "=",
- token.lineno,
- token.col_offset + length,
- ),
- node,
- )
- yield (
- Token(
- token.type,
- value,
- token.lineno,
- token.col_offset + length + 1,
- token.error,
- ),
- node,
- )
-
- continue
-
- yield token, node
+ processor = self.keyword_analyzer.named_arg_processor
+ yield from processor.process_token_for_named_argument(
+ token, node, kw_doc, ROBOT_NAMED_ARGUMENT
+ )
+ else:
+ yield token, node
continue
if cached_isinstance(node, VariablesImport) and node.name:
lib_doc = namespace.get_variables_import_libdoc(node.name, node.args)
@@ -1026,51 +1489,12 @@ def get_tokens() -> Iterator[Tuple[Token, ast.AST]]:
if lib_doc is not None:
for token in node.tokens:
if token.type == Token.ARGUMENT:
- name, value = split_from_equals(token.value)
- if (
- value is not None
- and kw_doc is not None
- and kw_doc.arguments
- and any(
- v
- for v in kw_doc.arguments
- if v.kind == KeywordArgumentKind.VAR_NAMED or v.name == name
- )
- ):
- length = len(name)
- yield (
- Token(
- ROBOT_NAMED_ARGUMENT,
- name,
- token.lineno,
- token.col_offset,
- ),
- node,
- )
-
- yield (
- Token(
- ROBOT_OPERATOR,
- "=",
- token.lineno,
- token.col_offset + length,
- ),
- node,
- )
- yield (
- Token(
- token.type,
- value,
- token.lineno,
- token.col_offset + length + 1,
- token.error,
- ),
- node,
- )
-
- continue
-
- yield token, node
+ processor = self.keyword_analyzer.named_arg_processor
+ yield from processor.process_token_for_named_argument(
+ token, node, kw_doc, ROBOT_NAMED_ARGUMENT
+ )
+ else:
+ yield token, node
continue
if cached_isinstance(node, KeywordCall, Fixture):
kw_token = cast(
@@ -1091,30 +1515,30 @@ def get_tokens() -> Iterator[Tuple[Token, ast.AST]]:
kw: Optional[str] = None
for _, n in iter_over_keyword_names_and_owners(
- unescape(ModelHelper.strip_bdd_prefix(namespace, kw_token).value)
+ _cached_unescape(ModelHelper.strip_bdd_prefix(namespace, kw_token).value)
):
if n is not None:
matcher = KeywordMatcher(n)
if matcher in ALL_RUN_KEYWORDS_MATCHERS:
kw = n
if kw:
- kw_doc = namespace.find_keyword(unescape(kw_token.value))
+ kw_doc = namespace.find_keyword(_cached_unescape(kw_token.value))
if kw_doc is not None and kw_doc.is_any_run_keyword():
- for kw_res in self.generate_run_kw_tokens(
+ for kw_res in self.keyword_analyzer.generate_run_kw_tokens(
namespace,
builtin_library_doc,
kw_doc,
kw_token,
- node.tokens[node.tokens.index(kw_token) + 1 :],
+ self._get_tokens_after(node.tokens, kw_token),
node,
):
yield kw_res
continue
else:
- for kw_res in self.generate_keyword_tokens(
+ for kw_res in self.keyword_analyzer.generate_keyword_tokens(
namespace,
kw_token,
- node.tokens[node.tokens.index(kw_token) + 1 :],
+ self._get_tokens_after(node.tokens, kw_token),
node,
):
yield kw_res
@@ -1175,12 +1599,12 @@ def get_tokens() -> Iterator[Tuple[Token, ast.AST]]:
data.append(token_length)
- data.append(self.parent.semantic_tokens.token_types.index(token.sem_token_type))
+ data.append(token_types.index(token.sem_token_type))
data.append(
reduce(
operator.or_,
- [2 ** self.parent.semantic_tokens.token_modifiers.index(e) for e in token.sem_modifiers],
+ [2 ** token_modifiers.index(e) for e in token.sem_modifiers],
)
if token.sem_modifiers
else 0
@@ -1188,9 +1612,45 @@ def get_tokens() -> Iterator[Tuple[Token, ast.AST]]:
return SemanticTokens(data=data)
+
+class RobotSemanticTokenProtocolPart(RobotLanguageServerProtocolPart):
+ """Main protocol part for semantic token generation.
+
+ This class provides a clean interface to the LSP client by delegating
+ semantic token generation to the SemanticTokenGenerator.
+ """
+
+ def __init__(self, parent: "RobotLanguageServerProtocol") -> None:
+ super().__init__(parent)
+ parent.semantic_tokens.token_types += list(RobotSemTokenTypes)
+ parent.semantic_tokens.token_modifiers += list(RobotSemTokenModifiers)
+
+ parent.semantic_tokens.collect_full.add(self.collect_full)
+
+ self.parent.on_initialized.add(self._on_initialized)
+
+ self.token_generator = SemanticTokenGenerator()
+
+ def _on_initialized(self, sender: Any) -> None:
+ self.parent.documents_cache.namespace_invalidated.add(self.namespace_invalidated)
+
+ @language_id("robotframework")
+ def namespace_invalidated(self, sender: Any, namespace: Namespace) -> None:
+ if namespace.document is not None and namespace.document.opened_in_editor:
+ self.parent.semantic_tokens.refresh()
+
def _collect(
self, document: TextDocument, range: Optional[Range]
) -> Union[SemanticTokens, SemanticTokensPartialResult, None]:
+ """Collect semantic tokens for a document or range.
+
+ Args:
+ document: The text document to process
+ range: Optional range to limit token collection
+
+ Returns:
+ SemanticTokens with encoded token data
+ """
model = self.parent.documents_cache.get_model(document, False)
namespace = self.parent.documents_cache.get_namespace(document)
@@ -1205,7 +1665,15 @@ def _collect(
None,
)
- return self._collect_internal(document, model, range, namespace, builtin_library_doc)
+ return self.token_generator.collect_tokens(
+ document,
+ model,
+ range,
+ namespace,
+ builtin_library_doc,
+ self.parent.semantic_tokens.token_types,
+ self.parent.semantic_tokens.token_modifiers,
+ )
@language_id("robotframework")
def collect_full(
diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/signature_help.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/signature_help.py
index e03b650dd..d8f41caee 100644
--- a/packages/language_server/src/robotcode/language_server/robotframework/parts/signature_help.py
+++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/signature_help.py
@@ -68,7 +68,7 @@ def _find_method(self, cls: Type[Any]) -> Optional[_SignatureHelpMethod]:
for base in cls.__bases__:
method = self._find_method(base)
if method:
- return cast(_SignatureHelpMethod, method)
+ return method
return None
@language_id("robotframework")
diff --git a/packages/language_server/src/robotcode/language_server/robotframework/protocol.py b/packages/language_server/src/robotcode/language_server/robotframework/protocol.py
index 63bb84b38..a95a1f456 100644
--- a/packages/language_server/src/robotcode/language_server/robotframework/protocol.py
+++ b/packages/language_server/src/robotcode/language_server/robotframework/protocol.py
@@ -48,6 +48,7 @@
from .parts.references import RobotReferencesProtocolPart
from .parts.rename import RobotRenameProtocolPart
from .parts.robocop_diagnostics import RobotRoboCopDiagnosticsProtocolPart
+from .parts.robocop_helper import RoboCopHelper
from .parts.robot_workspace import RobotWorkspaceProtocolPart
from .parts.selection_range import RobotSelectionRangeProtocolPart
from .parts.semantic_tokens import RobotSemanticTokenProtocolPart
@@ -102,6 +103,7 @@ class RobotLanguageServerProtocol(LanguageServerProtocol):
robot_completion = ProtocolPartDescriptor(RobotCompletionProtocolPart)
robot_signature_help = ProtocolPartDescriptor(RobotSignatureHelpProtocolPart)
robot_document_symbols = ProtocolPartDescriptor(RobotDocumentSymbolsProtocolPart)
+ robocop_helper = ProtocolPartDescriptor(RoboCopHelper)
robot_robocop_diagnostics = ProtocolPartDescriptor(RobotRoboCopDiagnosticsProtocolPart)
robot_formatting = ProtocolPartDescriptor(RobotFormattingProtocolPart)
robot_semantic_tokens = ProtocolPartDescriptor(RobotSemanticTokenProtocolPart)
diff --git a/packages/modifiers/src/robotcode/modifiers/__version__.py b/packages/modifiers/src/robotcode/modifiers/__version__.py
index 1cb3f8c2e..14d9d2f58 100644
--- a/packages/modifiers/src/robotcode/modifiers/__version__.py
+++ b/packages/modifiers/src/robotcode/modifiers/__version__.py
@@ -1 +1 @@
-__version__ = "1.3.0-dev.2"
+__version__ = "1.7.0"
diff --git a/packages/plugin/src/robotcode/plugin/__version__.py b/packages/plugin/src/robotcode/plugin/__version__.py
index 1cb3f8c2e..14d9d2f58 100644
--- a/packages/plugin/src/robotcode/plugin/__version__.py
+++ b/packages/plugin/src/robotcode/plugin/__version__.py
@@ -1 +1 @@
-__version__ = "1.3.0-dev.2"
+__version__ = "1.7.0"
diff --git a/packages/plugin/src/robotcode/plugin/click_helper/types.py b/packages/plugin/src/robotcode/plugin/click_helper/types.py
index 28fde088f..3213b2e33 100644
--- a/packages/plugin/src/robotcode/plugin/click_helper/types.py
+++ b/packages/plugin/src/robotcode/plugin/click_helper/types.py
@@ -20,17 +20,17 @@
T = TypeVar("T", bound=Enum)
-class EnumChoice(click.Choice, Generic[T]):
+class EnumChoice(click.Choice, Generic[T]): # type: ignore[type-arg]
"""A click.Choice that accepts Enum values."""
def __init__(
self,
choices: Type[T],
- case_sensitive: bool = True,
+ case_sensitive: bool = False,
excluded: Optional[Set[T]] = None,
) -> None:
super().__init__(
- choices if excluded is None else (set(choices).difference(excluded)), # type: ignore
+ choices if excluded is None else (set(choices).difference(excluded)),
case_sensitive,
)
diff --git a/packages/repl/pyproject.toml b/packages/repl/pyproject.toml
index 14a08ac7f..d47cb0f6e 100644
--- a/packages/repl/pyproject.toml
+++ b/packages/repl/pyproject.toml
@@ -27,7 +27,7 @@ classifiers = [
]
dynamic = ["version"]
dependencies = [
- "robotcode-runner==1.3.0-dev.2"
+ "robotcode-runner==1.7.0"
]
[project.entry-points.robotcode]
diff --git a/packages/repl/src/robotcode/repl/__version__.py b/packages/repl/src/robotcode/repl/__version__.py
index 1cb3f8c2e..14d9d2f58 100644
--- a/packages/repl/src/robotcode/repl/__version__.py
+++ b/packages/repl/src/robotcode/repl/__version__.py
@@ -1 +1 @@
-__version__ = "1.3.0-dev.2"
+__version__ = "1.7.0"
diff --git a/packages/repl_server/pyproject.toml b/packages/repl_server/pyproject.toml
index 35ba3814d..222fb9043 100644
--- a/packages/repl_server/pyproject.toml
+++ b/packages/repl_server/pyproject.toml
@@ -27,8 +27,8 @@ classifiers = [
]
dynamic = ["version"]
dependencies = [
- "robotcode-jsonrpc2==1.3.0-dev.2",
- "robotcode-runner==1.3.0-dev.2"
+ "robotcode-jsonrpc2==1.7.0",
+ "robotcode-runner==1.7.0"
]
[project.entry-points.robotcode]
diff --git a/packages/repl_server/src/robotcode/repl_server/__version__.py b/packages/repl_server/src/robotcode/repl_server/__version__.py
index 1cb3f8c2e..14d9d2f58 100644
--- a/packages/repl_server/src/robotcode/repl_server/__version__.py
+++ b/packages/repl_server/src/robotcode/repl_server/__version__.py
@@ -1 +1 @@
-__version__ = "1.3.0-dev.2"
+__version__ = "1.7.0"
diff --git a/packages/robot/pyproject.toml b/packages/robot/pyproject.toml
index 8fb4a55d7..985f5ded0 100644
--- a/packages/robot/pyproject.toml
+++ b/packages/robot/pyproject.toml
@@ -30,7 +30,7 @@ dependencies = [
"robotframework>=4.1.0",
"tomli>=1.1.0; python_version < '3.11'",
"platformdirs>=3.2.0,<4.4.0",
- "robotcode-core==1.3.0-dev.2",
+ "robotcode-core==1.7.0",
]
dynamic = ["version"]
diff --git a/packages/robot/src/robotcode/robot/__version__.py b/packages/robot/src/robotcode/robot/__version__.py
index 1cb3f8c2e..14d9d2f58 100644
--- a/packages/robot/src/robotcode/robot/__version__.py
+++ b/packages/robot/src/robotcode/robot/__version__.py
@@ -1 +1 @@
-__version__ = "1.3.0-dev.2"
+__version__ = "1.7.0"
diff --git a/packages/robot/src/robotcode/robot/diagnostics/document_cache_helper.py b/packages/robot/src/robotcode/robot/diagnostics/document_cache_helper.py
index 4a7abc8a2..b618521ba 100644
--- a/packages/robot/src/robotcode/robot/diagnostics/document_cache_helper.py
+++ b/packages/robot/src/robotcode/robot/diagnostics/document_cache_helper.py
@@ -589,7 +589,6 @@ def get_imports_manager_for_workspace_folder(self, folder: Optional[WorkspaceFol
return self._imports_managers[folder]
def calc_cache_path(self, folder_uri: Uri) -> Path:
- # TODO: cache path should be configurable, save cache in vscode workspace folder or in robotcode cache folder
return folder_uri.to_path()
def get_diagnostic_modifier(self, document: TextDocument) -> DiagnosticsModifier:
diff --git a/packages/robot/src/robotcode/robot/diagnostics/entities.py b/packages/robot/src/robotcode/robot/diagnostics/entities.py
index cdc23e0d0..8551497dc 100644
--- a/packages/robot/src/robotcode/robot/diagnostics/entities.py
+++ b/packages/robot/src/robotcode/robot/diagnostics/entities.py
@@ -19,7 +19,7 @@
from robotcode.core.lsp.types import Position, Range
from ..utils.ast import range_from_token
-from ..utils.variables import VariableMatcher
+from ..utils.variables import VariableMatcher, search_variable
if TYPE_CHECKING:
from robotcode.robot.diagnostics.library_doc import KeywordDoc, LibraryDoc
@@ -179,7 +179,8 @@ class VariableDefinitionType(Enum):
@dataclass
class VariableDefinition(SourceEntity):
name: str
- name_token: Optional[Token]
+ name_token: Optional[Token] # TODO: this is not needed anymore, but kept for compatibility
+
type: VariableDefinitionType = VariableDefinitionType.VARIABLE
has_value: bool = field(default=False, compare=False)
@@ -187,10 +188,17 @@ class VariableDefinition(SourceEntity):
value: Any = field(default=None, compare=False)
value_is_native: bool = field(default=False, compare=False)
+ value_type: Optional[str] = field(default=None, compare=False)
@functools.cached_property
def matcher(self) -> VariableMatcher:
- return VariableMatcher(self.name)
+ return search_variable(self.name)
+
+ @functools.cached_property
+ def convertable_name(self) -> str:
+ m = self.matcher
+ value_type = f": {self.value_type}" if self.value_type else ""
+ return f"{m.identifier}{{{m.base.strip()}{value_type}}}"
@single_call
def __hash__(self) -> int:
@@ -268,6 +276,15 @@ def __hash__(self) -> int:
return hash((type(self), self.name, self.type, self.range, self.source))
+@dataclass
+class EmbeddedArgumentDefinition(ArgumentDefinition):
+ pattern: Optional[str] = field(default=None, compare=False)
+
+ @single_call
+ def __hash__(self) -> int:
+ return hash((type(self), self.name, self.type, self.range, self.source))
+
+
@dataclass
class LibraryArgumentDefinition(ArgumentDefinition):
@single_call
diff --git a/packages/robot/src/robotcode/robot/diagnostics/errors.py b/packages/robot/src/robotcode/robot/diagnostics/errors.py
index 622f5f2ec..39fc4039a 100644
--- a/packages/robot/src/robotcode/robot/diagnostics/errors.py
+++ b/packages/robot/src/robotcode/robot/diagnostics/errors.py
@@ -39,6 +39,7 @@ class Error:
INVALID_HEADER = "InvalidHeader"
DEPRECATED_HEADER = "DeprecatedHeader"
OVERRIDDEN_BY_COMMANDLINE = "OverriddenByCommandLine"
+ OVERRIDES_IMPORTED_VARIABLE = "OverridesImportedVariable"
VARIABLE_ALREADY_DEFINED = "VariableAlreadyDefined"
VARIABLE_OVERRIDDEN = "VariableOverridden"
MODEL_ERROR = "ModelError"
diff --git a/packages/robot/src/robotcode/robot/diagnostics/imports_manager.py b/packages/robot/src/robotcode/robot/diagnostics/imports_manager.py
index b19af1027..3c0607aa9 100644
--- a/packages/robot/src/robotcode/robot/diagnostics/imports_manager.py
+++ b/packages/robot/src/robotcode/robot/diagnostics/imports_manager.py
@@ -1527,11 +1527,11 @@ def _get_entry_for_resource_import(
variables: Optional[Dict[str, Any]] = None,
) -> _ResourcesEntry:
source = self.find_resource(name, base_dir, variables=variables)
+ source_path = normalized_path(Path(source))
def _get_document() -> TextDocument:
- self._logger.debug(lambda: f"Load resource {name} from source {source}", context_name="import")
+ self._logger.debug(lambda: f"Load resource {name} from source {source_path}", context_name="import")
- source_path = normalized_path(Path(source))
extension = source_path.suffix
if extension.lower() not in RESOURCE_EXTENSIONS:
raise ImportError(
@@ -1541,7 +1541,7 @@ def _get_document() -> TextDocument:
return self.documents_manager.get_or_open_document(source_path)
- entry_key = _ResourcesEntryKey(source)
+ entry_key = _ResourcesEntryKey(str(source_path))
with self._resources_lock:
if entry_key not in self._resources:
diff --git a/packages/robot/src/robotcode/robot/diagnostics/keyword_finder.py b/packages/robot/src/robotcode/robot/diagnostics/keyword_finder.py
index f76ad2e3b..6c136a104 100644
--- a/packages/robot/src/robotcode/robot/diagnostics/keyword_finder.py
+++ b/packages/robot/src/robotcode/robot/diagnostics/keyword_finder.py
@@ -65,7 +65,6 @@ def reset_diagnostics(self) -> None:
self.multiple_keywords_result = None
self.result_bdd_prefix = None
- # TODO: make this threadsafe
def find_keyword(
self,
name: Optional[str],
@@ -87,9 +86,25 @@ def find_keyword(
try:
result = self._find_keyword(name, handle_bdd_style)
if result is None:
+ error_message = "No keyword with found."
+
+ if name and name.strip(": ").upper() == "FOR":
+ error_message = (
+ f"Support for the old FOR loop syntax has been removed. "
+ f"Replace '{name}' with 'FOR', end the loop with 'END', and "
+ f"remove escaping backslashes."
+ )
+ elif name and name == "\\":
+ error_message = (
+ "No keyword with name '\\' found. If it is used inside a for "
+ "loop, remove escaping backslashes and end the loop with 'END'."
+ )
+ else:
+ error_message = f"No keyword with name '{name}' found."
+
self.diagnostics.append(
DiagnosticsEntry(
- f"No keyword with name '{name}' found.",
+ error_message,
DiagnosticSeverity.ERROR,
Error.KEYWORD_NOT_FOUND,
)
@@ -306,17 +321,32 @@ def _is_worse_match_than_others(
return True
return False
- def _is_better_match(
- self,
- candidate: Tuple[Optional[LibraryEntry], KeywordDoc],
- other: Tuple[Optional[LibraryEntry], KeywordDoc],
- ) -> bool:
- return (
- other[1].matcher.embedded_arguments is not None
- and candidate[1].matcher.embedded_arguments is not None
- and other[1].matcher.embedded_arguments.match(candidate[1].name) is not None
- and candidate[1].matcher.embedded_arguments.match(other[1].name) is None
- )
+ if get_robot_version() >= (7, 3):
+
+ def _is_better_match(
+ self,
+ candidate: Tuple[Optional[LibraryEntry], KeywordDoc],
+ other: Tuple[Optional[LibraryEntry], KeywordDoc],
+ ) -> bool:
+ return (
+ other[1].matcher.embedded_arguments is not None
+ and candidate[1].matcher.embedded_arguments is not None
+ and other[1].matcher.embedded_arguments.matches(candidate[1].name)
+ and not candidate[1].matcher.embedded_arguments.matches(other[1].name)
+ )
+ else:
+
+ def _is_better_match(
+ self,
+ candidate: Tuple[Optional[LibraryEntry], KeywordDoc],
+ other: Tuple[Optional[LibraryEntry], KeywordDoc],
+ ) -> bool:
+ return (
+ other[1].matcher.embedded_arguments is not None
+ and candidate[1].matcher.embedded_arguments is not None
+ and other[1].matcher.embedded_arguments.match(candidate[1].name) is not None
+ and candidate[1].matcher.embedded_arguments.match(other[1].name) is None
+ )
@functools.cached_property
def _resource_imports(self) -> List[ResourceEntry]:
diff --git a/packages/robot/src/robotcode/robot/diagnostics/library_doc.py b/packages/robot/src/robotcode/robot/diagnostics/library_doc.py
index 3eb6ec76a..d77a59573 100644
--- a/packages/robot/src/robotcode/robot/diagnostics/library_doc.py
+++ b/packages/robot/src/robotcode/robot/diagnostics/library_doc.py
@@ -67,7 +67,7 @@
from ..utils import get_robot_version
from ..utils.ast import (
cached_isinstance,
- get_variable_token,
+ get_first_variable_token,
range_from_token,
strip_variable_token,
)
@@ -199,7 +199,7 @@ def convert_from_rest(text: str) -> str:
if get_robot_version() >= (6, 0):
- # monkey patch robot framework
+ # monkey patch robot framework for performance reasons
_old_from_name = EmbeddedArguments.from_name
@functools.lru_cache(maxsize=8192)
@@ -214,8 +214,14 @@ def _get_embedded_arguments(name: str) -> Any:
except (VariableError, DataError):
return ()
- def _match_embedded(embedded_arguments: EmbeddedArguments, name: str) -> bool:
- return embedded_arguments.match(name) is not None
+ if get_robot_version() >= (7, 3):
+
+ def _match_embedded(embedded_arguments: EmbeddedArguments, name: str) -> bool:
+ return bool(embedded_arguments.matches(name))
+ else:
+
+ def _match_embedded(embedded_arguments: EmbeddedArguments, name: str) -> bool:
+ return embedded_arguments.match(name) is not None
else:
@@ -1322,7 +1328,7 @@ def get_module_spec(module_name: str) -> Optional[ModuleSpec]:
member_name = m + "." + member_name if m and member_name is not None else m
if result is not None:
- return ModuleSpec( # type: ignore
+ return ModuleSpec(
name=result.name,
origin=result.origin,
submodule_search_locations=(
@@ -2779,7 +2785,7 @@ def _get_argument_definitions_from_line(
for argument_token in (cast(RobotToken, e) for e in arguments):
try:
- argument = get_variable_token(argument_token)
+ argument = get_first_variable_token(argument_token)
if argument is not None and argument.value != "@{}":
if argument.value not in args:
diff --git a/packages/robot/src/robotcode/robot/diagnostics/namespace.py b/packages/robot/src/robotcode/robot/diagnostics/namespace.py
index 7fd2fff4f..dc00497df 100644
--- a/packages/robot/src/robotcode/robot/diagnostics/namespace.py
+++ b/packages/robot/src/robotcode/robot/diagnostics/namespace.py
@@ -46,7 +46,9 @@
from robotcode.core.utils.logging import LoggingDescriptor
from robotcode.core.utils.path import same_file
+from ..utils import get_robot_version
from ..utils.ast import (
+ get_first_variable_token,
range_from_node,
range_from_token,
strip_variable_token,
@@ -58,7 +60,6 @@
InvalidVariableError,
VariableMatcher,
is_scalar_assign,
- is_variable,
search_variable,
)
from ..utils.visitor import Visitor
@@ -93,6 +94,9 @@
)
from .namespace_analyzer import NamespaceAnalyzer
+if get_robot_version() >= (7, 0):
+ from robot.parsing.model.statements import Var
+
class DiagnosticsError(Exception):
pass
@@ -126,16 +130,11 @@ def visit_Variable(self, node: Statement) -> None: # noqa: N802
if name_token is None:
return
- name = name_token.value
-
- if name is not None:
- match = search_variable(name, ignore_errors=True)
- if not match.is_assign(allow_assign_mark=True):
+ if name_token.value is not None:
+ matcher = search_variable(name_token.value, ignore_errors=True, parse_type=True)
+ if not matcher.is_assign(allow_assign_mark=True) or matcher.name is None:
return
- if name.endswith("="):
- name = name[:-1].rstrip()
-
values = node.get_values(Token.ARGUMENT)
has_value = bool(values)
value = tuple(
@@ -146,26 +145,21 @@ def visit_Variable(self, node: Statement) -> None: # noqa: N802
for s in values
)
+ stripped_name_token = strip_variable_token(name_token, matcher=matcher, parse_type=True)
+
self._results.append(
VariableDefinition(
- name=name,
- name_token=strip_variable_token(
- Token(
- name_token.type,
- name,
- name_token.lineno,
- name_token.col_offset,
- name_token.error,
- )
- ),
- line_no=node.lineno,
- col_offset=node.col_offset,
- end_line_no=node.lineno,
- end_col_offset=node.end_col_offset,
+ name=matcher.name,
+ name_token=stripped_name_token,
+ line_no=stripped_name_token.lineno,
+ col_offset=stripped_name_token.col_offset,
+ end_line_no=stripped_name_token.lineno,
+ end_col_offset=stripped_name_token.end_col_offset,
source=self.source,
has_value=has_value,
resolvable=True,
value=value,
+ value_type=matcher.type,
)
)
@@ -185,24 +179,11 @@ def __init__(
self.position = position
self.in_args = in_args
- self._results: Dict[str, VariableDefinition] = {}
+ self._results: Dict[VariableMatcher, VariableDefinition] = {}
self.current_kw_doc: Optional[KeywordDoc] = None
self.current_kw: Optional[Keyword] = None
self._resolved_variables: Any = resolved_variables
- def get_variable_token(self, token: Token) -> Optional[Token]:
- return next(
- (
- v
- for v in itertools.dropwhile(
- lambda t: t.type in Token.NON_DATA_TOKENS,
- tokenize_variables(token, ignore_errors=True, extra_types={Token.VARIABLE}),
- )
- if v.type == Token.VARIABLE
- ),
- None,
- )
-
class ArgumentVisitor(VariableVisitorBase):
def __init__(
@@ -217,7 +198,7 @@ def __init__(
self.current_kw_doc: Optional[KeywordDoc] = current_kw_doc
- def get(self, model: ast.AST) -> Dict[str, VariableDefinition]:
+ def get(self, model: ast.AST) -> Dict[VariableMatcher, VariableDefinition]:
self._results = {}
self.visit(model)
@@ -225,13 +206,11 @@ def get(self, model: ast.AST) -> Dict[str, VariableDefinition]:
return self._results
def visit_Arguments(self, node: Statement) -> None: # noqa: N802
- args: List[str] = []
+ args: Dict[VariableMatcher, VariableDefinition] = {}
- arguments = node.get_tokens(Token.ARGUMENT)
-
- for argument_token in arguments:
+ for argument_token in node.get_tokens(Token.ARGUMENT):
try:
- argument = self.get_variable_token(argument_token)
+ argument = get_first_variable_token(argument_token)
if argument is not None and argument.value != "@{}":
if (
@@ -242,19 +221,27 @@ def visit_Arguments(self, node: Statement) -> None: # noqa: N802
):
break
- if argument.value not in args:
- args.append(argument.value)
+ matcher = VariableMatcher(argument.value, parse_type=True, ignore_errors=True)
+ if not matcher.is_variable() or matcher.name is None:
+ continue
+
+ stripped_argument_token = strip_variable_token(argument, parse_type=True, matcher=matcher)
+
+ if matcher not in args:
arg_def = ArgumentDefinition(
- name=argument.value,
- name_token=strip_variable_token(argument),
- line_no=argument.lineno,
- col_offset=argument.col_offset,
- end_line_no=argument.lineno,
- end_col_offset=argument.end_col_offset,
+ name=matcher.name,
+ name_token=stripped_argument_token,
+ line_no=stripped_argument_token.lineno,
+ col_offset=stripped_argument_token.col_offset,
+ end_line_no=stripped_argument_token.lineno,
+ end_col_offset=stripped_argument_token.end_col_offset,
source=self.namespace.source,
keyword_doc=self.current_kw_doc,
+ value_type=matcher.type,
)
- self._results[argument.value] = arg_def
+
+ args[matcher] = arg_def
+ self._results[matcher] = arg_def
except VariableError:
pass
@@ -301,7 +288,7 @@ def visit_KeywordName(self, node: Statement) -> None: # noqa: N802
full_name = f"{match.identifier}{{{name}}}"
var_token = strip_variable_token(variable_token)
var_token.value = name
- self._results[full_name] = ArgumentDefinition(
+ self._results[match] = ArgumentDefinition(
name=full_name,
name_token=var_token,
line_no=variable_token.lineno,
@@ -325,7 +312,7 @@ def visit_ExceptHeader(self, node: Statement) -> None: # noqa: N802
variables = node.get_tokens(Token.VARIABLE)[:1]
if variables and is_scalar_assign(variables[0].value):
try:
- variable = self.get_variable_token(variables[0])
+ variable = get_first_variable_token(variables[0])
if variable is not None:
self._results[variable.value] = LocalVariableDefinition(
@@ -384,171 +371,213 @@ def visit_KeywordCall(self, node: Statement) -> None: # noqa: N802
# TODO analyze "Set Local/Global/Suite Variable"
for assign_token in node.get_tokens(Token.ASSIGN):
- variable_token = self.get_variable_token(assign_token)
-
+ if (
+ self.position is not None
+ and self.position in range_from_node(node)
+ and self.position > range_from_token(assign_token).end
+ ):
+ continue
try:
- if variable_token is not None:
- if (
- self.position is not None
- and self.position in range_from_node(node)
- and self.position > range_from_token(variable_token).end
- ):
- continue
+ matcher = search_variable(
+ assign_token.value[:-1].rstrip() if assign_token.value.endswith("=") else assign_token.value,
+ parse_type=True,
+ ignore_errors=True,
+ )
- if variable_token.value not in self._results:
- self._results[variable_token.value] = LocalVariableDefinition(
- name=variable_token.value,
- name_token=strip_variable_token(variable_token),
- line_no=variable_token.lineno,
- col_offset=variable_token.col_offset,
- end_line_no=variable_token.lineno,
- end_col_offset=variable_token.end_col_offset,
- source=self.namespace.source,
- )
+ if not matcher.is_assign(allow_assign_mark=True) or matcher.name is None:
+ continue
+
+ if matcher not in self._results:
+ stripped_name_token = strip_variable_token(assign_token, matcher=matcher, parse_type=True)
+
+ self._results[matcher] = LocalVariableDefinition(
+ name=matcher.name,
+ name_token=stripped_name_token,
+ line_no=stripped_name_token.lineno,
+ col_offset=stripped_name_token.col_offset,
+ end_line_no=stripped_name_token.lineno,
+ end_col_offset=stripped_name_token.end_col_offset,
+ source=self.namespace.source,
+ value_type=matcher.type,
+ )
except VariableError:
pass
- keyword_token = node.get_token(Token.KEYWORD)
- if keyword_token is None or not keyword_token.value:
- return
-
- keyword = self.namespace.find_keyword(keyword_token.value, raise_keyword_error=False)
- if keyword is None:
- return
+ # TODO: analyse Set Suite/Test/Global Variable keywords
+ # keyword_token = node.get_token(Token.KEYWORD)
+ # if keyword_token is None or not keyword_token.value:
+ # return
+
+ # keyword = self.namespace.find_keyword(keyword_token.value, raise_keyword_error=False)
+ # if keyword is None:
+ # return
+
+ # if keyword.libtype == "LIBRARY" and keyword.libname == "BuiltIn":
+ # var_type = None
+ # if keyword.name == "Set Suite Variable":
+ # var_type = VariableDefinition
+ # elif keyword.name == "Set Global Variable":
+ # var_type = GlobalVariableDefinition
+ # elif keyword.name == "Set Test Variable" or keyword.name == "Set Task Variable":
+ # var_type = TestVariableDefinition
+ # elif keyword.name == "Set Local Variable":
+ # var_type = LocalVariableDefinition
+ # else:
+ # return
+ # try:
+ # variable = node.get_token(Token.ARGUMENT)
+ # if variable is None:
+ # return
+
+ # position = range_from_node(node).start
+ # position.character = 0
+ # var_name = self._get_var_name(variable.value, position)
+
+ # if var_name is None or not is_variable(var_name):
+ # return
+
+ # var = var_type(
+ # name=var_name,
+ # name_token=strip_variable_token(variable),
+ # line_no=variable.lineno,
+ # col_offset=variable.col_offset,
+ # end_line_no=variable.lineno,
+ # end_col_offset=variable.end_col_offset,
+ # source=self.namespace.source,
+ # )
+
+ # if var_name not in self._results or type(self._results[var_name]) is not type(var):
+ # if isinstance(var, LocalVariableDefinition) or not any(
+ # l for l in self.namespace.get_global_variables() if l.matcher == var.matcher
+ # ):
+ # self._results[var_name] = var
+ # else:
+ # self._results.pop(var_name, None)
+
+ # except VariableError:
+ # pass
- if keyword.libtype == "LIBRARY" and keyword.libname == "BuiltIn":
- var_type = None
- if keyword.name == "Set Suite Variable":
- var_type = VariableDefinition
- elif keyword.name == "Set Global Variable":
- var_type = GlobalVariableDefinition
- elif keyword.name == "Set Test Variable" or keyword.name == "Set Task Variable":
- var_type = TestVariableDefinition
- elif keyword.name == "Set Local Variable":
- var_type = LocalVariableDefinition
- else:
- return
+ def visit_InlineIfHeader(self, node: Statement) -> None: # noqa: N802
+ for assign_token in node.get_tokens(Token.ASSIGN):
+ if (
+ self.position is not None
+ and self.position in range_from_node(node)
+ and self.position > range_from_token(assign_token).end
+ ):
+ continue
try:
- variable = node.get_token(Token.ARGUMENT)
- if variable is None:
- return
-
- position = range_from_node(node).start
- position.character = 0
- var_name = self._get_var_name(variable.value, position)
+ matcher = search_variable(
+ assign_token.value[:-1].rstrip() if assign_token.value.endswith("=") else assign_token.value,
+ parse_type=True,
+ ignore_errors=True,
+ )
- if var_name is None or not is_variable(var_name):
- return
+ if not matcher.is_assign(allow_assign_mark=True) or matcher.name is None:
+ continue
- var = var_type(
- name=var_name,
- name_token=strip_variable_token(variable),
- line_no=variable.lineno,
- col_offset=variable.col_offset,
- end_line_no=variable.lineno,
- end_col_offset=variable.end_col_offset,
- source=self.namespace.source,
- )
+ if matcher not in self._results:
+ stripped_name_token = strip_variable_token(assign_token, matcher=matcher, parse_type=True)
- if var_name not in self._results or type(self._results[var_name]) is not type(var):
- if isinstance(var, LocalVariableDefinition) or not any(
- l for l in self.namespace.get_global_variables() if l.matcher == var.matcher
- ):
- self._results[var_name] = var
- else:
- self._results.pop(var_name, None)
+ self._results[matcher] = LocalVariableDefinition(
+ name=matcher.name,
+ name_token=stripped_name_token,
+ line_no=stripped_name_token.lineno,
+ col_offset=stripped_name_token.col_offset,
+ end_line_no=stripped_name_token.lineno,
+ end_col_offset=stripped_name_token.end_col_offset,
+ source=self.namespace.source,
+ value_type=matcher.type,
+ )
except VariableError:
pass
- def visit_InlineIfHeader(self, node: Statement) -> None: # noqa: N802
- for assign_token in node.get_tokens(Token.ASSIGN):
- variable_token = self.get_variable_token(assign_token)
-
+ def visit_ForHeader(self, node: Statement) -> None: # noqa: N802
+ for assign_token in node.get_tokens(Token.VARIABLE):
+ if (
+ self.position is not None
+ and self.position in range_from_node(node)
+ and self.position > range_from_token(assign_token).end
+ ):
+ continue
try:
- if variable_token is not None:
- if (
- self.position is not None
- and self.position in range_from_node(node)
- and self.position > range_from_token(variable_token).end
- ):
- continue
+ matcher = search_variable(
+ assign_token.value[:-1].rstrip() if assign_token.value.endswith("=") else assign_token.value,
+ parse_type=True,
+ ignore_errors=True,
+ )
- if variable_token.value not in self._results:
- self._results[variable_token.value] = LocalVariableDefinition(
- name=variable_token.value,
- name_token=strip_variable_token(variable_token),
- line_no=variable_token.lineno,
- col_offset=variable_token.col_offset,
- end_line_no=variable_token.lineno,
- end_col_offset=variable_token.end_col_offset,
- source=self.namespace.source,
- )
+ if not matcher.is_assign(allow_assign_mark=True) or matcher.name is None:
+ continue
- except VariableError:
- pass
+ if matcher not in self._results:
+ stripped_name_token = strip_variable_token(assign_token, matcher=matcher, parse_type=True)
- def visit_ForHeader(self, node: Statement) -> None: # noqa: N802
- variables = node.get_tokens(Token.VARIABLE)
- for variable in variables:
- variable_token = self.get_variable_token(variable)
- if variable_token is not None and variable_token.value and variable_token.value not in self._results:
- self._results[variable_token.value] = LocalVariableDefinition(
- name=variable_token.value,
- name_token=strip_variable_token(variable_token),
- line_no=variable_token.lineno,
- col_offset=variable_token.col_offset,
- end_line_no=variable_token.lineno,
- end_col_offset=variable_token.end_col_offset,
- source=self.namespace.source,
- )
+ self._results[matcher] = LocalVariableDefinition(
+ name=matcher.name,
+ name_token=stripped_name_token,
+ line_no=stripped_name_token.lineno,
+ col_offset=stripped_name_token.col_offset,
+ end_line_no=stripped_name_token.lineno,
+ end_col_offset=stripped_name_token.end_col_offset,
+ source=self.namespace.source,
+ value_type=matcher.type,
+ )
- def visit_Var(self, node: Statement) -> None: # noqa: N802
- from robot.parsing.model.statements import Var
+ except VariableError:
+ pass
- variable = node.get_token(Token.VARIABLE)
- if variable is None:
- return
- try:
- var_name = variable.value
- if var_name.endswith("="):
- var_name = var_name[:-1].rstrip()
+ if get_robot_version() >= (7, 0):
- if not is_variable(var_name):
+ def visit_Var(self, node: Var) -> None: # noqa: N802
+ name_token = node.get_token(Token.VARIABLE)
+ if name_token is None:
return
- scope = cast(Var, node).scope
+ try:
+ matcher = search_variable(
+ name_token.value[:-1].rstrip() if name_token.value.endswith("=") else name_token.value,
+ parse_type=True,
+ ignore_errors=True,
+ )
+ if not matcher.is_assign(allow_assign_mark=True) or matcher.name is None:
+ return
+
+ stripped_name_token = strip_variable_token(name_token, matcher=matcher, parse_type=True)
- if scope in ("SUITE",):
- var_type = VariableDefinition
- elif scope in ("TEST", "TASK"):
- var_type = TestVariableDefinition
- elif scope in ("GLOBAL",):
- var_type = GlobalVariableDefinition
- else:
- var_type = LocalVariableDefinition
-
- var = var_type(
- name=var_name,
- name_token=strip_variable_token(variable),
- line_no=variable.lineno,
- col_offset=variable.col_offset,
- end_line_no=variable.lineno,
- end_col_offset=variable.end_col_offset,
- source=self.namespace.source,
- )
+ scope = node.scope
- if var_name not in self._results or type(self._results[var_name]) is not type(var):
- if isinstance(var, LocalVariableDefinition) or not any(
- l for l in self.namespace.get_global_variables() if l.matcher == var.matcher
- ):
- self._results[var_name] = var
+ if scope in ("SUITE",):
+ var_type = VariableDefinition
+ elif scope in ("TEST", "TASK"):
+ var_type = TestVariableDefinition
+ elif scope in ("GLOBAL",):
+ var_type = GlobalVariableDefinition
else:
- self._results.pop(var_name, None)
+ var_type = LocalVariableDefinition
- except VariableError:
- pass
+ var = var_type(
+ name=matcher.name,
+ name_token=stripped_name_token,
+ line_no=stripped_name_token.lineno,
+ col_offset=stripped_name_token.col_offset,
+ end_line_no=stripped_name_token.lineno,
+ end_col_offset=stripped_name_token.end_col_offset,
+ source=self.namespace.source,
+ value_type=matcher.type,
+ )
+
+ if matcher not in self._results or type(self._results[matcher]) is not type(var):
+ if isinstance(var, LocalVariableDefinition) or not any(
+ l for l in self.namespace.get_global_variables() if l.matcher == var.matcher
+ ):
+ self._results[matcher] = var
+ else:
+ self._results.pop(matcher, None)
+
+ except VariableError:
+ pass
class ImportVisitor(Visitor):
@@ -1087,8 +1116,8 @@ def yield_variables(
else []
),
[] if skip_global_variables or skip_commandline_variables else self.get_command_line_variables(),
- [] if skip_global_variables else self.get_own_variables(),
[] if skip_global_variables else self.get_imported_variables(),
+ [] if skip_global_variables else self.get_own_variables(),
[] if skip_global_variables else self.get_builtin_variables(),
)
)
@@ -1119,7 +1148,7 @@ def get_resolvable_variables(
) -> Dict[str, Any]:
if nodes:
return {
- v.name: v.value
+ v.convertable_name: v.value
for k, v in self.yield_variables(nodes, position, skip_commandline_variables=True)
if v.has_value
}
@@ -1127,7 +1156,7 @@ def get_resolvable_variables(
with self._global_resolvable_variables_lock:
if self._global_resolvable_variables is None:
self._global_resolvable_variables = {
- v.name: v.value
+ v.convertable_name: v.value
for k, v in self.yield_variables(nodes, position, skip_commandline_variables=True)
if v.has_value
}
@@ -1153,7 +1182,9 @@ def get_variable_matchers(
) -> Dict[VariableMatcher, VariableDefinition]:
self.ensure_initialized()
- return {m: v for m, v in self.yield_variables(nodes, position)}
+ # return {m: v for m, v in self.yield_variables(nodes, position)}
+ l = list(self.yield_variables(nodes, position))
+ return dict(reversed(l))
@_logger.call
def find_variable(
diff --git a/packages/robot/src/robotcode/robot/diagnostics/namespace_analyzer.py b/packages/robot/src/robotcode/robot/diagnostics/namespace_analyzer.py
index 75ac7588b..10b9e41b7 100644
--- a/packages/robot/src/robotcode/robot/diagnostics/namespace_analyzer.py
+++ b/packages/robot/src/robotcode/robot/diagnostics/namespace_analyzer.py
@@ -1,7 +1,7 @@
import ast
import functools
-import itertools
import os
+import re
import token as python_token
from collections import defaultdict
from concurrent.futures import CancelledError
@@ -47,6 +47,7 @@
from ..utils import get_robot_version
from ..utils.ast import (
+ get_first_variable_token,
is_not_variable_token,
range_from_node,
range_from_node_or_token,
@@ -58,14 +59,13 @@
InvalidVariableError,
VariableMatcher,
contains_variable,
- is_scalar_assign,
- is_variable,
search_variable,
split_from_equals,
)
from ..utils.visitor import Visitor
from .entities import (
ArgumentDefinition,
+ EmbeddedArgumentDefinition,
EnvironmentVariableDefinition,
GlobalVariableDefinition,
LibraryEntry,
@@ -195,14 +195,15 @@ def _visit_Variable(self, node: Variable) -> None: # noqa: N802
if name_token.value is not None:
matcher = search_variable(
name_token.value[:-1].rstrip() if name_token.value.endswith("=") else name_token.value,
+ parse_type=True,
ignore_errors=True,
)
- if not matcher.is_assign(allow_assign_mark=True) or matcher.name is None:
+ if not matcher.is_assign(allow_assign_mark=True, allow_nested=True) or matcher.name is None:
return
name = matcher.name
- stripped_name_token = strip_variable_token(name_token, matcher=matcher)
+ stripped_name_token = strip_variable_token(name_token, matcher=matcher, parse_type=True)
r = range_from_token(stripped_name_token)
@@ -221,17 +222,39 @@ def _visit_Variable(self, node: Variable) -> None: # noqa: N802
var_def = VariableDefinition(
name=name,
name_token=stripped_name_token,
- line_no=node.lineno,
- col_offset=node.col_offset,
- end_line_no=node.lineno,
- end_col_offset=node.end_col_offset,
+ line_no=stripped_name_token.lineno,
+ col_offset=stripped_name_token.col_offset,
+ end_line_no=stripped_name_token.lineno,
+ end_col_offset=stripped_name_token.end_col_offset,
source=self._namespace.source,
has_value=has_value,
resolvable=True,
value=value,
+ value_type=matcher.type,
)
add_to_references = True
+
+ if existing_var is not None and existing_var.type == VariableDefinitionType.IMPORTED_VARIABLE:
+ self._append_diagnostics(
+ r,
+ "Overrides imported variable.",
+ DiagnosticSeverity.WARNING,
+ Error.OVERRIDES_IMPORTED_VARIABLE,
+ related_information=[
+ DiagnosticRelatedInformation(
+ location=Location(
+ uri=str(Uri.from_path(existing_var.source)),
+ range=existing_var.range,
+ ),
+ message="Already defined here.",
+ )
+ ]
+ if existing_var.source
+ else None,
+ )
+ existing_var = None
+
first_overidden_reference: Optional[VariableDefinition] = None
if existing_var is not None:
self._variable_references[existing_var].add(Location(self._namespace.document_uri, r))
@@ -322,26 +345,25 @@ def _visit_Variable(self, node: Variable) -> None: # noqa: N802
if get_robot_version() >= (7, 0):
- def visit_Var(self, node: Statement) -> None: # noqa: N802
+ def visit_Var(self, node: Var) -> None: # noqa: N802
self._analyze_statement_variables(node)
- variable = node.get_token(Token.VARIABLE)
- if variable is None:
+ name_token = node.get_token(Token.VARIABLE)
+ if name_token is None:
return
try:
- var_name = variable.value
- if var_name.endswith("="):
- var_name = var_name[:-1].rstrip()
-
- if not is_variable(var_name):
+ matcher = search_variable(
+ name_token.value[:-1].rstrip() if name_token.value.endswith("=") else name_token.value,
+ parse_type=True,
+ ignore_errors=True,
+ )
+ if not matcher.is_assign(allow_assign_mark=True) or matcher.name is None:
return
- stripped_variable = strip_variable_token(
- Token(variable.type, var_name, variable.lineno, variable.col_offset, variable.error)
- )
+ stripped_name_token = strip_variable_token(name_token, matcher=matcher, parse_type=True)
- scope = cast(Var, node).scope
+ scope = node.scope
if scope:
scope = scope.upper()
@@ -355,13 +377,14 @@ def visit_Var(self, node: Statement) -> None: # noqa: N802
var_type = LocalVariableDefinition
var = var_type(
- name=var_name,
- name_token=strip_variable_token(stripped_variable),
- line_no=stripped_variable.lineno,
- col_offset=stripped_variable.col_offset,
- end_line_no=stripped_variable.lineno,
- end_col_offset=stripped_variable.end_col_offset,
+ name=matcher.name,
+ name_token=stripped_name_token,
+ line_no=stripped_name_token.lineno,
+ col_offset=stripped_name_token.col_offset,
+ end_line_no=stripped_name_token.lineno,
+ end_col_offset=stripped_name_token.end_col_offset,
source=self._namespace.source,
+ value_type=matcher.type,
)
if var.matcher not in self._variables:
@@ -370,9 +393,7 @@ def visit_Var(self, node: Statement) -> None: # noqa: N802
else:
existing_var = self._variables[var.matcher]
- location = Location(
- self._namespace.document_uri, range_from_token(strip_variable_token(stripped_variable))
- )
+ location = Location(self._namespace.document_uri, range_from_token(stripped_name_token))
self._variable_references[existing_var].add(location)
if existing_var in self._overridden_variables:
self._variable_references[self._overridden_variables[existing_var]].add(location)
@@ -1135,6 +1156,8 @@ def visit_Keyword(self, node: Keyword) -> None: # noqa: N802
self._current_testcase_or_keyword_name = None
self._current_keyword_doc = None
+ EMBEDDED_ARGUMENTS_MATCHER = re.compile("([^:]+): ([^:]+)(:(.*))?")
+
def visit_KeywordName(self, node: KeywordName) -> None: # noqa: N802
name_token = node.get_token(Token.KEYWORD_NAME)
@@ -1144,14 +1167,28 @@ def visit_KeywordName(self, node: KeywordName) -> None: # noqa: N802
tokenize_variables(name_token, identifiers="$", ignore_errors=True),
):
if variable_token.value:
- match = search_variable(variable_token.value, "$", ignore_errors=True)
- if match.base is None:
+ matcher = search_variable(variable_token.value, "$", ignore_errors=True)
+ if matcher.base is None:
continue
- name = match.base.split(":", 1)[0]
- full_name = f"{match.identifier}{{{name}}}"
+ if ":" not in matcher.base:
+ name = matcher.base
+ pattern = None
+ type = None
+ elif get_robot_version() >= (7, 3):
+ re_match = self.EMBEDDED_ARGUMENTS_MATCHER.fullmatch(matcher.base)
+ if re_match:
+ name, type, _, pattern = re_match.groups()
+ else:
+ name, pattern = matcher.base.split(":", 1)
+ type = None
+ else:
+ name, pattern = matcher.base.split(":", 1)
+ type = None
+
+ full_name = f"{matcher.identifier}{{{name}}}"
var_token = strip_variable_token(variable_token)
var_token.value = name
- arg_def = ArgumentDefinition(
+ arg_def = EmbeddedArgumentDefinition(
name=full_name,
name_token=var_token,
line_no=variable_token.lineno,
@@ -1160,32 +1197,19 @@ def visit_KeywordName(self, node: KeywordName) -> None: # noqa: N802
end_col_offset=variable_token.end_col_offset,
source=self._namespace.source,
keyword_doc=self._current_keyword_doc,
+ value_type=type,
+ pattern=pattern,
)
self._variables[arg_def.matcher] = arg_def
self._variable_references[arg_def] = set()
- def _get_variable_token(self, token: Token) -> Optional[Token]:
- return next(
- (
- v
- for v in itertools.dropwhile(
- lambda t: t.type in Token.NON_DATA_TOKENS,
- tokenize_variables(token, ignore_errors=True, extra_types={Token.VARIABLE}),
- )
- if v.type == Token.VARIABLE
- ),
- None,
- )
-
def _visit_Arguments(self, node: Statement) -> None: # noqa: N802
args: Dict[VariableMatcher, VariableDefinition] = {}
- arguments = node.get_tokens(Token.ARGUMENT)
-
- for argument_token in arguments:
+ for argument_token in node.get_tokens(Token.ARGUMENT):
try:
- argument = self._get_variable_token(argument_token)
+ argument = get_first_variable_token(argument_token)
if argument is not None and argument.value != "@{}":
if len(argument_token.value) > len(argument.value):
@@ -1199,18 +1223,23 @@ def _visit_Arguments(self, node: Statement) -> None: # noqa: N802
)
)
- matcher = VariableMatcher(argument.value)
+ matcher = VariableMatcher(argument.value, parse_type=True, ignore_errors=True)
+ if not matcher.is_variable() or matcher.name is None:
+ continue
+
+ stripped_argument_token = strip_variable_token(argument, parse_type=True, matcher=matcher)
if matcher not in args:
arg_def = ArgumentDefinition(
- name=argument.value,
- name_token=strip_variable_token(argument),
- line_no=argument.lineno,
- col_offset=argument.col_offset,
- end_line_no=argument.lineno,
- end_col_offset=argument.end_col_offset,
+ name=matcher.name,
+ name_token=stripped_argument_token,
+ line_no=stripped_argument_token.lineno,
+ col_offset=stripped_argument_token.col_offset,
+ end_line_no=stripped_argument_token.lineno,
+ end_col_offset=stripped_argument_token.end_col_offset,
source=self._namespace.source,
keyword_doc=self._current_keyword_doc,
+ value_type=matcher.type,
)
args[matcher] = arg_def
@@ -1220,10 +1249,7 @@ def _visit_Arguments(self, node: Statement) -> None: # noqa: N802
self._variable_references[arg_def] = set()
else:
self._variable_references[args[matcher]].add(
- Location(
- self._namespace.document_uri,
- range_from_token(strip_variable_token(argument)),
- )
+ Location(self._namespace.document_uri, range_from_token(stripped_argument_token))
)
except (VariableError, InvalidVariableError):
@@ -1232,75 +1258,79 @@ def _visit_Arguments(self, node: Statement) -> None: # noqa: N802
def _analyze_assign_statement(self, node: Statement) -> None:
token_with_assign_mark: Optional[Token] = None
for assign_token in node.get_tokens(Token.ASSIGN):
- variable_token = self._get_variable_token(assign_token)
+ try:
+ if token_with_assign_mark is not None:
+ r = range_from_token(token_with_assign_mark)
+ r.start.character = r.end.character - 1
+ self._append_diagnostics(
+ range=r,
+ message="Assign mark '=' can be used only with the last variable.",
+ severity=DiagnosticSeverity.ERROR,
+ code=Error.ASSIGN_MARK_ALLOWED_ONLY_ON_LAST_VAR,
+ )
- if token_with_assign_mark is not None:
- r = range_from_token(token_with_assign_mark)
- r.start.character = r.end.character - 1
- self._append_diagnostics(
- range=r,
- message="Assign mark '=' can be used only with the last variable.",
- severity=DiagnosticSeverity.ERROR,
- code=Error.ASSIGN_MARK_ALLOWED_ONLY_ON_LAST_VAR,
+ if assign_token.value.endswith("="):
+ token_with_assign_mark = assign_token
+
+ matcher = search_variable(
+ assign_token.value[:-1].rstrip() if assign_token.value.endswith("=") else assign_token.value,
+ parse_type=True,
+ ignore_errors=True,
)
- if assign_token.value.endswith("="):
- token_with_assign_mark = assign_token
+ if not matcher.is_assign(allow_assign_mark=True) or matcher.name is None:
+ return
- try:
- if variable_token is not None:
- matcher = VariableMatcher(variable_token.value)
- stripped_variable_token = strip_variable_token(variable_token, matcher=matcher)
- if matcher.name is None:
- return
+ stripped_name_token = strip_variable_token(assign_token, matcher=matcher, parse_type=True)
- if matcher.items:
- existing_var = self._find_variable(matcher.name)
- if existing_var is None:
- self._handle_find_variable_result(
- stripped_variable_token,
- VariableNotFoundDefinition(
- stripped_variable_token.lineno,
- stripped_variable_token.col_offset,
- stripped_variable_token.lineno,
- stripped_variable_token.end_col_offset,
- self._namespace.source,
- matcher.name,
- stripped_variable_token,
- ),
- )
- return
- else:
- existing_var = next(
- (
- v
- for k, v in self._variables.items()
- if k == matcher
- and v.type in [VariableDefinitionType.ARGUMENT, VariableDefinitionType.LOCAL_VARIABLE]
+ if matcher.items:
+ existing_var = self._find_variable(matcher.name)
+ if existing_var is None:
+ self._handle_find_variable_result(
+ stripped_name_token,
+ VariableNotFoundDefinition(
+ stripped_name_token.lineno,
+ stripped_name_token.col_offset,
+ stripped_name_token.lineno,
+ stripped_name_token.end_col_offset,
+ self._namespace.source,
+ matcher.name,
+ stripped_name_token,
),
- None,
)
+ return
+ else:
+ existing_var = next(
+ (
+ v
+ for k, v in self._variables.items()
+ if k == matcher
+ and v.type in [VariableDefinitionType.ARGUMENT, VariableDefinitionType.LOCAL_VARIABLE]
+ ),
+ None,
+ )
- if existing_var is None:
- var_def = LocalVariableDefinition(
- name=matcher.name,
- name_token=stripped_variable_token,
- line_no=variable_token.lineno,
- col_offset=variable_token.col_offset,
- end_line_no=variable_token.lineno,
- end_col_offset=variable_token.end_col_offset,
- source=self._namespace.source,
- )
- self._variables[matcher] = var_def
- self._variable_references[var_def] = set()
- self._local_variable_assignments[var_def].add(var_def.range)
- else:
- self._variable_references[existing_var].add(
- Location(
- self._namespace.document_uri,
- range_from_token(stripped_variable_token),
- )
+ if existing_var is None:
+ var_def = LocalVariableDefinition(
+ name=matcher.name,
+ name_token=stripped_name_token,
+ line_no=stripped_name_token.lineno,
+ col_offset=stripped_name_token.col_offset,
+ end_line_no=stripped_name_token.lineno,
+ end_col_offset=stripped_name_token.end_col_offset,
+ source=self._namespace.source,
+ value_type=matcher.type,
+ )
+ self._variables[matcher] = var_def
+ self._variable_references[var_def] = set()
+ self._local_variable_assignments[var_def].add(var_def.range)
+ else:
+ self._variable_references[existing_var].add(
+ Location(
+ self._namespace.document_uri,
+ range_from_token(stripped_name_token),
)
+ )
except (VariableError, InvalidVariableError):
pass
@@ -1313,24 +1343,27 @@ def visit_InlineIfHeader(self, node: Statement) -> None: # noqa: N802
def visit_ForHeader(self, node: Statement) -> None: # noqa: N802
self._analyze_statement_variables(node)
- variables = node.get_tokens(Token.VARIABLE)
- for variable in variables:
- variable_token = self._get_variable_token(variable)
- if variable_token is not None and is_variable(variable_token.value):
- existing_var = self._find_variable(variable_token.value)
+ for variable_token in node.get_tokens(Token.VARIABLE):
+ matcher = search_variable(variable_token.value, ignore_errors=True, parse_type=True)
+
+ if matcher.name is not None and matcher.is_scalar_assign():
+ existing_var = self._find_variable(matcher.name)
+
+ stripped_variable_token = strip_variable_token(variable_token, parse_type=True, matcher=matcher)
if existing_var is None or existing_var.type not in [
VariableDefinitionType.ARGUMENT,
VariableDefinitionType.LOCAL_VARIABLE,
]:
var_def = LocalVariableDefinition(
- name=variable_token.value,
- name_token=strip_variable_token(variable_token),
- line_no=variable_token.lineno,
- col_offset=variable_token.col_offset,
- end_line_no=variable_token.lineno,
- end_col_offset=variable_token.end_col_offset,
+ name=matcher.name,
+ name_token=stripped_variable_token,
+ line_no=stripped_variable_token.lineno,
+ col_offset=stripped_variable_token.col_offset,
+ end_line_no=stripped_variable_token.lineno,
+ end_col_offset=stripped_variable_token.end_col_offset,
source=self._namespace.source,
+ value_type=matcher.type,
)
self._variables[var_def.matcher] = var_def
self._variable_references[var_def] = set()
@@ -1342,7 +1375,7 @@ def visit_ForHeader(self, node: Statement) -> None: # noqa: N802
self._variable_references[existing_var].add(
Location(
self._namespace.document_uri,
- range_from_token(strip_variable_token(variable_token)),
+ range_from_token(stripped_variable_token),
)
)
@@ -1352,31 +1385,33 @@ def visit_ExceptHeader(self, node: Statement) -> None: # noqa: N802
variable_token = node.get_token(Token.VARIABLE)
- if variable_token is not None and is_scalar_assign(variable_token.value):
+ if variable_token is not None:
try:
- if variable_token is not None:
- matcher = VariableMatcher(variable_token.value)
- if (
- next(
- (
- k
- for k, v in self._variables.items()
- if k == matcher
- and v.type in [VariableDefinitionType.ARGUMENT, VariableDefinitionType.LOCAL_VARIABLE]
- ),
- None,
- )
- is None
- ):
- self._variables[matcher] = LocalVariableDefinition(
- name=variable_token.value,
- name_token=strip_variable_token(variable_token),
- line_no=variable_token.lineno,
- col_offset=variable_token.col_offset,
- end_line_no=variable_token.lineno,
- end_col_offset=variable_token.end_col_offset,
- source=self._namespace.source,
- )
+ matcher = search_variable(variable_token.value, ignore_errors=True)
+ if not matcher.is_scalar_assign():
+ return
+
+ if (
+ next(
+ (
+ k
+ for k, v in self._variables.items()
+ if k == matcher
+ and v.type in [VariableDefinitionType.ARGUMENT, VariableDefinitionType.LOCAL_VARIABLE]
+ ),
+ None,
+ )
+ is None
+ ):
+ self._variables[matcher] = LocalVariableDefinition(
+ name=variable_token.value,
+ name_token=strip_variable_token(variable_token),
+ line_no=variable_token.lineno,
+ col_offset=variable_token.col_offset,
+ end_line_no=variable_token.lineno,
+ end_col_offset=variable_token.end_col_offset,
+ source=self._namespace.source,
+ )
except (VariableError, InvalidVariableError):
pass
diff --git a/packages/robot/src/robotcode/robot/utils/__init__.py b/packages/robot/src/robotcode/robot/utils/__init__.py
index 6de8d44a9..2d3d4a4a9 100644
--- a/packages/robot/src/robotcode/robot/utils/__init__.py
+++ b/packages/robot/src/robotcode/robot/utils/__init__.py
@@ -1,17 +1,14 @@
-from typing import Optional
+import functools
import robot.version
from robotcode.core.utils.version import Version, create_version_from_str
-_robot_version: Optional[Version] = None
-
+@functools.lru_cache(maxsize=1)
def get_robot_version() -> Version:
- global _robot_version
- if _robot_version is None:
- _robot_version = create_version_from_str(robot.version.get_version())
- return _robot_version
+ return create_version_from_str(robot.version.get_version())
+@functools.lru_cache(maxsize=1)
def get_robot_version_str() -> str:
return str(robot.version.get_version())
diff --git a/packages/robot/src/robotcode/robot/utils/ast.py b/packages/robot/src/robotcode/robot/utils/ast.py
index 906311bec..0ded6de22 100644
--- a/packages/robot/src/robotcode/robot/utils/ast.py
+++ b/packages/robot/src/robotcode/robot/utils/ast.py
@@ -326,10 +326,12 @@ def iter_over_keyword_names_and_owners(
yield ".".join(tokens[:i]), ".".join(tokens[i:])
-def strip_variable_token(token: Token, identifiers: str = "$@&%*", matcher: Optional[VariableMatcher] = None) -> Token:
- if token.type == Token.VARIABLE:
+def strip_variable_token(
+ token: Token, identifiers: str = "$@&%*", parse_type: bool = False, matcher: Optional[VariableMatcher] = None
+) -> Token:
+ if token.type in [Token.VARIABLE, Token.ASSIGN]:
if matcher is None:
- matcher = search_variable(token.value, identifiers, ignore_errors=True)
+ matcher = search_variable(token.value, identifiers, parse_type=parse_type, ignore_errors=True)
if matcher.is_variable():
value = matcher.base
@@ -346,13 +348,13 @@ def strip_variable_token(token: Token, identifiers: str = "$@&%*", matcher: Opti
return token
-def get_variable_token(token: Token) -> Optional[Token]:
+def get_first_variable_token(token: Token, extra_types: Optional[Set[str]] = None) -> Optional[Token]:
return next(
(
v
for v in itertools.dropwhile(
lambda t: t.type in Token.NON_DATA_TOKENS,
- tokenize_variables(token, ignore_errors=True),
+ tokenize_variables(token, ignore_errors=True, extra_types=extra_types),
)
if v.type == Token.VARIABLE
),
diff --git a/packages/robot/src/robotcode/robot/utils/variables.py b/packages/robot/src/robotcode/robot/utils/variables.py
index 7113c0779..c564131b3 100644
--- a/packages/robot/src/robotcode/robot/utils/variables.py
+++ b/packages/robot/src/robotcode/robot/utils/variables.py
@@ -8,30 +8,63 @@
from robot.variables.search import search_variable as robot_search_variable
from robotcode.robot.utils.match import normalize
+from . import get_robot_version
+
class InvalidVariableError(Exception):
pass
class VariableMatcher:
- def __init__(self, string: str, identifiers: str = "$@&%", ignore_errors: bool = True) -> None:
- self.string = string
+ if get_robot_version() >= (7, 3):
+
+ def __init__(
+ self, string: str, identifiers: str = "$@&%", parse_type: bool = False, ignore_errors: bool = True
+ ) -> None:
+ self.string = string
+
+ self.match = robot_search_variable(
+ string, identifiers=identifiers, parse_type=parse_type, ignore_errors=ignore_errors
+ )
+
+ if not ignore_errors and self.match.base is None:
+ raise InvalidVariableError(f"Invalid variable '{string}'")
+
+ self.base = self.match.base
+ self.identifier = self.match.identifier
+ self.name = "%s{%s}" % (self.identifier, self.base.strip()) if self.base else None
+ self.type = self.match.type
+ self.items = self.match.items
+ self.start = self.match.start
+ self.end = self.match.end
+ self.after = self.match.after
+ self.before = self.match.before
+
+ self.normalized_name = normalize(self.base) if self.base else None
+
+ else:
+
+ def __init__(
+ self, string: str, identifiers: str = "$@&%", parse_type: bool = False, ignore_errors: bool = True
+ ) -> None:
+ self.string = string
- self.match = robot_search_variable(string, identifiers=identifiers, ignore_errors=ignore_errors)
+ self.match = robot_search_variable(string, identifiers=identifiers, ignore_errors=ignore_errors)
- if not ignore_errors and self.match.base is None:
- raise InvalidVariableError(f"Invalid variable '{string}'")
+ if not ignore_errors and self.match.base is None:
+ raise InvalidVariableError(f"Invalid variable '{string}'")
- self.base = self.match.base
- self.identifier = self.match.identifier
- self.name = "%s{%s}" % (self.identifier, self.base.strip()) if self.base else None
- self.items = self.match.items
- self.start = self.match.start
- self.end = self.match.end
- self.after = self.match.after
- self.before = self.match.before
+ self.base = self.match.base
+ self.identifier = self.match.identifier
+ self.name = "%s{%s}" % (self.identifier, self.base.strip()) if self.base else None
+ self.type = None
+ self.items = self.match.items
+ self.start = self.match.start
+ self.end = self.match.end
+ self.after = self.match.after
+ self.before = self.match.before
- self.normalized_name = normalize(self.base) if self.base else None
+ self.normalized_name = normalize(self.base) if self.base else None
def __eq__(self, o: object) -> bool:
if self.normalized_name is None:
@@ -75,17 +108,57 @@ def is_list_variable(self) -> bool:
def is_dict_variable(self) -> bool:
return bool(self.match.is_dict_variable())
- def is_assign(self, allow_assign_mark: bool = False) -> bool:
- return bool(self.match.is_assign(allow_assign_mark))
+ if get_robot_version() >= (6, 1):
+
+ def is_assign(
+ self, allow_assign_mark: bool = False, allow_nested: bool = False, allow_items: bool = False
+ ) -> bool:
+ return bool(
+ self.match.is_assign(
+ allow_assign_mark=allow_assign_mark, allow_nested=allow_nested, allow_items=allow_items
+ )
+ )
+ else:
+
+ def is_assign(
+ self, allow_assign_mark: bool = False, allow_nested: bool = False, allow_items: bool = False
+ ) -> bool:
+ return bool(self.match.is_assign(allow_assign_mark=allow_assign_mark))
+
+ if get_robot_version() >= (6, 1):
+
+ def is_scalar_assign(self, allow_assign_mark: bool = False, allow_nested: bool = False) -> bool:
+ return bool(self.match.is_scalar_assign(allow_assign_mark=allow_assign_mark, allow_nested=allow_nested))
+ else:
+
+ def is_scalar_assign(self, allow_assign_mark: bool = False, allow_nested: bool = False) -> bool:
+ return bool(self.match.is_scalar_assign(allow_assign_mark=allow_assign_mark))
+
+ if get_robot_version() >= (6, 1):
+
+ def is_list_assign(
+ self,
+ allow_assign_mark: bool = False,
+ allow_nested: bool = False,
+ ) -> bool:
+ return bool(self.match.is_list_assign(allow_assign_mark=allow_assign_mark, allow_nested=allow_nested))
+ else:
+
+ def is_list_assign(
+ self,
+ allow_assign_mark: bool = False,
+ allow_nested: bool = False,
+ ) -> bool:
+ return bool(self.match.is_list_assign(allow_assign_mark=allow_assign_mark))
- def is_scalar_assign(self, allow_assign_mark: bool = False) -> bool:
- return bool(self.match.is_scalar_assign(allow_assign_mark))
+ if get_robot_version() >= (6, 1):
- def is_list_assign(self, allow_assign_mark: bool = False) -> bool:
- return bool(self.match.is_list_assign(allow_assign_mark))
+ def is_dict_assign(self, allow_assign_mark: bool = False, allow_nested: bool = False) -> bool:
+ return bool(self.match.is_dict_assign(allow_assign_mark=allow_assign_mark, allow_nested=allow_nested))
+ else:
- def is_dict_assign(self, allow_assign_mark: bool = False) -> bool:
- return bool(self.match.is_dict_assign(allow_assign_mark))
+ def is_dict_assign(self, allow_assign_mark: bool = False, allow_nested: bool = False) -> bool:
+ return bool(self.match.is_dict_assign(allow_assign_mark=allow_assign_mark))
BUILTIN_VARIABLES = [
@@ -143,8 +216,10 @@ def is_variable(string: str, identifiers: str = "$@&") -> bool:
@functools.lru_cache(maxsize=8192)
-def search_variable(string: str, identifiers: str = "$@&%*", ignore_errors: bool = False) -> VariableMatcher:
- return VariableMatcher(string, identifiers, ignore_errors)
+def search_variable(
+ string: str, identifiers: str = "$@&%*", parse_type: bool = False, ignore_errors: bool = False
+) -> VariableMatcher:
+ return VariableMatcher(string, identifiers, parse_type, ignore_errors)
@functools.lru_cache(maxsize=8192)
diff --git a/packages/runner/pyproject.toml b/packages/runner/pyproject.toml
index 3e593b61a..f0120de00 100644
--- a/packages/runner/pyproject.toml
+++ b/packages/runner/pyproject.toml
@@ -28,10 +28,10 @@ classifiers = [
dynamic = ["version"]
dependencies = [
"robotframework>=4.1.0",
- "robotcode-robot==1.3.0-dev.2",
- "robotcode-modifiers==1.3.0-dev.2",
- "robotcode-plugin==1.3.0-dev.2",
- "robotcode==1.3.0-dev.2",
+ "robotcode-robot==1.7.0",
+ "robotcode-modifiers==1.7.0",
+ "robotcode-plugin==1.7.0",
+ "robotcode==1.7.0",
]
[project.entry-points.robotcode]
diff --git a/packages/runner/src/robotcode/runner/__version__.py b/packages/runner/src/robotcode/runner/__version__.py
index 1cb3f8c2e..14d9d2f58 100644
--- a/packages/runner/src/robotcode/runner/__version__.py
+++ b/packages/runner/src/robotcode/runner/__version__.py
@@ -1 +1 @@
-__version__ = "1.3.0-dev.2"
+__version__ = "1.7.0"
diff --git a/pyproject.toml b/pyproject.toml
index 375beb0f9..6370438b4 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -51,9 +51,9 @@ classifiers = [
]
requires-python = ">=3.8"
dependencies = [
- "robotcode-core==1.3.0-dev.2",
- "robotcode-plugin==1.3.0-dev.2",
- "robotcode-robot==1.3.0-dev.2",
+ "robotcode-core==1.7.0",
+ "robotcode-plugin==1.7.0",
+ "robotcode-robot==1.7.0",
]
dynamic = ["version"]
@@ -71,27 +71,25 @@ robotcode = "robotcode.cli.__main__:main"
[project.optional-dependencies]
-debugger = ["robotcode-debugger==1.3.0-dev.2"]
-languageserver = ["robotcode-language-server==1.3.0-dev.2"]
-runner = ["robotcode-runner==1.3.0-dev.2"]
-analyze = ["robotcode-analyze==1.3.0-dev.2"]
+debugger = ["robotcode-debugger==1.7.0"]
+languageserver = ["robotcode-language-server==1.7.0"]
+runner = ["robotcode-runner==1.7.0"]
+analyze = ["robotcode-analyze==1.7.0"]
yaml = ["PyYAML>=5.4"]
lint = ["robotframework-robocop>=2.0.0"]
-tidy = ["robotframework-tidy>=2.0.0"]
rest = ["docutils"]
-repl = ["robotcode-repl==1.3.0-dev.2"]
-replserver = ["robotcode-repl-server==1.3.0-dev.2"]
+repl = ["robotcode-repl==1.7.0"]
+replserver = ["robotcode-repl-server==1.7.0"]
colored = ["rich"]
all = [
- "robotcode-debugger==1.3.0-dev.2",
- "robotcode-language-server==1.3.0-dev.2",
- "robotcode-runner==1.3.0-dev.2",
- "robotcode-analyze==1.3.0-dev.2",
- "robotcode-repl==1.3.0-dev.2",
- "robotcode-repl-server==1.3.0-dev.2",
+ "robotcode-debugger==1.7.0",
+ "robotcode-language-server==1.7.0",
+ "robotcode-runner==1.7.0",
+ "robotcode-analyze==1.7.0",
+ "robotcode-repl==1.7.0",
+ "robotcode-repl-server==1.7.0",
"PyYAML>=5.4",
"robotframework-robocop>=2.0.0",
- "robotframework-tidy>=2.0.0",
"docutils",
"rich",
]
@@ -159,7 +157,7 @@ fail_under = 40
[tool.ruff]
line-length = 120
-target-version = "py38"
+target-version = "py310"
extend-exclude = ["bundled/libs", ".hatch"]
[tool.ruff.lint]
@@ -216,7 +214,7 @@ mark-parentheses = false
[tool.mypy]
-python_version = "3.8"
+python_version = "3.10"
strict = true
warn_redundant_casts = true
warn_unused_ignores = true
@@ -291,7 +289,7 @@ no_implicit_reexport = false
#include_runtime_files = false
[tool.pyright]
-exclude = ["**/.hatch", "**/node_modules", "**/__pycache__", "bundled/libs"]
+exclude = ["**/.hatch", "**/node_modules", "**/__pycache__", "bundled/libs", "intellij-client/build"]
typeCheckingMode = "off"
pythonVersion = "3.8"
diff --git a/robot.toml b/robot.toml
index 320bbe415..5ac24bef0 100644
--- a/robot.toml
+++ b/robot.toml
@@ -3,6 +3,7 @@ python-path = [
"tests/robotcode/language_server/robotframework/parts/data/resources",
]
paths = "tests/robotcode/language_server/robotframework/parts/data"
+rpa = false
[tool.robotcode-analyze.code]
exit-code-mask = ["info", "hint"]
diff --git a/scripts/generate_rf_options.py b/scripts/generate_rf_options.py
index 6837e790b..972b56399 100644
--- a/scripts/generate_rf_options.py
+++ b/scripts/generate_rf_options.py
@@ -96,7 +96,8 @@ def generate(
current_line = ""
m = RE_LIST_MATCHER.match(line)
if not in_examples and m:
- line = f"**{m.group(1)}{':\\\\' + m.group(4) if m.group(4) else ''}:** {m.group(5)}"
+ p = ":\\\\"
+ line = f"**{m.group(1)}{p + m.group(4) if m.group(4) else ''}:** {m.group(5)}"
current_line += "\n\n" + line.strip()
else:
current_line += "\n" + line.strip()
diff --git a/src/robotcode/cli/__init__.py b/src/robotcode/cli/__init__.py
index ec3469081..7e773ac4d 100644
--- a/src/robotcode/cli/__init__.py
+++ b/src/robotcode/cli/__init__.py
@@ -1,4 +1,6 @@
+import json
import logging
+import logging.config
from pathlib import Path
from typing import Any, List, Literal, Optional
@@ -35,8 +37,11 @@ def my_make_metavar(self: click.Parameter, *args: Any, **kwargs: Any) -> str:
class RobotCodeFormatter(logging.Formatter):
- def __init__(self, *args: Any, **kwargs: Any) -> None:
- super().__init__(*args, **kwargs)
+ def __init__(self, *args: Any, defaults: Any = None, **kwargs: Any) -> None:
+ defaults = defaults or {}
+ if defaults.get("indent") is None:
+ defaults["indent"] = ""
+ super().__init__(*args, defaults=defaults, **kwargs)
@click.group(
@@ -162,6 +167,21 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
help="Enables logging of method/function calls.",
show_envvar=True,
)
+@click.option(
+ "--log-config",
+ type=click.Path(
+ file_okay=True,
+ dir_okay=False,
+ readable=True,
+ exists=True,
+ path_type=str,
+ ),
+ help="Path to a logging configuration file. This must be a valid Python logging configuration file in JSON format."
+ " If this option is set, the other logging options are ignored.",
+ default=None,
+ show_default=True,
+ show_envvar=True,
+)
@click.option(
"--default-path",
"-dp",
@@ -220,6 +240,7 @@ def robotcode(
log_style: Literal["%", "{", "$"],
log_filename: Optional[str],
log_calls: bool,
+ log_config: Optional[Path],
default_path: Optional[List[str]],
launcher_script: Optional[str] = None,
debugpy: bool = False,
@@ -257,7 +278,21 @@ def robotcode(
app.config.log_level = log_level
app.config.log_calls = log_calls
- if log:
+ if log_config:
+ if log_calls:
+ LoggingDescriptor.set_call_tracing(True)
+
+ app.verbose(f"Loading logging configuration from '{log_config}'")
+ try:
+ with open(log_config, "r", encoding="utf-8") as f:
+ config = json.load(f)
+
+ logging.config.dictConfig(config)
+
+ except Exception as e:
+ app.error(f"Failed to load logging configuration from '{log_config}': {e}")
+
+ elif log:
if log_calls:
LoggingDescriptor.set_call_tracing(True)
@@ -269,9 +304,7 @@ def robotcode(
)
try:
- logging.root.handlers[0].formatter = RobotCodeFormatter(
- fmt=log_format, style=log_style, defaults={"indent": ""}
- )
+ logging.root.handlers[0].formatter = RobotCodeFormatter(fmt=log_format, style=log_style)
except TypeError:
pass
diff --git a/src/robotcode/cli/__version__.py b/src/robotcode/cli/__version__.py
index 1cb3f8c2e..14d9d2f58 100644
--- a/src/robotcode/cli/__version__.py
+++ b/src/robotcode/cli/__version__.py
@@ -1 +1 @@
-__version__ = "1.3.0-dev.2"
+__version__ = "1.7.0"
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
index 8239f353e..226df7e43 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
index a3ba6d93a..a8415375e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
index 524f60284..6eaa2e935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
index a049d2abd..7ca591687 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
index b2b3a6421..e5efffaa2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
index a513df80b..d54497f31 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
index 2f87ac00e..7efe9727c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
index b0e55bbd5..8f988fde6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
index 6842bfc3a..204e3a526 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
index b9e122bef..392d76d05 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
index 1f167bad1..595a25015 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
index 2d3d8bb53..ec8d67203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
index f4485a04e..2a4594d9d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
index a1f129203..931b651ca 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
index 8a5af0dd6..ca5f519ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
index 079bc90d9..db4eadd00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
index c04f7fc58..9fc8dc9da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
index c233ae926..96464fc0a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
index 870d7a36a..b1eff5801 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
index e82ef2b56..980598cd7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
index c592fc763..0c5b96935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
index a57aabeb3..e02339b62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
index 46e7c3340..ffe8f95ee 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
index 642884f51..67711a05f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
index 28cb91a72..8bb3347a7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
index 0dba1a415..79b0ab951 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
index d71c9d08b..e9fe50e25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
index 7b0d67047..cf3d34dea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
index 3c475dbed..62f4aceb1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
index 15d634e9c..107def919 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
index ade8b6d92..8d2ca8626 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
index 66fddf121..1feeeb40c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
index eb0b5fd54..f5ec1c457 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
index ba8a95794..bea1d3906 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
index 4e8e95194..a62d80df3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
index 90b42a565..e34b79a0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
index be66e20d1..17ec05e27 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
index cb8da7aba..04e70985b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
index f4d156da6..9e6dfd8d7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
index a7550e1f4..b7cf80414 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
index 5d424c505..3244fdcd1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
index becb9d7cb..a94d36226 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
index 5bd9fb55e..fece8b2aa 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
index 725193b37..b0235ca01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
index 5e034b72e..ac50687b3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
index 70d1c5b94..23bb8aaf3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
index ef1b3e404..3b0e98cec 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
index 07bd779f8..325e16336 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
index b3afde9c8..40a3bfb4b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
index b2b32b5a7..9dcf09b8d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
index e0d8907d6..a60432e01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
index ee5c1bb07..52e38c418 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
index 77b677467..afad4b22e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
index 545003425..79c6190d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
index 4a4ecc302..a1e856600 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
index 84362f8a9..b1cb2126a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
index 447bf4184..de0d59df6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
index 52d02c18e..23b9b8a1f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
index dcf7c04e6..17be9c684 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
index 0dfb5c023..7d355d48d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
index f1f42b950..e0c65040f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
index 78cea173c..e73a085ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
index c1fefa5a0..fe1822274 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
index d7f5004eb..7083c0456 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
@@ -13,10 +13,10 @@ result:
line: 113
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
index 5c887ad71..7805da4bc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
@@ -13,10 +13,10 @@ result:
line: 116
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
index ad2cb2b03..e2b4e3ec5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 121
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
index ffdb6f269..3053203b2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 124
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
index 005eccbe0..3aa98776d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
index 727f6e96d..1d82bbf19 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
index 11c936057..69ac841ce 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
index 16a81732f..89d2d8a9a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
index 4f87541d1..220538b57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
@@ -13,10 +13,10 @@ result:
line: 136
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
index 38e45adb1..c0d8cab53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
index 3d915b2f6..e5b45a749 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
index 999c93272..f5bd445a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
index 1be872de3..2ce131597 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
index 1bb226e02..9d51f1860 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
index 7bab735ea..452a44add 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
index 88b77dc89..865e4fe5a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
index 2ad7fcd5c..67501186c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
index 4660d8a0f..f0ad689e2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
index 36e560bc2..3b1f57c25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
index 1082011e2..868e40459 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
index 631d5be02..c6855781f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
index bb4183827..bc6603370 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
index f210370b5..f5299abab 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
index 58c0e52a0..4cf7f16da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
index 16692643a..ae530e453 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
index 85273368b..e48ac204d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
index 11982d4d9..67436f28b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
index 8ee8393a4..8489525fc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
index a9096c519..aeb46e115 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
index 31d58a50f..ff5922211 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
index 2c1d286e9..518933599 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
index 88bfebaf9..1389c2ae6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
index 107e0644a..91386967d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
index bcb425d10..ba3e6351b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
index 5ce584672..14c6de2b7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
index 8c637fba1..145813fd0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
index 84d9267dd..001e62bda 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
index 9c2bc61de..2f9ed615a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
index 877c4d3f7..8f60adbfe 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
index 352ed5354..e58d291f5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
index 7f2aaed0b..79b34a22b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
index 9f7ff9da3..6aafa0cf7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
index e62f70937..99b407107 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
index 26343b08f..a2d19cd1a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
index cb34057a6..b90b18f53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
index 66e1b72a2..5be0a2e62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
index 05a9f2878..44fda0315 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
index a13d64453..3499f3dc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
index edeb45042..800293ec2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 191
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
index f9f759774..e4a2311a1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 193
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
index 8f408d191..18898925e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
index fc63710ae..e00559044 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
index 99b3c42e7..e8255ec5f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
index 24291cbfc..4a85bbe85 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 208
target_range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
index 602cb6ab0..39faffbcf 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
index 6b1ce1d6a..4fd41dc65 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
index 6abc94c88..98f059f2a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
index 3951adaa1..3165c0fc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
index 397adb60c..c34433d9f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
index 38ad1c416..c15fef092 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
index c0de4a0d8..83529a203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 222
target_range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
index 23f059316..3cbc16c4f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
index cd700261d..1514a2e57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
index 6ef9cc6bf..99b72499e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
index 8239f353e..226df7e43 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
index a3ba6d93a..a8415375e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
index 524f60284..6eaa2e935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
index a049d2abd..7ca591687 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
index b2b3a6421..e5efffaa2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
index a513df80b..d54497f31 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
index 2f87ac00e..7efe9727c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
index b0e55bbd5..8f988fde6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
index 6842bfc3a..204e3a526 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
index b9e122bef..392d76d05 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
index 1f167bad1..595a25015 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
index 2d3d8bb53..ec8d67203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
index f4485a04e..2a4594d9d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
index a1f129203..931b651ca 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
index 8a5af0dd6..ca5f519ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
index 079bc90d9..db4eadd00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
index c04f7fc58..9fc8dc9da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
index c233ae926..96464fc0a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
index 870d7a36a..b1eff5801 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
index e82ef2b56..980598cd7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
index c592fc763..0c5b96935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
index a57aabeb3..e02339b62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
index 46e7c3340..ffe8f95ee 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
index 642884f51..67711a05f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
index 28cb91a72..8bb3347a7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
index 0dba1a415..79b0ab951 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
index d71c9d08b..e9fe50e25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
index 7b0d67047..cf3d34dea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
index 3c475dbed..62f4aceb1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
index 15d634e9c..107def919 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
index ade8b6d92..8d2ca8626 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
index 66fddf121..1feeeb40c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
index eb0b5fd54..f5ec1c457 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
index ba8a95794..bea1d3906 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
index 4e8e95194..a62d80df3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
index 90b42a565..e34b79a0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
index be66e20d1..17ec05e27 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
index cb8da7aba..04e70985b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
index f4d156da6..9e6dfd8d7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
index a7550e1f4..b7cf80414 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
index 5d424c505..3244fdcd1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
index becb9d7cb..a94d36226 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
index 5bd9fb55e..fece8b2aa 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
index 725193b37..b0235ca01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
index 5e034b72e..ac50687b3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
index 70d1c5b94..23bb8aaf3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
index ef1b3e404..3b0e98cec 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
index 07bd779f8..325e16336 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
index b3afde9c8..40a3bfb4b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
index b2b32b5a7..9dcf09b8d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
index e0d8907d6..a60432e01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
index ee5c1bb07..52e38c418 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
index 77b677467..afad4b22e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
index 545003425..79c6190d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
index 4a4ecc302..a1e856600 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
index 84362f8a9..b1cb2126a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
index 447bf4184..de0d59df6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
index 52d02c18e..23b9b8a1f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
index dcf7c04e6..17be9c684 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
index 0dfb5c023..7d355d48d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
index f1f42b950..e0c65040f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
index 78cea173c..e73a085ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
index c1fefa5a0..fe1822274 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
index d7f5004eb..7083c0456 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
@@ -13,10 +13,10 @@ result:
line: 113
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
index 5c887ad71..7805da4bc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
@@ -13,10 +13,10 @@ result:
line: 116
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
index ad2cb2b03..e2b4e3ec5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 121
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
index ffdb6f269..3053203b2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 124
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
index 005eccbe0..3aa98776d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
index 727f6e96d..1d82bbf19 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
index 11c936057..69ac841ce 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
index 16a81732f..89d2d8a9a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
index 4f87541d1..220538b57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
@@ -13,10 +13,10 @@ result:
line: 136
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
index 38e45adb1..c0d8cab53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
index 3d915b2f6..e5b45a749 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
index 999c93272..f5bd445a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
index 1be872de3..2ce131597 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
index 1bb226e02..9d51f1860 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
index 7bab735ea..452a44add 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
index 88b77dc89..865e4fe5a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
index 2ad7fcd5c..67501186c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
index 4660d8a0f..f0ad689e2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
index 36e560bc2..3b1f57c25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
index 1082011e2..868e40459 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
index 631d5be02..c6855781f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
index bb4183827..bc6603370 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
index f210370b5..f5299abab 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
index 58c0e52a0..4cf7f16da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
index 16692643a..ae530e453 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
index 85273368b..e48ac204d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
index 11982d4d9..67436f28b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
index 8ee8393a4..8489525fc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
index a9096c519..aeb46e115 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
index 31d58a50f..ff5922211 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
index 2c1d286e9..518933599 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
index 88bfebaf9..1389c2ae6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
index 107e0644a..91386967d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
index bcb425d10..ba3e6351b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
index 5ce584672..14c6de2b7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
index 8c637fba1..145813fd0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
index 84d9267dd..001e62bda 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
index 9c2bc61de..2f9ed615a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
index 877c4d3f7..8f60adbfe 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
index 352ed5354..e58d291f5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
index 7f2aaed0b..79b34a22b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
index 9f7ff9da3..6aafa0cf7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
index e62f70937..99b407107 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
index 26343b08f..a2d19cd1a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
index cb34057a6..b90b18f53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
index 66e1b72a2..5be0a2e62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
index 05a9f2878..44fda0315 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
index a13d64453..3499f3dc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
index edeb45042..800293ec2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 191
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
index f9f759774..e4a2311a1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 193
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
index 8f408d191..18898925e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
index fc63710ae..e00559044 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
index 99b3c42e7..e8255ec5f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
index 24291cbfc..4a85bbe85 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 208
target_range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
index 602cb6ab0..39faffbcf 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
index 6b1ce1d6a..4fd41dc65 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
index 6abc94c88..98f059f2a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
index 3951adaa1..3165c0fc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
index 397adb60c..c34433d9f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
index 38ad1c416..c15fef092 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
index c0de4a0d8..83529a203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 222
target_range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
index 23f059316..3cbc16c4f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
index cd700261d..1514a2e57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
index 6ef9cc6bf..99b72499e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-004-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-004-simple_keyword_call].out
index 7326f3127..f275f7e57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-004-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-004-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-005-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-005-simple_keyword_call].out
index b6e43aba1..5c542b1eb 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-005-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-005-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-006-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-006-simple_keyword_call].out
index b5893f71b..2e0d5aade 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-006-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-006-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-105-031-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-105-029-a_variable_with_emoji].out
similarity index 83%
rename from tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-105-031-a_variable_with_emoji].out
rename to tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-105-029-a_variable_with_emoji].out
index c5cb6c5cd..70dec3898 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-105-031-a_variable_with_emoji].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-105-029-a_variable_with_emoji].out
@@ -1,5 +1,5 @@
data: !GeneratedTestData
- character: 31
+ character: 29
line: 105
name: a variable with emoji
result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-105-031-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-105-030-a_variable_with_emoji].out
similarity index 83%
rename from tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-105-031-a_variable_with_emoji].out
rename to tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-105-030-a_variable_with_emoji].out
index c5cb6c5cd..1ba9d617a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-105-031-a_variable_with_emoji].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-105-030-a_variable_with_emoji].out
@@ -1,5 +1,5 @@
data: !GeneratedTestData
- character: 31
+ character: 30
line: 105
name: a variable with emoji
result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-105-033-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-105-033-a_variable_with_emoji].out
deleted file mode 100644
index 3afbe753a..000000000
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-105-033-a_variable_with_emoji].out
+++ /dev/null
@@ -1,32 +0,0 @@
-data: !GeneratedTestData
- character: 33
- line: 105
- name: a variable with emoji
-result:
-- !Location
- range:
- end:
- character: 50
- line: 30
- start:
- character: 41
- line: 30
- uri: resources/firstresource.resource
-- !Location
- range:
- end:
- character: 49
- line: 31
- start:
- character: 40
- line: 31
- uri: resources/firstresource.resource
-- !Location
- range:
- end:
- character: 42
- line: 105
- start:
- character: 33
- line: 105
- uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_semantic_tokens.test[old_for.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_semantic_tokens.test[old_for.robot].out
new file mode 100644
index 000000000..242c07045
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_semantic_tokens.test[old_for.robot].out
@@ -0,0 +1,63 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 18
+ - 29
+ - 0
+ - 1
+ - 0
+ - 5
+ - 33
+ - 1
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 1
+ - 8
+ - 1
+ - 39
+ - 0
+ - 1
+ - 8
+ - 1
+ - 39
+ - 0
+ - 2
+ - 0
+ - 6
+ - 33
+ - 1
+ - 1
+ - 4
+ - 2
+ - 35
+ - 0
+ - 2
+ - 0
+ - 5
+ - 33
+ - 1
+ - 1
+ - 4
+ - 3
+ - 35
+ - 0
+ - 0
+ - 15
+ - 8
+ - 46
+ - 0
+ - 1
+ - 8
+ - 14
+ - 39
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 35
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out
new file mode 100644
index 000000000..57aa64867
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out
@@ -0,0 +1,378 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 17
+ - 28
+ - 0
+ - 11
+ - 0
+ - 18
+ - 29
+ - 0
+ - 1
+ - 0
+ - 15
+ - 33
+ - 1
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ - 1
+ - 4
+ - 26
+ - 39
+ - 0
+ - 1
+ - 4
+ - 39
+ - 39
+ - 0
+ - 1
+ - 4
+ - 36
+ - 39
+ - 0
+ - 1
+ - 4
+ - 36
+ - 39
+ - 0
+ - 1
+ - 4
+ - 36
+ - 39
+ - 0
+ - 2
+ - 0
+ - 15
+ - 33
+ - 1
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ - 2
+ - 0
+ - 19
+ - 33
+ - 1
+ - 1
+ - 17
+ - 8
+ - 39
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ - 2
+ - 0
+ - 9
+ - 33
+ - 1
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 2
+ - 4
+ - 3
+ - 35
+ - 0
+ - 0
+ - 20
+ - 8
+ - 46
+ - 0
+ - 1
+ - 8
+ - 3
+ - 39
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 35
+ - 0
+ - 2
+ - 4
+ - 3
+ - 35
+ - 0
+ - 0
+ - 33
+ - 12
+ - 46
+ - 0
+ - 1
+ - 8
+ - 3
+ - 39
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 35
+ - 0
+ - 2
+ - 0
+ - 13
+ - 33
+ - 1
+ - 1
+ - 17
+ - 2
+ - 39
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ - 2
+ - 0
+ - 30
+ - 33
+ - 1
+ - 1
+ - 4
+ - 28
+ - 39
+ - 0
+ - 1
+ - 4
+ - 2
+ - 39
+ - 0
+ - 0
+ - 2
+ - 8
+ - 36
+ - 2048
+ - 0
+ - 9
+ - 18
+ - 39
+ - 0
+ - 3
+ - 0
+ - 16
+ - 32
+ - 0
+ - 1
+ - 0
+ - 26
+ - 34
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 25
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 56
+ - 0
+ - 0
+ - 13
+ - 9
+ - 56
+ - 0
+ - 0
+ - 13
+ - 15
+ - 56
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ - 2
+ - 0
+ - 39
+ - 34
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 25
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 7
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 6
+ - 9
+ - 7
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ - 2
+ - 0
+ - 36
+ - 34
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 25
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 22
+ - 56
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ - 12
+ - 0
+ - 2
+ - 34
+ - 1
+ - 0
+ - 34
+ - 19
+ - 34
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 256
+ - 0
+ - 1
+ - 13
+ - 25
+ - 256
+ - 0
+ - 13
+ - 1
+ - 21
+ - 256
+ - 1
+ - 4
+ - 3
+ - 39
+ - 1024
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_workspace_symbols.test[].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_workspace_symbols.test[].out
index 590cdffd3..2b7973658 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_workspace_symbols.test[].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_workspace_symbols.test[].out
@@ -81,10 +81,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 9
start:
- character: 21
+ character: 23
line: 9
uri: bddstyle.robot
name: ${input}
@@ -111,10 +111,10 @@ result:
location:
range:
end:
- character: 46
+ character: 45
line: 9
start:
- character: 33
+ character: 35
line: 9
uri: bddstyle.robot
name: ${multiplier}
@@ -141,10 +141,10 @@ result:
location:
range:
end:
- character: 59
+ character: 58
line: 9
start:
- character: 50
+ character: 52
line: 9
uri: bddstyle.robot
name: ${result}
@@ -276,10 +276,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 119
start:
- character: 19
+ character: 21
line: 119
uri: code_action_show_documentation.robot
name: ${A VAR}
@@ -291,10 +291,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 124
start:
- character: 28
+ character: 30
line: 124
uri: code_action_show_documentation.robot
name: ${A VAR}
@@ -306,10 +306,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
uri: code_action_show_documentation.robot
name: ${LIB_ARG}
@@ -321,10 +321,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: code_action_show_documentation.robot
name: ${a var}
@@ -336,10 +336,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 129
start:
- character: 19
+ character: 21
line: 129
uri: code_action_show_documentation.robot
name: ${a}
@@ -351,10 +351,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: code_action_show_documentation.robot
name: ${bananas}
@@ -381,10 +381,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 129
start:
- character: 27
+ character: 29
line: 129
uri: code_action_show_documentation.robot
name: ${b}
@@ -411,10 +411,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 52
start:
- character: 4
+ character: 6
line: 52
uri: code_action_show_documentation.robot
name: ${result}
@@ -486,10 +486,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 124
start:
- character: 19
+ character: 21
line: 124
uri: code_action_show_documentation.robot
name: ${tt}
@@ -516,10 +516,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 97
start:
- character: 19
+ character: 21
line: 97
uri: code_action_show_documentation.robot
name: ${type}
@@ -846,10 +846,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 113
start:
- character: 19
+ character: 21
line: 113
uri: document_highlight.robot
name: ${A VAR}
@@ -861,10 +861,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 122
start:
- character: 28
+ character: 30
line: 122
uri: document_highlight.robot
name: ${A VAR}
@@ -876,10 +876,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: document_highlight.robot
name: ${A}
@@ -891,10 +891,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 25
start:
- character: 0
+ character: 2
line: 25
uri: document_highlight.robot
name: ${B}
@@ -906,10 +906,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: document_highlight.robot
name: ${LIB_ARG}
@@ -921,10 +921,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 20
start:
- character: 0
+ character: 2
line: 20
uri: document_highlight.robot
name: ${a var}
@@ -936,10 +936,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 164
start:
- character: 32
+ character: 34
line: 164
uri: document_highlight.robot
name: ${a_second_arg}
@@ -951,10 +951,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 169
start:
- character: 32
+ character: 34
line: 169
uri: document_highlight.robot
name: ${a_second_arg}
@@ -966,10 +966,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 164
start:
- character: 19
+ character: 21
line: 164
uri: document_highlight.robot
name: ${an_arg}
@@ -981,10 +981,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 169
start:
- character: 19
+ character: 21
line: 169
uri: document_highlight.robot
name: ${an_arg}
@@ -996,10 +996,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 132
start:
- character: 19
+ character: 21
line: 132
uri: document_highlight.robot
name: ${a}
@@ -1011,10 +1011,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 132
start:
- character: 27
+ character: 29
line: 132
uri: document_highlight.robot
name: ${b}
@@ -1026,10 +1026,10 @@ result:
location:
range:
end:
- character: 44
+ character: 43
line: 132
start:
- character: 40
+ character: 42
line: 132
uri: document_highlight.robot
name: ${c}
@@ -1056,10 +1056,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 57
start:
- character: 4
+ character: 6
line: 57
uri: document_highlight.robot
name: ${result}
@@ -1086,10 +1086,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 122
start:
- character: 19
+ character: 21
line: 122
uri: document_highlight.robot
name: ${tt}
@@ -1431,10 +1431,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 10
start:
- character: 19
+ character: 21
line: 10
uri: embedded_keywords.robot
name: ${data}
@@ -1566,10 +1566,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 2
start:
- character: 4
+ character: 6
line: 2
uri: fibonaci.robot
name: ${a}
@@ -1581,10 +1581,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 36
start:
- character: 4
+ character: 6
line: 36
uri: fibonaci.robot
name: ${a}
@@ -1596,10 +1596,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 27
start:
- character: 8
+ character: 10
line: 27
uri: fibonaci.robot
name: ${n1}
@@ -1611,10 +1611,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 28
start:
- character: 8
+ character: 10
line: 28
uri: fibonaci.robot
name: ${n2}
@@ -1626,10 +1626,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 22
start:
- character: 19
+ character: 21
line: 22
uri: fibonaci.robot
name: ${n}
@@ -1641,10 +1641,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 35
start:
- character: 19
+ character: 21
line: 35
uri: fibonaci.robot
name: ${n}
@@ -1656,10 +1656,10 @@ result:
location:
range:
end:
- character: 12
+ character: 11
line: 25
start:
- character: 8
+ character: 10
line: 25
uri: fibonaci.robot
name: ${r}
@@ -1821,10 +1821,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 32
start:
- character: 19
+ character: 21
line: 32
uri: first.robot
name: ${b}
@@ -1941,10 +1941,10 @@ result:
location:
range:
end:
- character: 47
+ character: 20
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: firstresource.resource
name: ${A_VAR_FROM_RESOURE}
@@ -1956,10 +1956,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 23
start:
- character: 27
+ character: 29
line: 23
uri: firstresource.resource
name: ${a long name}
@@ -1971,10 +1971,10 @@ result:
location:
range:
end:
- character: 61
+ character: 60
line: 23
start:
- character: 46
+ character: 48
line: 23
uri: firstresource.resource
name: ${a_short_name}
@@ -1986,10 +1986,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 23
start:
- character: 19
+ character: 21
line: 23
uri: firstresource.resource
name: ${a}
@@ -2001,10 +2001,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 30
start:
- character: 19
+ character: 21
line: 30
uri: firstresource.resource
name: "${\U0001F413}"
@@ -2016,10 +2016,10 @@ result:
location:
range:
end:
- character: 34
+ character: 33
line: 30
start:
- character: 27
+ character: 29
line: 30
uri: firstresource.resource
name: "${\U0001F60E\U0001F60B\U0001F619\U0001F619}"
@@ -2031,10 +2031,10 @@ result:
location:
range:
end:
- character: 51
+ character: 50
line: 30
start:
- character: 39
+ character: 41
line: 30
uri: firstresource.resource
name: "${\U0001F9DF\u200D\u2642\uFE0F\U0001F6C3\U0001FAC5\U0001F3FF\U0001F478\U0001F3FF\
@@ -2122,10 +2122,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 53
start:
- character: 4
+ character: 6
line: 53
uri: foldingrange.robot
name: ${a}
@@ -2137,10 +2137,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 81
start:
- character: 4
+ character: 6
line: 81
uri: foldingrange.robot
name: ${a}
@@ -2152,10 +2152,10 @@ result:
location:
range:
end:
- character: 15
+ character: 14
line: 12
start:
- character: 11
+ character: 13
line: 12
uri: foldingrange.robot
name: ${i}
@@ -2257,10 +2257,10 @@ result:
location:
range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
uri: goto.robot
name: ${A VAR1}
@@ -2272,10 +2272,10 @@ result:
location:
range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
uri: goto.robot
name: ${A VAR}
@@ -2287,10 +2287,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
uri: goto.robot
name: ${A VAR}
@@ -2302,10 +2302,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
uri: goto.robot
name: ${A VAR}
@@ -2317,10 +2317,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
uri: goto.robot
name: ${A}
@@ -2332,10 +2332,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
uri: goto.robot
name: ${B}
@@ -2347,10 +2347,10 @@ result:
location:
range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
uri: goto.robot
name: ${DOT}
@@ -2362,10 +2362,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
uri: goto.robot
name: ${LIB_ARG}
@@ -2377,10 +2377,10 @@ result:
location:
range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
uri: goto.robot
name: ${MY_DIR}
@@ -2392,10 +2392,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 213
start:
- character: 32
+ character: 34
line: 213
uri: goto.robot
name: ${a_second_arg}
@@ -2407,10 +2407,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 218
start:
- character: 32
+ character: 34
line: 218
uri: goto.robot
name: ${a_second_arg}
@@ -2422,10 +2422,10 @@ result:
location:
range:
end:
- character: 50
+ character: 14
line: 32
start:
- character: 0
+ character: 2
line: 32
uri: goto.robot
name: ${all together}
@@ -2437,10 +2437,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
uri: goto.robot
name: ${an_arg}
@@ -2452,10 +2452,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
uri: goto.robot
name: ${an_arg}
@@ -2467,10 +2467,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 136
start:
- character: 4
+ character: 6
line: 136
uri: goto.robot
name: ${a}
@@ -2482,10 +2482,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
uri: goto.robot
name: ${a}
@@ -2497,10 +2497,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
uri: goto.robot
name: ${b}
@@ -2512,10 +2512,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
uri: goto.robot
name: ${key}
@@ -2527,10 +2527,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
uri: goto.robot
name: ${tt}
@@ -2542,10 +2542,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
uri: goto.robot
name: ${tt}
@@ -2557,10 +2557,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
uri: goto.robot
name: ${value}
@@ -2572,10 +2572,10 @@ result:
location:
range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: goto.robot
name: '&{A DICT}'
@@ -2587,10 +2587,10 @@ result:
location:
range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
uri: goto.robot
name: '&{dict_var}'
@@ -2602,10 +2602,10 @@ result:
location:
range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
uri: goto.robot
name: '@{list_var}'
@@ -2872,10 +2872,10 @@ result:
location:
range:
end:
- character: 28
+ character: 7
line: 30
start:
- character: 0
+ character: 2
line: 30
uri: hover.robot
name: ${A VAR}
@@ -2887,10 +2887,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 267
start:
- character: 19
+ character: 21
line: 267
uri: hover.robot
name: ${A VAR}
@@ -2902,10 +2902,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 276
start:
- character: 28
+ character: 30
line: 276
uri: hover.robot
name: ${A VAR}
@@ -2917,10 +2917,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 41
start:
- character: 0
+ character: 2
line: 41
uri: hover.robot
name: ${A}
@@ -2932,10 +2932,10 @@ result:
location:
range:
end:
- character: 9
+ character: 3
line: 42
start:
- character: 0
+ character: 2
line: 42
uri: hover.robot
name: ${B}
@@ -2947,10 +2947,10 @@ result:
location:
range:
end:
- character: 28
+ character: 3
line: 43
start:
- character: 0
+ character: 2
line: 43
uri: hover.robot
name: ${C}
@@ -2962,10 +2962,10 @@ result:
location:
range:
end:
- character: 9
+ character: 3
line: 56
start:
- character: 0
+ character: 2
line: 56
uri: hover.robot
name: ${D}
@@ -2977,10 +2977,10 @@ result:
location:
range:
end:
- character: 41
+ character: 3
line: 57
start:
- character: 0
+ character: 2
line: 57
uri: hover.robot
name: ${E}
@@ -2992,10 +2992,10 @@ result:
location:
range:
end:
- character: 14
+ character: 3
line: 58
start:
- character: 0
+ character: 2
line: 58
uri: hover.robot
name: ${F}
@@ -3007,10 +3007,10 @@ result:
location:
range:
end:
- character: 38
+ character: 3
line: 48
start:
- character: 0
+ character: 2
line: 48
uri: hover.robot
name: ${K}
@@ -3022,10 +3022,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 36
start:
- character: 0
+ character: 2
line: 36
uri: hover.robot
name: ${LIB_ARG}
@@ -3037,10 +3037,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 286
start:
- character: 19
+ character: 21
line: 286
uri: hover.robot
name: ${a}
@@ -3052,10 +3052,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 286
start:
- character: 27
+ character: 29
line: 286
uri: hover.robot
name: ${b}
@@ -3067,10 +3067,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 81
start:
- character: 11
+ character: 13
line: 81
uri: hover.robot
name: ${key}
@@ -3082,10 +3082,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 111
start:
- character: 4
+ character: 6
line: 111
uri: hover.robot
name: ${result}
@@ -3097,10 +3097,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 276
start:
- character: 19
+ character: 21
line: 276
uri: hover.robot
name: ${tt}
@@ -3112,10 +3112,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 81
start:
- character: 21
+ character: 23
line: 81
uri: hover.robot
name: ${value}
@@ -3127,10 +3127,10 @@ result:
location:
range:
end:
- character: 35
+ character: 8
line: 33
start:
- character: 0
+ character: 2
line: 33
uri: hover.robot
name: '&{A DICT}'
@@ -3427,10 +3427,10 @@ result:
location:
range:
end:
- character: 13
+ character: 7
line: 2
start:
- character: 0
+ character: 2
line: 2
uri: indexed_variables.robot
name: ${index}
@@ -3442,10 +3442,10 @@ result:
location:
range:
end:
- character: 24
+ character: 8
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: indexed_variables.robot
name: '@{A_LIST}'
@@ -3480,6 +3480,66 @@ result:
uri: jsonvariables.robot
name: first
tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 10
+ start:
+ character: 13
+ line: 10
+ uri: old_for.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: old_for.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 6
+ start:
+ character: 0
+ line: 6
+ uri: old_for.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: old_for.robot
+ name: third
+ tags: null
- !WorkspaceSymbol
container_name: part1__suite
data: null
@@ -3532,10 +3592,10 @@ result:
location:
range:
end:
- character: 21
+ character: 3
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: playground.robot
name: ${2}
@@ -3547,10 +3607,10 @@ result:
location:
range:
end:
- character: 12
+ character: 3
line: 2
start:
- character: 0
+ character: 2
line: 2
uri: playground.robot
name: ${a}
@@ -3562,10 +3622,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 22
start:
- character: 19
+ character: 21
line: 22
uri: playground.robot
name: ${a}
@@ -3577,10 +3637,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 22
start:
- character: 27
+ character: 29
line: 22
uri: playground.robot
name: ${b}
@@ -3592,10 +3652,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 15
start:
- character: 4
+ character: 6
line: 15
uri: playground.robot
name: ${v}
@@ -3637,10 +3697,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 150
start:
- character: 19
+ character: 21
line: 150
uri: references.robot
name: ${A VAR}
@@ -3652,10 +3712,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 159
start:
- character: 28
+ character: 30
line: 159
uri: references.robot
name: ${A VAR}
@@ -3667,10 +3727,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: references.robot
name: ${LIB_ARG}
@@ -3682,10 +3742,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 270
start:
- character: 4
+ character: 6
line: 270
uri: references.robot
name: ${MATCH TYPE}
@@ -3697,10 +3757,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: references.robot
name: ${a var}
@@ -3712,10 +3772,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 245
start:
- character: 19
+ character: 21
line: 245
uri: references.robot
name: ${arg}
@@ -3727,10 +3787,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 169
start:
- character: 19
+ character: 21
line: 169
uri: references.robot
name: ${a}
@@ -3742,10 +3802,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
uri: references.robot
name: ${a}
@@ -3757,10 +3817,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 193
start:
- character: 19
+ character: 21
line: 193
uri: references.robot
name: ${a}
@@ -3772,10 +3832,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 26
start:
- character: 0
+ character: 2
line: 26
uri: references.robot
name: ${bananas}
@@ -3802,10 +3862,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 269
start:
- character: 4
+ character: 6
line: 269
uri: references.robot
name: ${beginning}
@@ -3817,10 +3877,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 169
start:
- character: 27
+ character: 29
line: 169
uri: references.robot
name: ${b}
@@ -3832,10 +3892,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
uri: references.robot
name: ${b}
@@ -3847,10 +3907,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 193
start:
- character: 27
+ character: 29
line: 193
uri: references.robot
name: ${b}
@@ -3862,10 +3922,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 258
start:
- character: 19
+ character: 21
line: 258
uri: references.robot
name: ${count}
@@ -3892,10 +3952,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 59
start:
- character: 4
+ character: 6
line: 59
uri: references.robot
name: ${result}
@@ -3907,10 +3967,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 205
start:
- character: 4
+ character: 6
line: 205
uri: references.robot
name: ${result}
@@ -3922,10 +3982,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 236
start:
- character: 19
+ character: 21
line: 236
uri: references.robot
name: ${retries}
@@ -3937,10 +3997,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 258
start:
- character: 31
+ character: 33
line: 258
uri: references.robot
name: ${retries}
@@ -4012,10 +4072,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 159
start:
- character: 19
+ character: 21
line: 159
uri: references.robot
name: ${tt}
@@ -4042,10 +4102,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 122
start:
- character: 19
+ character: 21
line: 122
uri: references.robot
name: ${type}
@@ -4057,10 +4117,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 224
start:
- character: 19
+ character: 21
line: 224
uri: references.robot
name: ${val}
@@ -4117,10 +4177,10 @@ result:
location:
range:
end:
- character: 11
+ character: 4
line: 27
start:
- character: 0
+ character: 2
line: 27
uri: references.robot
name: "${\U0001F9E8\U0001F9E8}"
@@ -4567,10 +4627,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 31
start:
- character: 19
+ character: 21
line: 31
uri: sematic_tokenizing.robot
name: ${a}
@@ -4582,10 +4642,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 31
start:
- character: 27
+ character: 29
line: 31
uri: sematic_tokenizing.robot
name: ${b}
@@ -4597,10 +4657,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 31
start:
- character: 35
+ character: 37
line: 31
uri: sematic_tokenizing.robot
name: ${c}
@@ -4612,10 +4672,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 26
start:
- character: 19
+ character: 21
line: 26
uri: sematic_tokenizing.robot
name: ${type}
@@ -4732,10 +4792,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 30
start:
- character: 19
+ character: 21
line: 30
uri: setup_teardown.robot
name: ${type}
@@ -4837,10 +4897,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 19
start:
- character: 4
+ character: 6
line: 19
uri: signature_help.robot
name: ${a}
@@ -4852,10 +4912,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 19
start:
- character: 12
+ character: 14
line: 19
uri: signature_help.robot
name: ${b}
@@ -4867,10 +4927,10 @@ result:
location:
range:
end:
- character: 57
+ character: 56
line: 32
start:
- character: 50
+ character: 52
line: 32
uri: signature_help.robot
name: ${html}
@@ -4882,10 +4942,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 32
start:
- character: 33
+ character: 35
line: 32
uri: signature_help.robot
name: ${level}
@@ -4897,10 +4957,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 32
start:
- character: 19
+ character: 21
line: 32
uri: signature_help.robot
name: ${message}
@@ -5092,10 +5152,10 @@ result:
location:
range:
end:
- character: 13
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: symbols.robot
name: ${A_VAR}
@@ -5107,10 +5167,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 41
start:
- character: 19
+ character: 21
line: 41
uri: symbols.robot
name: ${first}
@@ -5122,10 +5182,10 @@ result:
location:
range:
end:
- character: 33
+ character: 32
line: 16
start:
- character: 20
+ character: 22
line: 16
uri: symbols.robot
name: ${kw_result1}
@@ -5137,10 +5197,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 13
start:
- character: 4
+ character: 6
line: 13
uri: symbols.robot
name: ${kw_result}
@@ -5152,10 +5212,10 @@ result:
location:
range:
end:
- character: 20
+ character: 19
line: 21
start:
- character: 9
+ character: 11
line: 21
uri: symbols.robot
name: ${loop_var}
@@ -5167,10 +5227,10 @@ result:
location:
range:
end:
- character: 40
+ character: 39
line: 41
start:
- character: 31
+ character: 33
line: 41
uri: symbols.robot
name: ${second}
@@ -5182,10 +5242,10 @@ result:
location:
range:
end:
- character: 12
+ character: 11
line: 68
start:
- character: 4
+ character: 6
line: 68
uri: symbols.robot
name: ${var 1}
@@ -5258,10 +5318,10 @@ result:
location:
range:
end:
- character: 13
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: templates.robot
name: ${A VAR}
@@ -5273,10 +5333,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 79
start:
- character: 19
+ character: 21
line: 79
uri: templates.robot
name: ${aaa}
@@ -5288,10 +5348,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 61
start:
- character: 19
+ character: 21
line: 61
uri: templates.robot
name: ${a}
@@ -5303,10 +5363,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 68
start:
- character: 19
+ character: 21
line: 68
uri: templates.robot
name: ${a}
@@ -5333,10 +5393,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 89
start:
- character: 19
+ character: 21
line: 89
uri: templates.robot
name: ${a}
@@ -5348,10 +5408,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 61
start:
- character: 27
+ character: 29
line: 61
uri: templates.robot
name: ${b}
@@ -5363,10 +5423,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 68
start:
- character: 27
+ character: 29
line: 68
uri: templates.robot
name: ${b}
@@ -5393,10 +5453,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 89
start:
- character: 27
+ character: 29
line: 89
uri: templates.robot
name: ${b}
@@ -5408,10 +5468,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 61
start:
- character: 35
+ character: 37
line: 61
uri: templates.robot
name: ${c}
@@ -5423,10 +5483,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 68
start:
- character: 35
+ character: 37
line: 68
uri: templates.robot
name: ${c}
@@ -5453,10 +5513,10 @@ result:
location:
range:
end:
- character: 46
+ character: 45
line: 89
start:
- character: 35
+ character: 37
line: 89
uri: templates.robot
name: ${expected}
@@ -5468,10 +5528,10 @@ result:
location:
range:
end:
- character: 15
+ character: 14
line: 81
start:
- character: 11
+ character: 13
line: 81
uri: templates.robot
name: ${i}
@@ -5483,10 +5543,10 @@ result:
location:
range:
end:
- character: 26
+ character: 10
line: 7
start:
- character: 0
+ character: 2
line: 7
uri: templates.robot
name: '@{LIST VAR}'
@@ -5723,10 +5783,10 @@ result:
location:
range:
end:
- character: 23
+ character: 16
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: templates2.robot
name: ${VALID PASSWORD}
@@ -5738,10 +5798,10 @@ result:
location:
range:
end:
- character: 22
+ character: 12
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: templates2.robot
name: ${VALID USER}
@@ -5753,10 +5813,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 53
start:
- character: 19
+ character: 21
line: 53
uri: templates2.robot
name: ${a}
@@ -5768,10 +5828,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 53
start:
- character: 27
+ character: 29
line: 53
uri: templates2.robot
name: ${b}
@@ -5783,10 +5843,10 @@ result:
location:
range:
end:
- character: 19
+ character: 18
line: 22
start:
- character: 11
+ character: 13
line: 22
uri: templates2.robot
name: ${index}
@@ -5798,10 +5858,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 19
start:
- character: 11
+ character: 13
line: 19
uri: templates2.robot
name: ${item}
@@ -5813,10 +5873,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 28
start:
- character: 11
+ character: 13
line: 28
uri: templates2.robot
name: ${item}
@@ -5828,10 +5888,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 38
start:
- character: 11
+ character: 13
line: 38
uri: templates2.robot
name: ${item}
@@ -5843,10 +5903,10 @@ result:
location:
range:
end:
- character: 45
+ character: 44
line: 49
start:
- character: 34
+ character: 36
line: 49
uri: templates2.robot
name: ${password}
@@ -5858,10 +5918,10 @@ result:
location:
range:
end:
- character: 30
+ character: 29
line: 49
start:
- character: 19
+ character: 21
line: 49
uri: templates2.robot
name: ${username}
@@ -5873,10 +5933,10 @@ result:
location:
range:
end:
- character: 38
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: templates2.robot
name: '@{ITEMS}'
@@ -6047,136 +6107,601 @@ result:
name: Template with FOR loop
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 16
- line: 12
+ character: 19
+ line: 7
start:
- character: 0
- line: 12
- uri: variables.robot
- name: ${DD}
+ character: 2
+ line: 7
+ uri: variable_conversion.robot
+ name: '${DATES: list[date]}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 24
- line: 124
+ character: 28
+ line: 8
start:
- character: 0
- line: 124
- uri: variables.robot
- name: ${INFO_DATA}
+ character: 2
+ line: 8
+ uri: variable_conversion.robot
+ name: '${PRIORITIES: dict[int, str]}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 12
- line: 11
+ character: 40
+ line: 70
start:
- character: 0
- line: 11
- uri: variables.robot
- name: ${UU}
+ character: 21
+ line: 70
+ uri: variable_conversion.robot
+ name: '${a: int | str | None}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 24
- line: 123
+ character: 8
+ line: 1
start:
- character: 0
- line: 123
- uri: variables.robot
- name: ${VALUE}
+ character: 2
+ line: 1
+ uri: variable_conversion.robot
+ name: '${a: int}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
character: 12
- line: 10
+ line: 47
start:
- character: 0
- line: 10
- uri: variables.robot
- name: ${ZZ}
+ character: 6
+ line: 47
+ uri: variable_conversion.robot
+ name: '${a: int}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 25
- line: 167
+ character: 27
+ line: 57
start:
- character: 19
- line: 167
- uri: variables.robot
- name: ${aaa}
+ character: 21
+ line: 57
+ uri: variable_conversion.robot
+ name: '${a: int}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 10
- line: 64
+ character: 22
+ line: 65
start:
- character: 4
- line: 64
- uri: variables.robot
- name: ${asd}
+ character: 21
+ line: 65
+ uri: variable_conversion.robot
+ name: ${a}
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 8
- line: 75
+ character: 37
+ line: 65
start:
- character: 4
- line: 75
- uri: variables.robot
- name: ${a}
+ character: 31
+ line: 65
+ uri: variable_conversion.robot
+ name: '${b: int}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 57
+ start:
+ character: 34
+ line: 57
+ uri: variable_conversion.robot
+ name: '${c: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 59
+ line: 57
+ start:
+ character: 47
+ line: 57
+ uri: variable_conversion.robot
+ name: '${d: list[str]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 32
+ start:
+ character: 6
+ line: 32
+ uri: variable_conversion.robot
+ name: '${i: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 42
+ start:
+ character: 13
+ line: 42
+ uri: variable_conversion.robot
+ name: '${i: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: variable_conversion.robot
+ name: '${k: Literal["Yes", "No"]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 34
+ line: 83
+ start:
+ character: 2
+ line: 83
+ uri: variable_conversion.robot
+ name: ${keyword}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 38
+ start:
+ character: 13
+ line: 38
+ uri: variable_conversion.robot
+ name: '${l: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
character: 8
+ line: 2
+ start:
+ character: 2
+ line: 2
+ uri: variable_conversion.robot
+ name: '${s: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 32
+ line: 42
+ start:
+ character: 26
+ line: 42
+ uri: variable_conversion.robot
+ name: '${s: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 16
+ line: 6
+ start:
+ character: 2
+ line: 6
+ uri: variable_conversion.robot
+ name: '${time: datetime}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 4
+ start:
+ character: 2
+ line: 4
+ uri: variable_conversion.robot
+ name: '@{numbers: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 5
+ start:
+ character: 2
+ line: 5
+ uri: variable_conversion.robot
+ name: '@{wrong_numbers: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 53
line: 83
start:
+ character: 0
+ line: 83
+ uri: variable_conversion.robot
+ name: 'a ${keyword: int:keyword|testcase} with embedded args'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: variable_conversion.robot
+ name: a simple keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 39
+ line: 64
+ start:
+ character: 0
+ line: 64
+ uri: variable_conversion.robot
+ name: a simple keyword with default arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 36
+ line: 69
+ start:
+ character: 0
+ line: 69
+ uri: variable_conversion.robot
+ name: a simple keyword with union argument
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 50
+ start:
+ character: 0
+ line: 50
+ uri: variable_conversion.robot
+ name: calling kws with embedded args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 9
+ line: 35
+ start:
+ character: 0
+ line: 35
+ uri: variable_conversion.robot
+ name: for loops
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 46
+ start:
+ character: 0
+ line: 46
+ uri: variable_conversion.robot
+ name: if assignment
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 19
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: variable_conversion.robot
+ name: keyword assignments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 25
+ start:
+ character: 0
+ line: 25
+ uri: variable_conversion.robot
+ name: local variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 12
+ start:
+ character: 0
+ line: 12
+ uri: variable_conversion.robot
+ name: suite variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 4
+ line: 12
+ start:
+ character: 2
+ line: 12
+ uri: variables.robot
+ name: ${DD}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 11
+ line: 124
+ start:
+ character: 2
+ line: 124
+ uri: variables.robot
+ name: ${INFO_DATA}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 4
+ line: 11
+ start:
+ character: 2
+ line: 11
+ uri: variables.robot
+ name: ${UU}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 123
+ start:
+ character: 2
+ line: 123
+ uri: variables.robot
+ name: ${VALUE}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
character: 4
+ line: 10
+ start:
+ character: 2
+ line: 10
+ uri: variables.robot
+ name: ${ZZ}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 167
+ start:
+ character: 19
+ line: 167
+ uri: variables.robot
+ name: ${aaa}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 24
+ line: 167
+ start:
+ character: 21
+ line: 167
+ uri: variables.robot
+ name: ${aaa}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
+ line: 64
+ start:
+ character: 6
+ line: 64
+ uri: variables.robot
+ name: ${asd}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 75
+ start:
+ character: 6
+ line: 75
+ uri: variables.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 83
+ start:
+ character: 6
line: 83
uri: variables.robot
name: ${a}
@@ -6188,10 +6713,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 99
start:
- character: 4
+ character: 6
line: 99
uri: variables.robot
name: ${a}
@@ -6218,10 +6743,10 @@ result:
location:
range:
end:
- character: 21
+ character: 20
line: 177
start:
- character: 17
+ character: 19
line: 177
uri: variables.robot
name: ${a}
@@ -6233,10 +6758,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 76
start:
- character: 4
+ character: 6
line: 76
uri: variables.robot
name: ${b}
@@ -6248,10 +6773,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 84
start:
- character: 4
+ character: 6
line: 84
uri: variables.robot
name: ${b}
@@ -6263,10 +6788,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 100
start:
- character: 4
+ character: 6
line: 100
uri: variables.robot
name: ${b}
@@ -6293,10 +6818,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 177
start:
- character: 23
+ character: 25
line: 177
uri: variables.robot
name: ${b}
@@ -6308,10 +6833,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 77
start:
- character: 4
+ character: 6
line: 77
uri: variables.robot
name: ${c}
@@ -6323,10 +6848,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 102
start:
- character: 4
+ character: 6
line: 102
uri: variables.robot
name: ${c}
@@ -6338,10 +6863,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 78
start:
- character: 4
+ character: 6
line: 78
uri: variables.robot
name: ${d}
@@ -6368,10 +6893,10 @@ result:
location:
range:
end:
- character: 40
+ character: 39
line: 177
start:
- character: 29
+ character: 31
line: 177
uri: variables.robot
name: ${expected}
@@ -6383,10 +6908,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 79
start:
- character: 4
+ character: 6
line: 79
uri: variables.robot
name: ${e}
@@ -6398,10 +6923,10 @@ result:
location:
range:
end:
- character: 43
+ character: 11
line: 9
start:
- character: 0
+ character: 2
line: 9
uri: variables.robot
name: ${full_name}
@@ -6413,10 +6938,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 80
start:
- character: 4
+ character: 6
line: 80
uri: variables.robot
name: ${f}
@@ -6428,10 +6953,10 @@ result:
location:
range:
end:
- character: 19
+ character: 18
line: 68
start:
- character: 4
+ character: 6
line: 68
uri: variables.robot
name: ${hello there1}
@@ -6443,10 +6968,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 52
start:
- character: 9
+ character: 11
line: 52
uri: variables.robot
name: ${i}
@@ -6458,14 +6983,29 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 169
start:
- character: 9
+ character: 11
line: 169
uri: variables.robot
name: ${i}
tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 83
+ line: 181
+ start:
+ character: 75
+ line: 181
+ uri: variables.robot
+ name: ${keywords}
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -6488,10 +7028,10 @@ result:
location:
range:
end:
- character: 99
+ character: 98
line: 181
start:
- character: 88
+ character: 90
line: 181
uri: variables.robot
name: ${listener}
@@ -6503,10 +7043,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 181
start:
- character: 19
+ character: 21
line: 181
uri: variables.robot
name: ${name}
@@ -6518,14 +7058,29 @@ result:
location:
range:
end:
- character: 57
+ character: 15
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: variables.robot
name: ${pre_full_name}
tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 68
+ line: 181
+ start:
+ character: 63
+ line: 181
+ uri: variables.robot
+ name: ${scope}
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -6548,10 +7103,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 181
start:
- character: 37
+ character: 39
line: 181
uri: variables.robot
name: ${version}
@@ -6563,10 +7118,10 @@ result:
location:
range:
end:
- character: 11
+ character: 4
line: 14
start:
- character: 0
+ character: 2
line: 14
uri: variables.robot
name: "${\U0001F9E8\U0001F9E8}"
@@ -6578,10 +7133,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 71
start:
- character: 4
+ character: 6
line: 71
uri: variables.robot
name: '&{a dict}'
@@ -6893,10 +7448,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 39
start:
- character: 32
+ character: 34
line: 39
uri: vartest.robot
name: ${a_second_arg}
@@ -6908,10 +7463,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 45
start:
- character: 32
+ character: 34
line: 45
uri: vartest.robot
name: ${a_second_arg}
@@ -6923,10 +7478,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 39
start:
- character: 19
+ character: 21
line: 39
uri: vartest.robot
name: ${an_arg}
@@ -6938,10 +7493,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 45
start:
- character: 19
+ character: 21
line: 45
uri: vartest.robot
name: ${an_arg}
@@ -7073,10 +7628,10 @@ result:
location:
range:
end:
- character: 35
+ character: 11
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: very_big_file.robot
name: ${city_name}
@@ -7103,10 +7658,10 @@ result:
location:
range:
end:
- character: 71
+ character: 16
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: very_big_file.robot
name: ${cryptic_answer}
@@ -7133,10 +7688,10 @@ result:
location:
range:
end:
- character: 34
+ character: 10
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: very_big_file.robot
name: ${location}
@@ -7253,10 +7808,10 @@ result:
location:
range:
end:
- character: 62
+ character: 10
line: 7
start:
- character: 0
+ character: 2
line: 7
uri: very_big_file.robot
name: ${question}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_workspace_symbols.test[as].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_workspace_symbols.test[as].out
index 90632af99..aaab5e7bc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_workspace_symbols.test[as].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_workspace_symbols.test[as].out
@@ -111,10 +111,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: code_action_show_documentation.robot
name: ${bananas}
@@ -216,10 +216,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 164
start:
- character: 32
+ character: 34
line: 164
uri: document_highlight.robot
name: ${a_second_arg}
@@ -231,10 +231,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 169
start:
- character: 32
+ character: 34
line: 169
uri: document_highlight.robot
name: ${a_second_arg}
@@ -411,10 +411,10 @@ result:
location:
range:
end:
- character: 47
+ character: 20
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: firstresource.resource
name: ${A_VAR_FROM_RESOURE}
@@ -426,10 +426,10 @@ result:
location:
range:
end:
- character: 61
+ character: 60
line: 23
start:
- character: 46
+ character: 48
line: 23
uri: firstresource.resource
name: ${a_short_name}
@@ -516,10 +516,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 213
start:
- character: 32
+ character: 34
line: 213
uri: goto.robot
name: ${a_second_arg}
@@ -531,10 +531,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 218
start:
- character: 32
+ character: 34
line: 218
uri: goto.robot
name: ${a_second_arg}
@@ -726,10 +726,10 @@ result:
location:
range:
end:
- character: 24
+ character: 8
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: indexed_variables.robot
name: '@{A_LIST}'
@@ -741,10 +741,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 26
start:
- character: 0
+ character: 2
line: 26
uri: references.robot
name: ${bananas}
@@ -1071,10 +1071,10 @@ result:
location:
range:
end:
- character: 23
+ character: 16
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: templates2.robot
name: ${VALID PASSWORD}
@@ -1086,10 +1086,10 @@ result:
location:
range:
end:
- character: 22
+ character: 12
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: templates2.robot
name: ${VALID USER}
@@ -1101,10 +1101,10 @@ result:
location:
range:
end:
- character: 45
+ character: 44
line: 49
start:
- character: 34
+ character: 36
line: 49
uri: templates2.robot
name: ${password}
@@ -1199,6 +1199,186 @@ result:
uri: templates2.robot
name: Login with invalid credentials should fail
tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 7
+ start:
+ character: 2
+ line: 7
+ uri: variable_conversion.robot
+ name: '${DATES: list[date]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 70
+ start:
+ character: 21
+ line: 70
+ uri: variable_conversion.robot
+ name: '${a: int | str | None}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: variable_conversion.robot
+ name: '${k: Literal["Yes", "No"]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 53
+ line: 83
+ start:
+ character: 0
+ line: 83
+ uri: variable_conversion.robot
+ name: 'a ${keyword: int:keyword|testcase} with embedded args'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: variable_conversion.robot
+ name: a simple keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 39
+ line: 64
+ start:
+ character: 0
+ line: 64
+ uri: variable_conversion.robot
+ name: a simple keyword with default arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 36
+ line: 69
+ start:
+ character: 0
+ line: 69
+ uri: variable_conversion.robot
+ name: a simple keyword with union argument
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 50
+ start:
+ character: 0
+ line: 50
+ uri: variable_conversion.robot
+ name: calling kws with embedded args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 46
+ start:
+ character: 0
+ line: 46
+ uri: variable_conversion.robot
+ name: if assignment
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 19
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: variable_conversion.robot
+ name: keyword assignments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 25
+ start:
+ character: 0
+ line: 25
+ uri: variable_conversion.robot
+ name: local variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 12
+ start:
+ character: 0
+ line: 12
+ uri: variable_conversion.robot
+ name: suite variables
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -1206,10 +1386,10 @@ result:
location:
range:
end:
- character: 10
+ character: 9
line: 64
start:
- character: 4
+ character: 6
line: 64
uri: variables.robot
name: ${asd}
@@ -1281,10 +1461,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 39
start:
- character: 32
+ character: 34
line: 39
uri: vartest.robot
name: ${a_second_arg}
@@ -1296,10 +1476,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 45
start:
- character: 32
+ character: 34
line: 45
uri: vartest.robot
name: ${a_second_arg}
@@ -1371,10 +1551,10 @@ result:
location:
range:
end:
- character: 71
+ character: 16
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: very_big_file.robot
name: ${cryptic_answer}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_workspace_symbols.test[first].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_workspace_symbols.test[first].out
index e29fff18e..ab4c5c257 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_workspace_symbols.test[first].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_workspace_symbols.test[first].out
@@ -299,6 +299,21 @@ result:
uri: jsonvariables.robot
name: first
tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: old_for.robot
+ name: first
+ tags: null
- !WorkspaceSymbol
container_name: part1__suite
data: null
@@ -576,10 +591,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 41
start:
- character: 19
+ character: 21
line: 41
uri: symbols.robot
name: ${first}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
index 8239f353e..226df7e43 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
index a3ba6d93a..a8415375e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
index 524f60284..6eaa2e935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
index a049d2abd..7ca591687 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
index b2b3a6421..e5efffaa2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
index a513df80b..d54497f31 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
index 2f87ac00e..7efe9727c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
index b0e55bbd5..8f988fde6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
index 6842bfc3a..204e3a526 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
index b9e122bef..392d76d05 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
index 1f167bad1..595a25015 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
index 2d3d8bb53..ec8d67203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
index f4485a04e..2a4594d9d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
index a1f129203..931b651ca 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
index 8a5af0dd6..ca5f519ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
index 079bc90d9..db4eadd00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
index c04f7fc58..9fc8dc9da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
index c233ae926..96464fc0a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
index 870d7a36a..b1eff5801 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
index e82ef2b56..980598cd7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
index c592fc763..0c5b96935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
index a57aabeb3..e02339b62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
index 46e7c3340..ffe8f95ee 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
index 642884f51..67711a05f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
index 28cb91a72..8bb3347a7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
index 0dba1a415..79b0ab951 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
index d71c9d08b..e9fe50e25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
index 7b0d67047..cf3d34dea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
index 3c475dbed..62f4aceb1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
index 15d634e9c..107def919 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
index ade8b6d92..8d2ca8626 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
index 66fddf121..1feeeb40c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
index eb0b5fd54..f5ec1c457 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
index ba8a95794..bea1d3906 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
index 4e8e95194..a62d80df3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
index 90b42a565..e34b79a0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
index be66e20d1..17ec05e27 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
index cb8da7aba..04e70985b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
index f4d156da6..9e6dfd8d7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
index a7550e1f4..b7cf80414 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
index 5d424c505..3244fdcd1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
index becb9d7cb..a94d36226 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
index 5bd9fb55e..fece8b2aa 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
index 725193b37..b0235ca01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
index 5e034b72e..ac50687b3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
index 70d1c5b94..23bb8aaf3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
index ef1b3e404..3b0e98cec 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
index 07bd779f8..325e16336 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
index b3afde9c8..40a3bfb4b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
index b2b32b5a7..9dcf09b8d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
index e0d8907d6..a60432e01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
index ee5c1bb07..52e38c418 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
index 77b677467..afad4b22e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
index 545003425..79c6190d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
index 4a4ecc302..a1e856600 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
index 84362f8a9..b1cb2126a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
index 447bf4184..de0d59df6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
index 52d02c18e..23b9b8a1f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
index dcf7c04e6..17be9c684 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
index 0dfb5c023..7d355d48d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
index f1f42b950..e0c65040f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
index 78cea173c..e73a085ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
index c1fefa5a0..fe1822274 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
index d7f5004eb..7083c0456 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
@@ -13,10 +13,10 @@ result:
line: 113
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
index 5c887ad71..7805da4bc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
@@ -13,10 +13,10 @@ result:
line: 116
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
index ad2cb2b03..e2b4e3ec5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 121
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
index ffdb6f269..3053203b2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 124
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
index 005eccbe0..3aa98776d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
index 727f6e96d..1d82bbf19 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
index 11c936057..69ac841ce 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
index 16a81732f..89d2d8a9a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
index 4f87541d1..220538b57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
@@ -13,10 +13,10 @@ result:
line: 136
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
index 38e45adb1..c0d8cab53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
index 3d915b2f6..e5b45a749 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
index 999c93272..f5bd445a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
index 1be872de3..2ce131597 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
index 1bb226e02..9d51f1860 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
index 7bab735ea..452a44add 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
index 88b77dc89..865e4fe5a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
index 2ad7fcd5c..67501186c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
index 4660d8a0f..f0ad689e2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
index 36e560bc2..3b1f57c25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
index 1082011e2..868e40459 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
index 631d5be02..c6855781f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
index bb4183827..bc6603370 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
index f210370b5..f5299abab 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
index 58c0e52a0..4cf7f16da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
index 16692643a..ae530e453 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
index 85273368b..e48ac204d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
index 11982d4d9..67436f28b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
index 8ee8393a4..8489525fc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
index a9096c519..aeb46e115 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
index 31d58a50f..ff5922211 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
index 2c1d286e9..518933599 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
index 88bfebaf9..1389c2ae6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
index 107e0644a..91386967d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
index bcb425d10..ba3e6351b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
index 5ce584672..14c6de2b7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
index 8c637fba1..145813fd0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
index 84d9267dd..001e62bda 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
index 9c2bc61de..2f9ed615a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
index 877c4d3f7..8f60adbfe 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
index 352ed5354..e58d291f5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
index 7f2aaed0b..79b34a22b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
index 9f7ff9da3..6aafa0cf7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
index e62f70937..99b407107 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
index 26343b08f..a2d19cd1a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
index cb34057a6..b90b18f53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
index 66e1b72a2..5be0a2e62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
index 05a9f2878..44fda0315 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
index a13d64453..3499f3dc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
index edeb45042..800293ec2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 191
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
index f9f759774..e4a2311a1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 193
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
index 8f408d191..18898925e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
index fc63710ae..e00559044 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
index 99b3c42e7..e8255ec5f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
index 24291cbfc..4a85bbe85 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 208
target_range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
index 602cb6ab0..39faffbcf 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
index 6b1ce1d6a..4fd41dc65 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
index 6abc94c88..98f059f2a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
index 3951adaa1..3165c0fc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
index 397adb60c..c34433d9f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
index 38ad1c416..c15fef092 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
index c0de4a0d8..83529a203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 222
target_range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
index 23f059316..3cbc16c4f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
index cd700261d..1514a2e57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
index 6ef9cc6bf..99b72499e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
index 8239f353e..226df7e43 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
index a3ba6d93a..a8415375e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
index 524f60284..6eaa2e935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
index a049d2abd..7ca591687 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
index b2b3a6421..e5efffaa2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
index a513df80b..d54497f31 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
index 2f87ac00e..7efe9727c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
index b0e55bbd5..8f988fde6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
index 6842bfc3a..204e3a526 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
index b9e122bef..392d76d05 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
index 1f167bad1..595a25015 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
index 2d3d8bb53..ec8d67203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
index f4485a04e..2a4594d9d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
index a1f129203..931b651ca 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
index 8a5af0dd6..ca5f519ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
index 079bc90d9..db4eadd00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
index c04f7fc58..9fc8dc9da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
index c233ae926..96464fc0a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
index 870d7a36a..b1eff5801 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
index e82ef2b56..980598cd7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
index c592fc763..0c5b96935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
index a57aabeb3..e02339b62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
index 46e7c3340..ffe8f95ee 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
index 642884f51..67711a05f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
index 28cb91a72..8bb3347a7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
index 0dba1a415..79b0ab951 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
index d71c9d08b..e9fe50e25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
index 7b0d67047..cf3d34dea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
index 3c475dbed..62f4aceb1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
index 15d634e9c..107def919 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
index ade8b6d92..8d2ca8626 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
index 66fddf121..1feeeb40c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
index eb0b5fd54..f5ec1c457 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
index ba8a95794..bea1d3906 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
index 4e8e95194..a62d80df3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
index 90b42a565..e34b79a0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
index be66e20d1..17ec05e27 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
index cb8da7aba..04e70985b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
index f4d156da6..9e6dfd8d7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
index a7550e1f4..b7cf80414 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
index 5d424c505..3244fdcd1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
index becb9d7cb..a94d36226 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
index 5bd9fb55e..fece8b2aa 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
index 725193b37..b0235ca01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
index 5e034b72e..ac50687b3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
index 70d1c5b94..23bb8aaf3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
index ef1b3e404..3b0e98cec 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
index 07bd779f8..325e16336 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
index b3afde9c8..40a3bfb4b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
index b2b32b5a7..9dcf09b8d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
index e0d8907d6..a60432e01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
index ee5c1bb07..52e38c418 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
index 77b677467..afad4b22e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
index 545003425..79c6190d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
index 4a4ecc302..a1e856600 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
index 84362f8a9..b1cb2126a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
index 447bf4184..de0d59df6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
index 52d02c18e..23b9b8a1f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
index dcf7c04e6..17be9c684 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
index 0dfb5c023..7d355d48d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
index f1f42b950..e0c65040f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
index 78cea173c..e73a085ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
index c1fefa5a0..fe1822274 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
index d7f5004eb..7083c0456 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
@@ -13,10 +13,10 @@ result:
line: 113
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
index 5c887ad71..7805da4bc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
@@ -13,10 +13,10 @@ result:
line: 116
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
index ad2cb2b03..e2b4e3ec5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 121
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
index ffdb6f269..3053203b2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 124
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
index 005eccbe0..3aa98776d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
index 727f6e96d..1d82bbf19 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
index 11c936057..69ac841ce 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
index 16a81732f..89d2d8a9a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
index 4f87541d1..220538b57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
@@ -13,10 +13,10 @@ result:
line: 136
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
index 38e45adb1..c0d8cab53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
index 3d915b2f6..e5b45a749 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
index 999c93272..f5bd445a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
index 1be872de3..2ce131597 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
index 1bb226e02..9d51f1860 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
index 7bab735ea..452a44add 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
index 88b77dc89..865e4fe5a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
index 2ad7fcd5c..67501186c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
index 4660d8a0f..f0ad689e2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
index 36e560bc2..3b1f57c25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
index 1082011e2..868e40459 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
index 631d5be02..c6855781f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
index bb4183827..bc6603370 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
index f210370b5..f5299abab 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
index 58c0e52a0..4cf7f16da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
index 16692643a..ae530e453 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
index 85273368b..e48ac204d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
index 11982d4d9..67436f28b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
index 8ee8393a4..8489525fc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
index a9096c519..aeb46e115 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
index 31d58a50f..ff5922211 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
index 2c1d286e9..518933599 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
index 88bfebaf9..1389c2ae6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
index 107e0644a..91386967d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
index bcb425d10..ba3e6351b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
index 5ce584672..14c6de2b7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
index 8c637fba1..145813fd0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
index 84d9267dd..001e62bda 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
index 9c2bc61de..2f9ed615a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
index 877c4d3f7..8f60adbfe 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
index 352ed5354..e58d291f5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
index 7f2aaed0b..79b34a22b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
index 9f7ff9da3..6aafa0cf7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
index e62f70937..99b407107 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
index 26343b08f..a2d19cd1a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
index cb34057a6..b90b18f53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
index 66e1b72a2..5be0a2e62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
index 05a9f2878..44fda0315 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
index a13d64453..3499f3dc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
index edeb45042..800293ec2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 191
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
index f9f759774..e4a2311a1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 193
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
index 8f408d191..18898925e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
index fc63710ae..e00559044 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
index 99b3c42e7..e8255ec5f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
index 24291cbfc..4a85bbe85 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 208
target_range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
index 602cb6ab0..39faffbcf 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
index 6b1ce1d6a..4fd41dc65 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
index 6abc94c88..98f059f2a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
index 3951adaa1..3165c0fc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
index 397adb60c..c34433d9f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
index 38ad1c416..c15fef092 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
index c0de4a0d8..83529a203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 222
target_range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
index 23f059316..3cbc16c4f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
index cd700261d..1514a2e57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
index 6ef9cc6bf..99b72499e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-004-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-004-simple_keyword_call].out
index 375de10c2..b27652d77 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-004-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-004-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-005-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-005-simple_keyword_call].out
index 835536bd2..fad09f349 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-005-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-005-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-006-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-006-simple_keyword_call].out
index af6086b9b..1fc41d722 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-006-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-006-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-105-031-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-105-029-a_variable_with_emoji].out
similarity index 83%
rename from tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-105-031-a_variable_with_emoji].out
rename to tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-105-029-a_variable_with_emoji].out
index c5cb6c5cd..70dec3898 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-105-031-a_variable_with_emoji].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-105-029-a_variable_with_emoji].out
@@ -1,5 +1,5 @@
data: !GeneratedTestData
- character: 31
+ character: 29
line: 105
name: a variable with emoji
result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-105-031-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-105-030-a_variable_with_emoji].out
similarity index 83%
rename from tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-105-031-a_variable_with_emoji].out
rename to tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-105-030-a_variable_with_emoji].out
index c5cb6c5cd..1ba9d617a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-105-031-a_variable_with_emoji].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-105-030-a_variable_with_emoji].out
@@ -1,5 +1,5 @@
data: !GeneratedTestData
- character: 31
+ character: 30
line: 105
name: a variable with emoji
result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-105-033-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-105-033-a_variable_with_emoji].out
deleted file mode 100644
index 3afbe753a..000000000
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-105-033-a_variable_with_emoji].out
+++ /dev/null
@@ -1,32 +0,0 @@
-data: !GeneratedTestData
- character: 33
- line: 105
- name: a variable with emoji
-result:
-- !Location
- range:
- end:
- character: 50
- line: 30
- start:
- character: 41
- line: 30
- uri: resources/firstresource.resource
-- !Location
- range:
- end:
- character: 49
- line: 31
- start:
- character: 40
- line: 31
- uri: resources/firstresource.resource
-- !Location
- range:
- end:
- character: 42
- line: 105
- start:
- character: 33
- line: 105
- uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[__init__.robot].out
index 617f8bd42..f17fc64b4 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[__init__.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 14
- 26
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[bddstyle.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[bddstyle.robot].out
index 2ffd4be56..abd63c2b8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[bddstyle.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[bddstyle.robot].out
@@ -3,57 +3,87 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 14
- - 34
+ - 33
- 1
- 0
- - 22
+ - 14
+ - 8
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 0
- 37
- - 34
+ - 33
- 1
- 0
- - 50
+ - 37
+ - 13
+ - 36
+ - 0
+ - 0
+ - 13
- 1
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 0
- 31
- - 34
+ - 33
- 1
- 0
- - 40
+ - 31
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 1
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 0
- 2
- - 34
+ - 33
- 1
- 0
- 6
@@ -63,7 +93,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -73,221 +103,246 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 13
- - 56
+ - 54
- 0
- 0
- 17
- 9
- - 56
+ - 54
- 0
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 0
- 0
- - 23
+ - 14
+ - 8
+ - 36
+ - 2048
+ - 0
+ - 9
- 11
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 37
- - 39
+ - 37
- 0
+ - 0
+ - 37
+ - 13
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 9
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 8
+ - 36
+ - 2048
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 0
- 0
- 14
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 37
- - 39
+ - 37
- 0
- 0
- 37
- 1
- - 36
+ - 35
- 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
- 0
- 31
- 10
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
- 0
- 31
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 4
+ - 36
+ - 2048
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[code_action_show_documentation.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[code_action_show_documentation.robot].out
index 693e7bbc6..63f49473f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[code_action_show_documentation.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[code_action_show_documentation.robot].out
@@ -3,82 +3,97 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 16
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -88,27 +103,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -116,24 +131,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 2
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -143,32 +163,47 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -178,7 +213,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -188,8 +223,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -198,7 +238,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -208,7 +248,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -218,22 +258,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 1
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -243,17 +298,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -263,7 +328,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -273,22 +338,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -298,7 +363,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -308,7 +373,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -318,27 +383,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
- 9
- - 53
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
- 0
- 0
- 9
@@ -348,17 +418,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -368,17 +448,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -388,7 +478,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -398,12 +488,12 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 2
- 4
@@ -413,7 +503,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -423,107 +513,112 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 17
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 5
- - 36
+ - 35
- 2048
- 0
- 6
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 14
- - 36
+ - 35
- 2048
- 0
- 15
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 2
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 18
+ - 7
+ - 10
+ - 36
+ - 2048
+ - 0
+ - 11
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 21
- - 39
+ - 37
- 0
- 2
- 4
- 21
- - 39
+ - 37
- 0
- 0
- 25
@@ -533,57 +628,67 @@ result: !SemanticTokens
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 2
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 17
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 2
- 4
@@ -593,7 +698,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -603,97 +708,192 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 3
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 22
- 4
- - 34
+ - 18
+ - 36
+ - 0
+ - 0
+ - 18
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 7
- - 34
+ - 33
- 1
- 0
- - 17
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 10
- 14
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -703,7 +903,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -720,20 +920,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -743,7 +958,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -753,7 +968,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -765,20 +980,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -788,7 +1018,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -798,7 +1028,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -810,14 +1040,29 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[document_highlight.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[document_highlight.robot].out
index 85e03cd1e..f92227379 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[document_highlight.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[document_highlight.robot].out
@@ -3,62 +3,77 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
+ - 0
+ - 0
+ - 16
+ - 9
+ - 36
- 0
- 0
- - 25
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
- 36
- - 53
+ - 0
+ - 0
+ - 9
+ - 36
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -68,27 +83,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -96,24 +111,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 4
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -123,32 +143,52 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 9
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,8 +208,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -178,7 +223,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -188,7 +233,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -198,22 +243,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -223,17 +283,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -243,7 +313,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,22 +323,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -278,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -288,7 +358,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -298,27 +368,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 9
- - 53
+ - 51
- 0
- 0
- 9
@@ -328,17 +403,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -348,37 +433,47 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 21
- - 39
+ - 37
- 0
- 1
- 4
- 27
- - 39
+ - 37
- 0
- 1
- 4
- 27
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -388,12 +483,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -403,7 +498,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -413,7 +508,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -423,7 +518,7 @@ result: !SemanticTokens
- 5
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -433,147 +528,167 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -583,7 +698,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -600,20 +715,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -623,7 +753,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -633,7 +763,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -645,20 +775,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -668,7 +813,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -678,7 +823,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -691,7 +836,12 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 9
+ - 1
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 4
- 7
- 0
@@ -700,92 +850,152 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- - 26
+ - 18
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 15
- - 40
+ - 38
- 1024
+ - 0
+ - 19
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 24
- 15
- - 40
+ - 38
- 1024
+ - 0
+ - 19
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- - 26
+ - 18
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 11
- - 40
+ - 38
- 1024
- 0
- 15
- 4
- - 40
+ - 38
+ - 0
+ - 0
+ - 8
+ - 7
+ - 36
- 0
- 3
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 4
- 0
- 49
- - 34
- - 1
+ - 33
- 1
- 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
- - 3
- 4
- 1
- 21
@@ -793,13 +1003,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -808,13 +1023,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -823,7 +1048,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -833,7 +1058,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -845,20 +1070,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
@@ -868,7 +1108,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -878,7 +1118,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -890,22 +1130,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -913,13 +1143,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -928,21 +1163,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[duplicated_resources.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[duplicated_resources.robot].out
index fb940fc64..413d2bcd8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[duplicated_resources.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[duplicated_resources.robot].out
@@ -3,107 +3,107 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 28
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 10
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 8
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 12
- 14
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 18
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -113,12 +113,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -128,12 +128,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -143,6 +143,6 @@ result: !SemanticTokens
- 0
- 1
- 18
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[external_libray.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[external_libray.robot].out
index deee32838..60f2a2488 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[external_libray.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[external_libray.robot].out
@@ -3,47 +3,47 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 17
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -53,6 +53,6 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[foldingrange.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[foldingrange.robot].out
index 5c07a2da1..4ffb0b878 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[foldingrange.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[foldingrange.robot].out
@@ -3,356 +3,396 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- - 2
- - 0
- - 13
- - 25
- - 256
- - 1
+ - 3
- 0
- 3
- - 43
+ - 41
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 9
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 15
+ - 8
- 2
- - 46
+ - 44
- 0
- 2
- 8
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 6
+ - 4
+ - 36
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 3
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 0
- 8
- - 33
+ - 32
- 1
- 3
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 3
- 0
- 9
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 16
- - 31
+ - 30
- 0
- 7
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 13
- - 33
+ - 32
- 1
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
- 1
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 2
- - 35
+ - 34
- 0
- 1
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 4
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 0
- 16
- - 33
+ - 32
- 1
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 6
+ - 36
+ - 0
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- - 16
+ - 8
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 12
- - 39
+ - 37
- 1024
- 3
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[goto.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[goto.robot].out
index 627361dcf..c53530ddb 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[goto.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[goto.robot].out
@@ -3,62 +3,82 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 11
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
- 36
- - 53
+ - 0
+ - 0
+ - 9
+ - 36
+ - 51
- 0
- 4
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 24
+ - 18
+ - 6
+ - 36
+ - 0
+ - 0
+ - 6
- 19
- - 53
+ - 51
- 0
- 0
- 23
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -66,24 +86,49 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 5
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
- 0
- - 3
- 18
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -93,7 +138,7 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -103,17 +148,37 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
- 1
- 21
- 0
- - 7
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 6
+ - 36
+ - 0
+ - 2
+ - 0
+ - 11
+ - 36
+ - 0
+ - 2
+ - 0
+ - 11
+ - 36
+ - 0
+ - 0
- 15
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -123,22 +188,52 @@ result: !SemanticTokens
- 0
- 6
- 6
- - 56
+ - 54
- 0
- 0
- 6
- 1
- 21
- 0
+ - 3
+ - 0
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
+ - 0
+ - 9
+ - 11
+ - 36
+ - 0
+ - 0
+ - 12
- 10
+ - 36
+ - 0
+ - 4
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -148,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -158,37 +253,67 @@ result: !SemanticTokens
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -198,12 +323,17 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
- 0
- 5
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -213,42 +343,77 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 29
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 0
+ - 12
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 9
+ - 36
- 0
- 3
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 3
- 4
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -258,22 +423,22 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 16
- - 39
+ - 37
- 0
- 2
- 4
- 18
- - 39
+ - 37
- 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -283,7 +448,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -298,7 +463,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -308,7 +473,7 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
- 2
- 4
@@ -318,7 +483,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -328,7 +493,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -338,12 +503,12 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 4
- 0
- 16
- - 33
+ - 32
- 1
- 1
- 4
@@ -353,7 +518,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -363,7 +528,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -373,177 +538,202 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 32
- - 39
+ - 37
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 3
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 3
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 7
- - 39
+ - 37
- 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -553,12 +743,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -568,7 +758,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -578,7 +768,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -588,22 +778,22 @@ result: !SemanticTokens
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 16
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 3
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -613,7 +803,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -630,20 +820,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -653,7 +858,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -663,7 +868,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -675,20 +880,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 32
- - 34
+ - 33
- 1
- 1
- 4
@@ -698,7 +918,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -708,7 +928,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -721,7 +941,12 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 10
+ - 1
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
- 5
- 7
- 0
@@ -730,20 +955,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 9
+ - 36
+ - 0
- 6
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 4
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -753,7 +993,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -763,7 +1003,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -775,25 +1015,40 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 0
- 7
- - 34
+ - 33
- 1
- 1
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -803,12 +1058,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -818,12 +1073,12 @@ result: !SemanticTokens
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 2
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -833,29 +1088,14 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 0
- 49
- - 34
- - 1
+ - 33
- 1
- 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
- - 3
- 4
- 1
- 21
@@ -863,13 +1103,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -878,13 +1123,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -893,7 +1148,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -903,7 +1158,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -915,20 +1170,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
@@ -938,7 +1208,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -948,7 +1218,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -960,22 +1230,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -983,13 +1243,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -998,21 +1263,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[hover.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[hover.robot].out
index 0d30de80e..c2aff9bd2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[hover.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[hover.robot].out
@@ -3,32 +3,32 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -38,27 +38,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -66,134 +66,164 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 14
- - 53
+ - 51
- 0
- 0
- 18
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 17
- - 53
+ - 51
- 0
- 0
- 29
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 8
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 17
- - 53
+ - 51
- 0
- 0
- 30
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 10
- - 53
+ - 51
- 0
- 4
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 3
+ - 0
+ - 9
+ - 36
+ - 0
- 0
- - 4
- 18
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -203,7 +233,7 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -213,22 +243,87 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
- 1
- 21
- 0
- - 28
+ - 3
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 36
+ - 0
+ - 3
+ - 0
+ - 5
+ - 36
- 0
- 1
- 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 20
+ - 36
+ - 0
- 5
- - 33
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 25
+ - 36
+ - 0
+ - 0
+ - 26
+ - 4
+ - 36
+ - 0
+ - 8
+ - 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 6
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
- 1
- 1
- 4
@@ -238,7 +333,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -253,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -263,8 +358,13 @@ result: !SemanticTokens
- 0
- 3
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -273,7 +373,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -283,7 +383,7 @@ result: !SemanticTokens
- 0
- 3
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -293,37 +393,67 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 3
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -333,52 +463,97 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 29
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 0
+ - 12
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 9
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 3
- 4
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -388,12 +563,12 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
- 4
- 0
- 6
- - 33
+ - 32
- 1
- 2
- 4
@@ -403,7 +578,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -413,7 +588,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -423,27 +598,32 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
- 9
- - 53
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
- 0
- 0
- 9
@@ -453,17 +633,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -473,12 +663,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -488,17 +683,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
- 0
- 19
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -506,34 +701,49 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 13
+ - 1
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 56
+ - 54
- 0
- 0
- 6
- 1
- 21
- 0
+ - 0
+ - 1
+ - 10
+ - 36
+ - 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
- 0
- 28
@@ -543,22 +753,22 @@ result: !SemanticTokens
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 5
- 4
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 7
- 15
- - 40
+ - 38
- 0
- 0
- 21
@@ -568,122 +778,142 @@ result: !SemanticTokens
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- - 2
- - 35
+ - 2
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
@@ -693,7 +923,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -703,17 +933,17 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
@@ -723,7 +953,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -733,17 +963,17 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -753,97 +983,97 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -853,72 +1083,72 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 5
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 0
- 21
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 40
+ - 38
- 0
- 0
- 1
- 3
- - 40
+ - 38
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 12
- 3
- - 40
+ - 38
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 6
- 3
- - 40
+ - 38
- 1024
- 5
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -928,22 +1158,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 0
- - 27
+ - 16
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 40
+ - 38
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -953,12 +1188,12 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 40
+ - 38
- 1024
- 4
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
@@ -968,7 +1203,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -978,42 +1213,42 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -1023,32 +1258,32 @@ result: !SemanticTokens
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 4
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 18
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1058,12 +1293,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1073,12 +1308,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1088,27 +1323,27 @@ result: !SemanticTokens
- 0
- 1
- 18
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -1118,12 +1353,12 @@ result: !SemanticTokens
- 0
- 1
- 16
- - 39
+ - 37
- 0
- 3
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -1133,12 +1368,12 @@ result: !SemanticTokens
- 0
- 1
- 21
- - 39
+ - 37
- 0
- 3
- 4
- 8
- - 53
+ - 51
- 0
- 0
- 8
@@ -1148,12 +1383,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1163,12 +1398,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 19
- - 53
+ - 51
- 0
- 0
- 19
@@ -1178,17 +1413,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 4
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -1198,12 +1433,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -1213,7 +1448,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -1223,7 +1458,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -1233,92 +1468,92 @@ result: !SemanticTokens
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 9
- - 34
+ - 33
- 1
- 1
- 4
- 11
- - 39
+ - 37
- 1024
- 0
- 15
- 3
- - 40
+ - 38
- 1024
- 4
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 16
- - 40
+ - 38
- 0
- 0
- 20
- 20
- - 40
+ - 38
- 0
- 5
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- 9
- 3
- - 35
+ - 34
- 0
- 0
- 5
- 16
- - 40
+ - 38
- 0
- 0
- 18
- 3
- - 35
+ - 34
- 0
- 0
- 5
- 20
- - 40
+ - 38
- 0
- 7
- 0
- 16
- - 34
+ - 33
- 1
- 2
- 4
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 13
- - 34
+ - 33
- 1
- 1
- 4
- 9
- - 39
+ - 37
- 1024
- 3
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -1328,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1345,20 +1580,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -1368,7 +1618,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1378,7 +1628,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -1390,20 +1640,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -1413,7 +1678,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1423,7 +1688,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1435,49 +1700,74 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 0
- 25
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 4
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 8
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[old_for.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[old_for.robot].out
new file mode 100644
index 000000000..7be4fa033
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[old_for.robot].out
@@ -0,0 +1,98 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 4
+ - 37
+ - 0
+ - 0
+ - 8
+ - 9
+ - 36
+ - 0
+ - 1
+ - 8
+ - 1
+ - 37
+ - 0
+ - 0
+ - 9
+ - 9
+ - 36
+ - 0
+ - 1
+ - 8
+ - 1
+ - 37
+ - 0
+ - 2
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 2
+ - 34
+ - 0
+ - 0
+ - 14
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 14
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 8
+ - 44
+ - 0
+ - 1
+ - 8
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 18
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[playground.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[playground.robot].out
index 5062f2aba..40dfae3ad 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[playground.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[playground.robot].out
@@ -3,87 +3,147 @@ result: !SemanticTokens
- 0
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 13
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 2
- - 35
+ - 34
- 0
- 0
- 11
- 8
- - 39
+ - 37
- 1024
- 0
- 17
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 8
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 4
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 8
- - 34
+ - 33
- 1
- 1
- 4
@@ -93,7 +153,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -103,26 +163,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[references.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[references.robot].out
index 4454cadf3..1c2889b95 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[references.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[references.robot].out
@@ -3,62 +3,77 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -68,27 +83,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -96,24 +111,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 3
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -123,32 +143,52 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 9
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 1
+ - 0
+ - 7
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,8 +208,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -178,7 +223,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -188,7 +233,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -198,22 +243,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -223,17 +283,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -243,7 +313,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,22 +323,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -278,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -288,7 +358,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -298,27 +368,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 9
- - 53
+ - 51
- 0
- 0
- 9
@@ -328,17 +403,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -348,17 +433,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -368,7 +463,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -378,12 +473,12 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 2
- 4
@@ -393,7 +488,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -403,117 +498,127 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 17
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 5
- - 36
+ - 35
- 2048
- 0
- 6
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 14
- - 36
+ - 35
- 2048
- 0
- 15
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 18
+ - 7
+ - 10
+ - 36
+ - 2048
+ - 0
+ - 11
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 15
+ - 7
+ - 7
+ - 36
+ - 2048
+ - 0
+ - 8
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 21
- - 39
+ - 37
- 0
- 2
- 4
- 21
- - 39
+ - 37
- 0
- 0
- 25
@@ -523,57 +628,57 @@ result: !SemanticTokens
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 6
- 2
- - 56
+ - 54
- 0
- 0
- 2
@@ -583,7 +688,7 @@ result: !SemanticTokens
- 2
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -593,12 +698,12 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 39
+ - 37
- 0
- 0
- 6
- 2
- - 56
+ - 54
- 0
- 0
- 2
@@ -606,9 +711,14 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 12
+ - 1
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 15
- - 56
+ - 54
- 0
- 0
- 15
@@ -616,24 +726,34 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 18
- 1
- - 17
- - 0
+ - 7
+ - 36
- 0
- - 3
- - 4
- - 17
+ - 0
+ - 8
+ - 7
+ - 36
+ - 0
+ - 0
+ - 9
+ - 1
+ - 17
+ - 0
+ - 0
+ - 3
+ - 4
+ - 17
- 0
- 5
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -643,12 +763,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -658,7 +778,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -668,7 +788,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -678,12 +798,12 @@ result: !SemanticTokens
- 4
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- 7
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -693,22 +813,32 @@ result: !SemanticTokens
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 17
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -718,7 +848,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -728,97 +858,192 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 4
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 22
- 4
- - 34
+ - 18
+ - 36
+ - 0
+ - 0
+ - 18
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 7
- - 34
+ - 33
- 1
- 0
- - 17
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 10
- 14
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -828,7 +1053,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -845,20 +1070,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -868,7 +1108,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -878,7 +1118,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -890,20 +1130,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -913,7 +1168,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -923,7 +1178,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -935,37 +1190,37 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- - 3
- 0
- - 49
- - 34
- - 1
- - 1
+ - 7
- 4
- - 1
- - 21
- - 256
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
+ - 49
+ - 33
- 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -973,13 +1228,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
- 2
- 4
- 1
@@ -988,13 +1248,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -1003,7 +1273,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1013,7 +1283,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1025,25 +1295,45 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- - 10
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 12
- - 39
+ - 37
- 1024
- 1
- 4
@@ -1053,7 +1343,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1063,7 +1353,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1075,22 +1365,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -1098,13 +1378,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
- 2
- 4
- 1
@@ -1113,27 +1398,52 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 12
- - 39
+ - 37
- 1024
- 1
- 4
@@ -1143,7 +1453,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -1153,27 +1463,42 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 4
+ - 36
- 0
- 2
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 17
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1183,52 +1508,52 @@ result: !SemanticTokens
- 0
- 1
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 10
+ - 36
+ - 0
- 2
- 8
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 12
+ - 36
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 33
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 2
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
@@ -1238,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1248,44 +1573,54 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 35
+ - 36
- 0
- 3
- 4
- 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 39
+ - 36
- 0
- 2
- 4
- 6
- - 35
+ - 34
- 0
- - 3
- 0
- - 57
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
+ - 10
+ - 9
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
- - 1
- - 21
- - 256
+ - 57
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1293,7 +1628,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1303,17 +1638,22 @@ result: !SemanticTokens
- 0
- 5
- 10
- - 56
+ - 54
- 0
- 2
- 4
- 5
- - 35
+ - 34
+ - 0
+ - 0
+ - 9
+ - 7
+ - 36
- 0
- 0
- - 20
+ - 11
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1323,39 +1663,24 @@ result: !SemanticTokens
- 0
- 1
- 10
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 31
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1363,7 +1688,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1373,59 +1698,59 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 1
- 4
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 2
- 4
- 4
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- - 3
- 0
- - 44
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
+ - 10
+ - 9
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
- - 1
- - 21
- - 256
+ - 44
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1433,7 +1758,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1443,27 +1768,37 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 10
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
+ - 4
+ - 36
- 0
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 24
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1473,52 +1808,67 @@ result: !SemanticTokens
- 0
- 1
- 10
- - 35
+ - 34
- 0
- 4
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 23
- - 34
+ - 33
- 1
- 1
- - 21
+ - 4
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
- 12
- - 39
+ - 37
- 1024
- 1
- - 22
+ - 4
+ - 13
+ - 36
+ - 0
+ - 0
+ - 18
- 12
- - 39
+ - 37
- 1024
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- - 41
+ - 25
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1528,37 +1878,37 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 35
+ - 34
- 0
- 2
- 8
- 13
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 28
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1568,22 +1918,22 @@ result: !SemanticTokens
- 0
- 1
- 13
- - 35
+ - 34
- 0
- 2
- 8
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 36
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1593,16 +1943,16 @@ result: !SemanticTokens
- 0
- 1
- 6
- - 35
+ - 34
- 0
- 1
- 8
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[remotetest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[remotetest.robot].out
index 91f1a4bce..539e5d2db 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[remotetest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[remotetest.robot].out
@@ -3,21 +3,21 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 4
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 30
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[reserved.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[reserved.robot].out
index 4d9f51a5e..7719a4730 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[reserved.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[reserved.robot].out
@@ -3,17 +3,17 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 8
- - 53
+ - 51
- 0
- 0
- 8
@@ -23,37 +23,37 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 39
+ - 37
- 0
- 1
- 4
- 5
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 39
+ - 37
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 7
@@ -63,17 +63,17 @@ result: !SemanticTokens
- 1
- 4
- 7
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 1
- 4
- 2
- - 39
+ - 37
- 0
- 0
- 6
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[sematic_tokenizing.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[sematic_tokenizing.robot].out
index b190aa5a1..8ceaea69e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[sematic_tokenizing.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[sematic_tokenizing.robot].out
@@ -3,72 +3,72 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 40
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
@@ -78,7 +78,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -88,62 +88,67 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 13
- 36
- 0
- 0
- - 22
+ - 17
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 27
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -153,32 +158,32 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -188,7 +193,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -198,17 +203,17 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 2
- - 39
+ - 37
- 0
- 3
- 0
- 8
- - 34
+ - 33
- 1
- 1
- 4
@@ -218,7 +223,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -228,21 +233,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 2
- 4
- 2
- - 39
+ - 37
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[setup_teardown.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[setup_teardown.robot].out
index 311584076..75cf1183e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[setup_teardown.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[setup_teardown.robot].out
@@ -3,92 +3,92 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 11
- - 36
+ - 35
- 2048
- 1
- 0
- 14
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 14
- - 36
+ - 35
- 2048
- 1
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 10
- - 36
+ - 35
- 2048
- 2
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 20
- 5
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 25
+ - 24
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -98,7 +98,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -108,17 +108,17 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -128,7 +128,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -138,17 +138,17 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +158,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,12 +168,12 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -183,7 +183,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -198,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -208,22 +208,32 @@ result: !SemanticTokens
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 16
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -233,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -243,21 +253,26 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 2
- 0
- 5
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[signature_help.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[signature_help.robot].out
index e7478c3f3..44c7241a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[signature_help.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[signature_help.robot].out
@@ -3,27 +3,27 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 12
- 10
- - 53
+ - 51
- 0
- 0
- 21
@@ -33,27 +33,27 @@ result: !SemanticTokens
- 3
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 12
- - 39
+ - 37
- 0
- 4
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 26
- - 39
+ - 37
- 0
- 0
- 73
@@ -63,7 +63,7 @@ result: !SemanticTokens
- 5
- 4
- 12
- - 39
+ - 37
- 0
- 0
- 20
@@ -71,9 +71,19 @@ result: !SemanticTokens
- 17
- 0
- 2
- - 20
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 39
+ - 37
- 0
- 0
- 38
@@ -83,7 +93,7 @@ result: !SemanticTokens
- 5
- 4
- 22
- - 39
+ - 37
- 0
- 0
- 44
@@ -93,12 +103,12 @@ result: !SemanticTokens
- 6
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 26
- - 34
+ - 33
- 1
- 1
- 4
@@ -108,7 +118,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -118,7 +128,7 @@ result: !SemanticTokens
- 0
- 5
- 10
- - 56
+ - 54
- 0
- 0
- 14
@@ -140,10 +150,15 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 17
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[symbols.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[symbols.robot].out
index ae76a9d7c..6865270d2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[symbols.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[symbols.robot].out
@@ -3,117 +3,167 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 2
+ - 0
+ - 8
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 2
- - 20
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
- 8
- - 39
+ - 37
- 1024
- 3
- - 37
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
- 8
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 5
+ - 12
+ - 36
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 5
+ - 11
+ - 36
+ - 0
+ - 0
+ - 13
- 2
- - 46
+ - 44
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 4
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 19
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 6
+ - 6
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 31
+ - 30
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 2
- 0
- 10
- - 34
+ - 33
- 1
- 2
- 4
@@ -123,7 +173,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -133,86 +183,86 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 9
- - 56
+ - 54
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 2
- 0
- 15
- - 34
- - 1
- - 2
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 3
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 3
- 4
- 11
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 4
- 4
- 11
- - 39
+ - 37
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 20
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 5
+ - 8
+ - 36
- 0
- 2
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 5
+ - 8
+ - 36
- 0
- 2
- - 15
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 11
- 8
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[templates.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[templates.robot].out
index 745afa1e7..25cc698d3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[templates.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[templates.robot].out
@@ -3,37 +3,47 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 20
- 22
- - 39
+ - 37
- 0
- 2
- 0
- 13
- - 54
+ - 52
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 4
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -43,7 +53,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -58,7 +68,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -68,62 +78,92 @@ result: !SemanticTokens
- 0
- 5
- 16
- - 39
+ - 37
- 0
- 1
- 4
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 8
- 36
- 0
- 0
- - 17
+ - 12
- 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 11
- 36
- 0
- - 2
+ - 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- - 23
- - 1
+ - 5
+ - 14
- 36
- 0
+ - 0
+ - 18
- 1
- - 19
+ - 35
+ - 0
- 1
+ - 4
+ - 11
- 36
- 0
+ - 0
+ - 15
+ - 1
+ - 35
+ - 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 8
- 36
- 0
- 0
- - 17
+ - 12
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
+ - 35
+ - 0
+ - 0
+ - 7
+ - 14
- 36
- 0
- 0
- - 25
+ - 18
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -133,7 +173,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -143,57 +183,57 @@ result: !SemanticTokens
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 36
+ - 35
- 0
- 0
- 7
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -203,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -213,17 +253,17 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 9
- - 33
+ - 32
- 1
- 1
- 4
@@ -233,7 +273,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -243,72 +283,72 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -318,7 +358,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -328,52 +368,62 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
- 0
+ - 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -383,7 +433,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -393,47 +443,57 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 4
+ - 36
+ - 2048
- 0
- - 10
+ - 5
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -443,7 +503,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -453,42 +513,47 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 35
- - 33
+ - 32
- 1
- 1
- 4
@@ -498,7 +563,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -508,47 +573,47 @@ result: !SemanticTokens
- 0
- 5
- 41
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 22
- - 34
+ - 33
- 1
- 1
- 4
@@ -558,7 +623,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -568,42 +633,57 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 16
- - 34
+ - 33
- 1
- 1
- 4
@@ -613,7 +693,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -623,47 +703,62 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -673,7 +768,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -683,27 +778,37 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 28
+ - 7
+ - 17
+ - 36
+ - 0
+ - 0
+ - 21
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 2
- 0
- 19
- - 34
+ - 33
- 1
- 1
- 4
@@ -713,7 +818,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -723,52 +828,97 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 35
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 15
- 8
- - 46
+ - 8
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 11
- - 34
+ - 33
- 1
- 0
- - 15
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 4
- 6
- - 34
+ - 33
- 1
- 0
- - 17
+ - 6
+ - 11
+ - 36
+ - 0
+ - 0
+ - 11
- 4
- - 34
+ - 33
- 1
+ - 0
+ - 4
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -778,7 +928,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -788,21 +938,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[templates2.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[templates2.robot].out
index decfe09ce..a7484130f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[templates2.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[templates2.robot].out
@@ -3,97 +3,152 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 17
- 42
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 13
+ - 36
+ - 0
+ - 1
+ - 0
+ - 17
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 0
- 34
- 8
- - 29
+ - 28
- 0
- 0
- 17
- 8
- - 29
+ - 28
- 0
- 1
- 0
- 17
- - 33
+ - 32
- 1
- 0
- 34
- 7
+ - 35
+ - 0
+ - 0
+ - 17
+ - 17
- 36
- 0
- 1
- 0
- 16
- - 33
+ - 32
- 1
- 0
- - 51
- - 7
+ - 34
+ - 13
- 36
- 0
+ - 0
+ - 17
+ - 7
+ - 35
+ - 0
- 1
- 0
- 30
- - 33
+ - 32
- 1
- 0
- 34
- 7
- - 36
+ - 35
- 0
- 0
- 17
- 7
- - 36
+ - 35
- 0
- 1
- 0
- 15
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 8
+ - 36
+ - 0
+ - 0
+ - 17
+ - 17
+ - 36
+ - 0
- 1
- 0
- 14
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 1
- 0
- 28
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 8
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 22
- - 33
+ - 32
- 1
- 1
- 4
@@ -103,7 +158,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -113,52 +168,77 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- - 19
+ - 8
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 19
+ - 7
- 8
- - 46
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 44
- 0
- 1
- 8
- 7
+ - 35
+ - 0
+ - 0
+ - 11
+ - 8
- 36
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -168,7 +248,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -178,52 +258,77 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- 8
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 7
+ - 36
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 32
- - 33
+ - 32
- 1
- 1
- 4
@@ -233,7 +338,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -243,67 +348,97 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- 8
- 2
- - 35
+ - 34
- 0
- - 1
- - 23
+ - 0
+ - 4
- 7
- 36
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
- 0
- 11
+ - 7
+ - 35
+ - 0
- 1
+ - 12
+ - 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
+ - 0
+ - 11
+ - 1
+ - 35
+ - 0
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 42
- - 34
+ - 33
- 1
- 1
- 4
@@ -313,7 +448,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -323,22 +458,32 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 56
+ - 54
- 0
- 0
- 15
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 15
+ - 11
+ - 36
+ - 0
- 2
- 0
- 15
- - 34
+ - 33
- 1
- 1
- 4
@@ -348,7 +493,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -358,16 +503,26 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[variables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[variables.robot].out
index 04efdca20..d5e87872d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[variables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[variables.robot].out
@@ -3,237 +3,462 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 14
- - 25
+ - 24
- 0
- 0
- 20
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 26
+ - 7
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
- 0
- - 39
+ - 7
+ - 16
+ - 36
+ - 0
+ - 0
+ - 17
+ - 12
+ - 36
+ - 0
+ - 0
+ - 15
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 13
- - 40
+ - 38
- 1024
- 1
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 14
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 12
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 16
+ - 36
+ - 0
+ - 0
+ - 20
+ - 17
+ - 36
+ - 0
+ - 0
+ - 18
+ - 19
+ - 36
+ - 0
+ - 1
+ - 0
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
+ - 12
+ - 36
+ - 0
+ - 0
+ - 13
+ - 14
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
+ - 3
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
- 0
- 9
+ - 3
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
+ - 7
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 7
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 20
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 22
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
@@ -243,7 +468,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,367 +478,527 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
+ - 0
+ - 15
+ - 15
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 11
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 2
- - 46
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 19
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
+ - 1
- 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 24
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
- 1
- 4
- - 3
- - 39
- - 1024
- - 1
- - 14
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
- 12
- - 39
+ - 37
- 1024
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 24
+ - 36
+ - 0
- 1
- - 23
+ - 4
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- - 35
+ - 7
+ - 24
+ - 36
+ - 0
+ - 0
+ - 28
- 20
- 17
- 0
- 2
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 5
- - 35
+ - 34
- 0
- 1
- 8
- 5
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 16
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 2
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 39
+ - 37
- 1024
- 1
- 4
- 20
- - 39
+ - 37
- 1024
- 1
- 4
- 16
- - 39
+ - 37
- 1024
- 1
- 4
- 22
- - 39
+ - 37
- 1024
- 1
- 4
- 25
- - 39
+ - 37
- 1024
- 0
- 36
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 17
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 27
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 18
- - 39
+ - 37
- 1024
- 0
- 29
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 27
- 8
- - 40
+ - 38
- 1024
- 2
- 0
- 7
- - 33
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 32
- 1
+ - 2
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 2
- 4
- 9
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 4
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 13
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 2
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 2
- 0
- 9
- - 33
+ - 32
- 1
- 1
- 4
@@ -623,7 +1008,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -633,42 +1018,42 @@ result: !SemanticTokens
- 0
- 3
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
@@ -678,7 +1063,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -688,52 +1073,67 @@ result: !SemanticTokens
- 0
- 3
- 11
- - 39
+ - 37
- 0
- 0
- - 16
+ - 11
+ - 4
+ - 36
+ - 2048
+ - 0
- 5
- - 39
+ - 5
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
@@ -743,7 +1143,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -753,62 +1153,82 @@ result: !SemanticTokens
- 0
- 3
- 11
- - 39
+ - 37
- 0
- 0
- - 16
+ - 11
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 5
- - 39
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
- 0
+ - 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- - 14
- - 1
+ - 4
+ - 8
- 36
- 0
- 0
+ - 10
+ - 1
+ - 35
+ - 0
+ - 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 35
- - 33
+ - 32
- 1
- 1
- 4
@@ -818,7 +1238,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -828,67 +1248,77 @@ result: !SemanticTokens
- 0
- 3
- 41
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 15
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- - 62
+ - 5
+ - 23
+ - 36
+ - 0
+ - 0
+ - 30
+ - 25
+ - 36
+ - 0
+ - 0
+ - 27
- 6
- 17
- 0
- 2
- 0
- 15
- - 33
+ - 32
- 1
- 1
- 4
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 3
- - 56
+ - 54
- 0
- 0
- 3
@@ -898,17 +1328,17 @@ result: !SemanticTokens
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -918,7 +1348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -928,27 +1358,37 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 28
+ - 7
+ - 17
+ - 36
+ - 0
+ - 0
+ - 21
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 2
- 0
- 19
- - 34
+ - 33
- 1
- 1
- 4
@@ -958,7 +1398,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -968,52 +1408,97 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 11
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 8
- - 46
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 11
- - 34
+ - 33
- 1
- 0
- - 24
+ - 11
+ - 13
+ - 36
+ - 0
+ - 0
+ - 13
- 6
- - 34
+ - 33
- 1
- 0
- - 10
+ - 6
- 4
- - 34
+ - 36
+ - 0
+ - 0
+ - 4
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -1023,7 +1508,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1033,27 +1518,42 @@ result: !SemanticTokens
- 0
- 3
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 31
- - 34
+ - 33
- 1
- 1
- 4
@@ -1063,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1073,12 +1573,12 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 0
- 11
- 3
- - 56
+ - 54
- 0
- 0
- 7
@@ -1093,12 +1593,12 @@ result: !SemanticTokens
- 0
- 14
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 11
- - 56
+ - 54
- 0
- 0
- 15
@@ -1113,22 +1613,22 @@ result: !SemanticTokens
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 5
- - 34
+ - 33
- 1
- 1
- 4
- 31
- - 39
+ - 37
- 0
- 0
- 37
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -1138,7 +1638,7 @@ result: !SemanticTokens
- 0
- 4
- 8
- - 56
+ - 54
- 0
- 0
- 8
@@ -1148,6 +1648,6 @@ result: !SemanticTokens
- 2
- 0
- 18
- - 29
+ - 28
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-__init__.robot].out
index df8fc7278..e0e9f51af 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-__init__.robot].out
@@ -3,6 +3,6 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
index 7cb8bc247..aeb7e4a61 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
@@ -3,72 +3,102 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 9
- - 36
+ - 35
- 2048
- 0
- 10
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 37
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 3
- - 34
+ - 33
- 1
- 0
- - 15
+ - 3
+ - 12
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 34
+ - 33
- 1
+ - 0
+ - 6
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
+ - 0
+ - 18
+ - 8
+ - 36
+ - 0
- 2
- 0
- 3
- - 34
+ - 33
- 1
- 0
- - 15
+ - 3
+ - 12
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 34
+ - 33
- 1
- 0
+ - 6
+ - 8
+ - 36
+ - 0
+ - 0
+ - 8
- 14
- - 14
- - 34
+ - 33
- 1
- 1
- 4
@@ -78,7 +108,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -88,11 +118,26 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
+ - 0
+ - 18
+ - 8
+ - 36
+ - 0
+ - 0
+ - 23
+ - 7
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
index 783918611..18166c03e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
@@ -3,31 +3,46 @@ result: !SemanticTokens
- 0
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 18
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
index 827c4b670..9bc959b6c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
@@ -3,36 +3,46 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 16
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 16
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-sometasks.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
index ddacd87c6..f30bcc17a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 13
- - 29
+ - 28
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
index 6020eff3e..111152354 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
@@ -3,11 +3,11 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 4
- - 54
+ - 52
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
index 8ef46bca6..6d97c1255 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
@@ -3,21 +3,21 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
index ea4b3c324..e31f6a76d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 4
- - 54
+ - 52
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf70-vartest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf70-vartest.robot].out
index d084a4249..937fee29c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf70-vartest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf70-vartest.robot].out
@@ -3,144 +3,229 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 2
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 3
- 0
- 22
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 2
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 4
+ - 36
+ - 0
- 2
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 4
+ - 36
+ - 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 49
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- - 1
- - 13
- - 25
- - 256
+ - 7
+ - 9
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -148,13 +233,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -163,13 +253,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -178,7 +278,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -188,7 +288,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -200,25 +300,45 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
@@ -228,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -238,7 +358,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -250,22 +370,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -273,13 +383,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -288,21 +403,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf72-grouptest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
index b78249896..293ff3772 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
@@ -3,56 +3,56 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 39
+ - 37
- 0
- 1
- 8
- 5
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 2
- 4
- 5
- - 39
+ - 37
- 0
- 1
- 8
- 6
- - 39
+ - 37
- 0
- 1
- 8
- 5
- - 39
+ - 37
- 0
- 1
- 12
- 6
- - 39
+ - 37
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 0
- 2
- 4
- 3
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out
new file mode 100644
index 000000000..21f88dc2a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out
@@ -0,0 +1,583 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 26
+ - 36
+ - 0
+ - 1
+ - 0
+ - 15
+ - 36
+ - 0
+ - 1
+ - 0
+ - 21
+ - 36
+ - 0
+ - 1
+ - 0
+ - 17
+ - 36
+ - 0
+ - 1
+ - 0
+ - 20
+ - 36
+ - 0
+ - 1
+ - 0
+ - 29
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 15
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 13
+ - 20
+ - 36
+ - 0
+ - 1
+ - 4
+ - 26
+ - 37
+ - 0
+ - 1
+ - 4
+ - 39
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 0
+ - 40
+ - 7
+ - 36
+ - 0
+ - 2
+ - 0
+ - 15
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 19
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 9
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 8
+ - 44
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 12
+ - 44
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 0
+ - 13
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 2
+ - 34
+ - 0
+ - 0
+ - 12
+ - 8
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 4
+ - 34
+ - 0
+ - 0
+ - 8
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 30
+ - 32
+ - 1
+ - 1
+ - 4
+ - 28
+ - 37
+ - 0
+ - 1
+ - 4
+ - 2
+ - 37
+ - 0
+ - 0
+ - 2
+ - 8
+ - 35
+ - 2048
+ - 0
+ - 9
+ - 18
+ - 37
+ - 0
+ - 3
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 26
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 15
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 3
+ - 36
+ - 0
+ - 2
+ - 0
+ - 39
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 7
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 6
+ - 9
+ - 7
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 36
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 22
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 12
+ - 0
+ - 2
+ - 33
+ - 1
+ - 0
+ - 2
+ - 32
+ - 36
+ - 0
+ - 0
+ - 32
+ - 19
+ - 33
+ - 1
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[very_big_file.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[very_big_file.robot].out
index d4bc0b145..15e147ff0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[very_big_file.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_semantic_tokens.test[very_big_file.robot].out
@@ -3,92346 +3,100801 @@ result: !SemanticTokens
- 0
- 0
- 16
+ - 26
+ - 0
+ - 4
+ - 0
+ - 17
- 27
- 0
- 1
- 0
- - 13
- - 25
- - 256
- - 3
+ - 12
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 1
- 0
- 17
- - 28
+ - 36
- 0
- - 7
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 17
- - 34
+ - 33
- 1
- 0
- - 24
+ - 17
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 51
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 0
- - 19
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 32
- - 34
+ - 33
- 1
+ - 0
+ - 32
+ - 12
+ - 36
+ - 0
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 40
- - 34
+ - 33
- 1
- 0
- - 47
+ - 40
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 6
- - 34
+ - 33
- 1
+ - 0
+ - 6
+ - 11
+ - 36
+ - 0
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 62
- - 34
+ - 33
- 1
- 0
- - 73
+ - 62
+ - 11
+ - 36
+ - 0
+ - 0
+ - 11
- 1
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 0
- - 19
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
+ - 33
- 33
- - 34
- 1
- 0
- - 50
+ - 33
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
- 1
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 50
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 28
- - 34
+ - 33
- 1
- 0
- - 35
+ - 28
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 20
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 34
+ - 33
- 1
- 0
- - 24
+ - 17
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 21
- - 34
+ - 33
- 1
- 0
- - 30
+ - 21
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 13
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 30
- - 34
+ - 33
- 1
- 0
- - 37
+ - 30
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 13
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_workspace_symbols.test[].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_workspace_symbols.test[].out
index 8e5a2cf90..e52ebfc4d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_workspace_symbols.test[].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_workspace_symbols.test[].out
@@ -81,10 +81,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 9
start:
- character: 21
+ character: 23
line: 9
uri: bddstyle.robot
name: ${input}
@@ -111,10 +111,10 @@ result:
location:
range:
end:
- character: 46
+ character: 45
line: 9
start:
- character: 33
+ character: 35
line: 9
uri: bddstyle.robot
name: ${multiplier}
@@ -141,10 +141,10 @@ result:
location:
range:
end:
- character: 59
+ character: 58
line: 9
start:
- character: 50
+ character: 52
line: 9
uri: bddstyle.robot
name: ${result}
@@ -276,10 +276,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 119
start:
- character: 19
+ character: 21
line: 119
uri: code_action_show_documentation.robot
name: ${A VAR}
@@ -291,10 +291,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 124
start:
- character: 28
+ character: 30
line: 124
uri: code_action_show_documentation.robot
name: ${A VAR}
@@ -306,10 +306,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
uri: code_action_show_documentation.robot
name: ${LIB_ARG}
@@ -321,10 +321,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: code_action_show_documentation.robot
name: ${a var}
@@ -336,10 +336,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 129
start:
- character: 19
+ character: 21
line: 129
uri: code_action_show_documentation.robot
name: ${a}
@@ -351,10 +351,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: code_action_show_documentation.robot
name: ${bananas}
@@ -381,10 +381,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 129
start:
- character: 27
+ character: 29
line: 129
uri: code_action_show_documentation.robot
name: ${b}
@@ -411,10 +411,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 52
start:
- character: 4
+ character: 6
line: 52
uri: code_action_show_documentation.robot
name: ${result}
@@ -486,10 +486,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 124
start:
- character: 19
+ character: 21
line: 124
uri: code_action_show_documentation.robot
name: ${tt}
@@ -516,10 +516,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 97
start:
- character: 19
+ character: 21
line: 97
uri: code_action_show_documentation.robot
name: ${type}
@@ -846,10 +846,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 113
start:
- character: 19
+ character: 21
line: 113
uri: document_highlight.robot
name: ${A VAR}
@@ -861,10 +861,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 122
start:
- character: 28
+ character: 30
line: 122
uri: document_highlight.robot
name: ${A VAR}
@@ -876,10 +876,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: document_highlight.robot
name: ${A}
@@ -891,10 +891,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 25
start:
- character: 0
+ character: 2
line: 25
uri: document_highlight.robot
name: ${B}
@@ -906,10 +906,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: document_highlight.robot
name: ${LIB_ARG}
@@ -921,10 +921,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 20
start:
- character: 0
+ character: 2
line: 20
uri: document_highlight.robot
name: ${a var}
@@ -936,10 +936,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 164
start:
- character: 32
+ character: 34
line: 164
uri: document_highlight.robot
name: ${a_second_arg}
@@ -951,10 +951,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 169
start:
- character: 32
+ character: 34
line: 169
uri: document_highlight.robot
name: ${a_second_arg}
@@ -966,10 +966,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 164
start:
- character: 19
+ character: 21
line: 164
uri: document_highlight.robot
name: ${an_arg}
@@ -981,10 +981,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 169
start:
- character: 19
+ character: 21
line: 169
uri: document_highlight.robot
name: ${an_arg}
@@ -996,10 +996,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 132
start:
- character: 19
+ character: 21
line: 132
uri: document_highlight.robot
name: ${a}
@@ -1011,10 +1011,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 132
start:
- character: 27
+ character: 29
line: 132
uri: document_highlight.robot
name: ${b}
@@ -1026,10 +1026,10 @@ result:
location:
range:
end:
- character: 44
+ character: 43
line: 132
start:
- character: 40
+ character: 42
line: 132
uri: document_highlight.robot
name: ${c}
@@ -1056,10 +1056,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 57
start:
- character: 4
+ character: 6
line: 57
uri: document_highlight.robot
name: ${result}
@@ -1086,10 +1086,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 122
start:
- character: 19
+ character: 21
line: 122
uri: document_highlight.robot
name: ${tt}
@@ -1431,10 +1431,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 10
start:
- character: 19
+ character: 21
line: 10
uri: embedded_keywords.robot
name: ${data}
@@ -1566,10 +1566,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 2
start:
- character: 4
+ character: 6
line: 2
uri: fibonaci.robot
name: ${a}
@@ -1581,10 +1581,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 36
start:
- character: 4
+ character: 6
line: 36
uri: fibonaci.robot
name: ${a}
@@ -1596,10 +1596,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 27
start:
- character: 8
+ character: 10
line: 27
uri: fibonaci.robot
name: ${n1}
@@ -1611,10 +1611,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 28
start:
- character: 8
+ character: 10
line: 28
uri: fibonaci.robot
name: ${n2}
@@ -1626,10 +1626,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 22
start:
- character: 19
+ character: 21
line: 22
uri: fibonaci.robot
name: ${n}
@@ -1641,10 +1641,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 35
start:
- character: 19
+ character: 21
line: 35
uri: fibonaci.robot
name: ${n}
@@ -1656,10 +1656,10 @@ result:
location:
range:
end:
- character: 12
+ character: 11
line: 25
start:
- character: 8
+ character: 10
line: 25
uri: fibonaci.robot
name: ${r}
@@ -1821,10 +1821,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 32
start:
- character: 19
+ character: 21
line: 32
uri: first.robot
name: ${b}
@@ -1956,10 +1956,10 @@ result:
location:
range:
end:
- character: 47
+ character: 20
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: firstresource.resource
name: ${A_VAR_FROM_RESOURE}
@@ -1971,10 +1971,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 23
start:
- character: 27
+ character: 29
line: 23
uri: firstresource.resource
name: ${a long name}
@@ -1986,10 +1986,10 @@ result:
location:
range:
end:
- character: 61
+ character: 60
line: 23
start:
- character: 46
+ character: 48
line: 23
uri: firstresource.resource
name: ${a_short_name}
@@ -2001,10 +2001,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 23
start:
- character: 19
+ character: 21
line: 23
uri: firstresource.resource
name: ${a}
@@ -2016,10 +2016,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 30
start:
- character: 19
+ character: 21
line: 30
uri: firstresource.resource
name: "${\U0001F413}"
@@ -2031,10 +2031,10 @@ result:
location:
range:
end:
- character: 34
+ character: 33
line: 30
start:
- character: 27
+ character: 29
line: 30
uri: firstresource.resource
name: "${\U0001F60E\U0001F60B\U0001F619\U0001F619}"
@@ -2046,10 +2046,10 @@ result:
location:
range:
end:
- character: 51
+ character: 50
line: 30
start:
- character: 39
+ character: 41
line: 30
uri: firstresource.resource
name: "${\U0001F9DF\u200D\u2642\uFE0F\U0001F6C3\U0001FAC5\U0001F3FF\U0001F478\U0001F3FF\
@@ -2137,10 +2137,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 53
start:
- character: 4
+ character: 6
line: 53
uri: foldingrange.robot
name: ${a}
@@ -2152,10 +2152,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 81
start:
- character: 4
+ character: 6
line: 81
uri: foldingrange.robot
name: ${a}
@@ -2167,10 +2167,10 @@ result:
location:
range:
end:
- character: 15
+ character: 14
line: 12
start:
- character: 11
+ character: 13
line: 12
uri: foldingrange.robot
name: ${i}
@@ -2272,10 +2272,10 @@ result:
location:
range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
uri: goto.robot
name: ${A VAR1}
@@ -2287,10 +2287,10 @@ result:
location:
range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
uri: goto.robot
name: ${A VAR}
@@ -2302,10 +2302,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
uri: goto.robot
name: ${A VAR}
@@ -2317,10 +2317,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
uri: goto.robot
name: ${A VAR}
@@ -2332,10 +2332,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
uri: goto.robot
name: ${A}
@@ -2347,10 +2347,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
uri: goto.robot
name: ${B}
@@ -2362,10 +2362,10 @@ result:
location:
range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
uri: goto.robot
name: ${DOT}
@@ -2377,10 +2377,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
uri: goto.robot
name: ${LIB_ARG}
@@ -2392,10 +2392,10 @@ result:
location:
range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
uri: goto.robot
name: ${MY_DIR}
@@ -2407,10 +2407,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 213
start:
- character: 32
+ character: 34
line: 213
uri: goto.robot
name: ${a_second_arg}
@@ -2422,10 +2422,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 218
start:
- character: 32
+ character: 34
line: 218
uri: goto.robot
name: ${a_second_arg}
@@ -2437,10 +2437,10 @@ result:
location:
range:
end:
- character: 50
+ character: 14
line: 32
start:
- character: 0
+ character: 2
line: 32
uri: goto.robot
name: ${all together}
@@ -2452,10 +2452,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
uri: goto.robot
name: ${an_arg}
@@ -2467,10 +2467,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
uri: goto.robot
name: ${an_arg}
@@ -2482,10 +2482,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 136
start:
- character: 4
+ character: 6
line: 136
uri: goto.robot
name: ${a}
@@ -2497,10 +2497,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
uri: goto.robot
name: ${a}
@@ -2512,10 +2512,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
uri: goto.robot
name: ${b}
@@ -2527,10 +2527,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
uri: goto.robot
name: ${key}
@@ -2542,10 +2542,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
uri: goto.robot
name: ${tt}
@@ -2557,10 +2557,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
uri: goto.robot
name: ${tt}
@@ -2572,10 +2572,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
uri: goto.robot
name: ${value}
@@ -2587,10 +2587,10 @@ result:
location:
range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: goto.robot
name: '&{A DICT}'
@@ -2602,10 +2602,10 @@ result:
location:
range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
uri: goto.robot
name: '&{dict_var}'
@@ -2617,10 +2617,10 @@ result:
location:
range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
uri: goto.robot
name: '@{list_var}'
@@ -2887,10 +2887,10 @@ result:
location:
range:
end:
- character: 28
+ character: 7
line: 30
start:
- character: 0
+ character: 2
line: 30
uri: hover.robot
name: ${A VAR}
@@ -2902,10 +2902,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 267
start:
- character: 19
+ character: 21
line: 267
uri: hover.robot
name: ${A VAR}
@@ -2917,10 +2917,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 276
start:
- character: 28
+ character: 30
line: 276
uri: hover.robot
name: ${A VAR}
@@ -2932,10 +2932,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 41
start:
- character: 0
+ character: 2
line: 41
uri: hover.robot
name: ${A}
@@ -2947,10 +2947,10 @@ result:
location:
range:
end:
- character: 9
+ character: 3
line: 42
start:
- character: 0
+ character: 2
line: 42
uri: hover.robot
name: ${B}
@@ -2962,10 +2962,10 @@ result:
location:
range:
end:
- character: 28
+ character: 3
line: 43
start:
- character: 0
+ character: 2
line: 43
uri: hover.robot
name: ${C}
@@ -2977,10 +2977,10 @@ result:
location:
range:
end:
- character: 9
+ character: 3
line: 56
start:
- character: 0
+ character: 2
line: 56
uri: hover.robot
name: ${D}
@@ -2992,10 +2992,10 @@ result:
location:
range:
end:
- character: 41
+ character: 3
line: 57
start:
- character: 0
+ character: 2
line: 57
uri: hover.robot
name: ${E}
@@ -3007,10 +3007,10 @@ result:
location:
range:
end:
- character: 14
+ character: 3
line: 58
start:
- character: 0
+ character: 2
line: 58
uri: hover.robot
name: ${F}
@@ -3022,10 +3022,10 @@ result:
location:
range:
end:
- character: 38
+ character: 3
line: 48
start:
- character: 0
+ character: 2
line: 48
uri: hover.robot
name: ${K}
@@ -3037,10 +3037,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 36
start:
- character: 0
+ character: 2
line: 36
uri: hover.robot
name: ${LIB_ARG}
@@ -3052,10 +3052,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 286
start:
- character: 19
+ character: 21
line: 286
uri: hover.robot
name: ${a}
@@ -3067,10 +3067,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 286
start:
- character: 27
+ character: 29
line: 286
uri: hover.robot
name: ${b}
@@ -3097,10 +3097,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 81
start:
- character: 11
+ character: 13
line: 81
uri: hover.robot
name: ${key}
@@ -3112,10 +3112,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 111
start:
- character: 4
+ character: 6
line: 111
uri: hover.robot
name: ${result}
@@ -3127,10 +3127,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 276
start:
- character: 19
+ character: 21
line: 276
uri: hover.robot
name: ${tt}
@@ -3142,10 +3142,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 81
start:
- character: 21
+ character: 23
line: 81
uri: hover.robot
name: ${value}
@@ -3157,10 +3157,10 @@ result:
location:
range:
end:
- character: 35
+ character: 8
line: 33
start:
- character: 0
+ character: 2
line: 33
uri: hover.robot
name: '&{A DICT}'
@@ -3457,10 +3457,10 @@ result:
location:
range:
end:
- character: 13
+ character: 7
line: 2
start:
- character: 0
+ character: 2
line: 2
uri: indexed_variables.robot
name: ${index}
@@ -3472,10 +3472,10 @@ result:
location:
range:
end:
- character: 24
+ character: 8
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: indexed_variables.robot
name: '@{A_LIST}'
@@ -3510,6 +3510,66 @@ result:
uri: jsonvariables.robot
name: first
tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 10
+ start:
+ character: 13
+ line: 10
+ uri: old_for.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: old_for.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 6
+ start:
+ character: 0
+ line: 6
+ uri: old_for.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: old_for.robot
+ name: third
+ tags: null
- !WorkspaceSymbol
container_name: part1__suite
data: null
@@ -3562,10 +3622,10 @@ result:
location:
range:
end:
- character: 21
+ character: 3
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: playground.robot
name: ${2}
@@ -3577,10 +3637,10 @@ result:
location:
range:
end:
- character: 12
+ character: 3
line: 2
start:
- character: 0
+ character: 2
line: 2
uri: playground.robot
name: ${a}
@@ -3592,10 +3652,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 22
start:
- character: 19
+ character: 21
line: 22
uri: playground.robot
name: ${a}
@@ -3607,10 +3667,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 22
start:
- character: 27
+ character: 29
line: 22
uri: playground.robot
name: ${b}
@@ -3622,10 +3682,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 15
start:
- character: 4
+ character: 6
line: 15
uri: playground.robot
name: ${v}
@@ -3667,10 +3727,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 150
start:
- character: 19
+ character: 21
line: 150
uri: references.robot
name: ${A VAR}
@@ -3682,10 +3742,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 159
start:
- character: 28
+ character: 30
line: 159
uri: references.robot
name: ${A VAR}
@@ -3697,10 +3757,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: references.robot
name: ${LIB_ARG}
@@ -3712,10 +3772,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 270
start:
- character: 4
+ character: 6
line: 270
uri: references.robot
name: ${MATCH TYPE}
@@ -3727,10 +3787,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: references.robot
name: ${a var}
@@ -3742,10 +3802,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 245
start:
- character: 19
+ character: 21
line: 245
uri: references.robot
name: ${arg}
@@ -3757,10 +3817,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 169
start:
- character: 19
+ character: 21
line: 169
uri: references.robot
name: ${a}
@@ -3772,10 +3832,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
uri: references.robot
name: ${a}
@@ -3787,10 +3847,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 193
start:
- character: 19
+ character: 21
line: 193
uri: references.robot
name: ${a}
@@ -3802,10 +3862,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 26
start:
- character: 0
+ character: 2
line: 26
uri: references.robot
name: ${bananas}
@@ -3832,10 +3892,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 269
start:
- character: 4
+ character: 6
line: 269
uri: references.robot
name: ${beginning}
@@ -3847,10 +3907,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 169
start:
- character: 27
+ character: 29
line: 169
uri: references.robot
name: ${b}
@@ -3862,10 +3922,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
uri: references.robot
name: ${b}
@@ -3877,10 +3937,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 193
start:
- character: 27
+ character: 29
line: 193
uri: references.robot
name: ${b}
@@ -3892,10 +3952,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 258
start:
- character: 19
+ character: 21
line: 258
uri: references.robot
name: ${count}
@@ -3922,10 +3982,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 59
start:
- character: 4
+ character: 6
line: 59
uri: references.robot
name: ${result}
@@ -3937,10 +3997,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 205
start:
- character: 4
+ character: 6
line: 205
uri: references.robot
name: ${result}
@@ -3952,10 +4012,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 236
start:
- character: 19
+ character: 21
line: 236
uri: references.robot
name: ${retries}
@@ -3967,10 +4027,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 258
start:
- character: 31
+ character: 33
line: 258
uri: references.robot
name: ${retries}
@@ -4042,10 +4102,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 159
start:
- character: 19
+ character: 21
line: 159
uri: references.robot
name: ${tt}
@@ -4072,10 +4132,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 122
start:
- character: 19
+ character: 21
line: 122
uri: references.robot
name: ${type}
@@ -4087,10 +4147,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 224
start:
- character: 19
+ character: 21
line: 224
uri: references.robot
name: ${val}
@@ -4147,10 +4207,10 @@ result:
location:
range:
end:
- character: 11
+ character: 4
line: 27
start:
- character: 0
+ character: 2
line: 27
uri: references.robot
name: "${\U0001F9E8\U0001F9E8}"
@@ -4597,10 +4657,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 31
start:
- character: 19
+ character: 21
line: 31
uri: sematic_tokenizing.robot
name: ${a}
@@ -4612,10 +4672,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 31
start:
- character: 27
+ character: 29
line: 31
uri: sematic_tokenizing.robot
name: ${b}
@@ -4627,10 +4687,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 31
start:
- character: 35
+ character: 37
line: 31
uri: sematic_tokenizing.robot
name: ${c}
@@ -4642,10 +4702,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 26
start:
- character: 19
+ character: 21
line: 26
uri: sematic_tokenizing.robot
name: ${type}
@@ -4762,10 +4822,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 30
start:
- character: 19
+ character: 21
line: 30
uri: setup_teardown.robot
name: ${type}
@@ -4867,10 +4927,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 19
start:
- character: 4
+ character: 6
line: 19
uri: signature_help.robot
name: ${a}
@@ -4882,10 +4942,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 19
start:
- character: 12
+ character: 14
line: 19
uri: signature_help.robot
name: ${b}
@@ -4897,10 +4957,10 @@ result:
location:
range:
end:
- character: 57
+ character: 56
line: 32
start:
- character: 50
+ character: 52
line: 32
uri: signature_help.robot
name: ${html}
@@ -4912,10 +4972,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 32
start:
- character: 33
+ character: 35
line: 32
uri: signature_help.robot
name: ${level}
@@ -4927,10 +4987,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 32
start:
- character: 19
+ character: 21
line: 32
uri: signature_help.robot
name: ${message}
@@ -5122,10 +5182,10 @@ result:
location:
range:
end:
- character: 13
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: symbols.robot
name: ${A_VAR}
@@ -5152,10 +5212,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 41
start:
- character: 19
+ character: 21
line: 41
uri: symbols.robot
name: ${first}
@@ -5167,10 +5227,10 @@ result:
location:
range:
end:
- character: 33
+ character: 32
line: 16
start:
- character: 20
+ character: 22
line: 16
uri: symbols.robot
name: ${kw_result1}
@@ -5182,10 +5242,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 13
start:
- character: 4
+ character: 6
line: 13
uri: symbols.robot
name: ${kw_result}
@@ -5197,10 +5257,10 @@ result:
location:
range:
end:
- character: 20
+ character: 19
line: 21
start:
- character: 9
+ character: 11
line: 21
uri: symbols.robot
name: ${loop_var}
@@ -5212,10 +5272,10 @@ result:
location:
range:
end:
- character: 40
+ character: 39
line: 41
start:
- character: 31
+ character: 33
line: 41
uri: symbols.robot
name: ${second}
@@ -5227,10 +5287,10 @@ result:
location:
range:
end:
- character: 12
+ character: 11
line: 68
start:
- character: 4
+ character: 6
line: 68
uri: symbols.robot
name: ${var 1}
@@ -5303,10 +5363,10 @@ result:
location:
range:
end:
- character: 13
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: templates.robot
name: ${A VAR}
@@ -5318,10 +5378,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 79
start:
- character: 19
+ character: 21
line: 79
uri: templates.robot
name: ${aaa}
@@ -5333,10 +5393,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 61
start:
- character: 19
+ character: 21
line: 61
uri: templates.robot
name: ${a}
@@ -5348,10 +5408,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 68
start:
- character: 19
+ character: 21
line: 68
uri: templates.robot
name: ${a}
@@ -5378,10 +5438,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 89
start:
- character: 19
+ character: 21
line: 89
uri: templates.robot
name: ${a}
@@ -5393,10 +5453,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 61
start:
- character: 27
+ character: 29
line: 61
uri: templates.robot
name: ${b}
@@ -5408,10 +5468,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 68
start:
- character: 27
+ character: 29
line: 68
uri: templates.robot
name: ${b}
@@ -5438,10 +5498,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 89
start:
- character: 27
+ character: 29
line: 89
uri: templates.robot
name: ${b}
@@ -5453,10 +5513,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 61
start:
- character: 35
+ character: 37
line: 61
uri: templates.robot
name: ${c}
@@ -5468,10 +5528,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 68
start:
- character: 35
+ character: 37
line: 68
uri: templates.robot
name: ${c}
@@ -5498,10 +5558,10 @@ result:
location:
range:
end:
- character: 46
+ character: 45
line: 89
start:
- character: 35
+ character: 37
line: 89
uri: templates.robot
name: ${expected}
@@ -5513,10 +5573,10 @@ result:
location:
range:
end:
- character: 15
+ character: 14
line: 81
start:
- character: 11
+ character: 13
line: 81
uri: templates.robot
name: ${i}
@@ -5528,10 +5588,10 @@ result:
location:
range:
end:
- character: 26
+ character: 10
line: 7
start:
- character: 0
+ character: 2
line: 7
uri: templates.robot
name: '@{LIST VAR}'
@@ -5768,10 +5828,10 @@ result:
location:
range:
end:
- character: 23
+ character: 16
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: templates2.robot
name: ${VALID PASSWORD}
@@ -5783,10 +5843,10 @@ result:
location:
range:
end:
- character: 22
+ character: 12
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: templates2.robot
name: ${VALID USER}
@@ -5798,10 +5858,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 53
start:
- character: 19
+ character: 21
line: 53
uri: templates2.robot
name: ${a}
@@ -5813,10 +5873,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 53
start:
- character: 27
+ character: 29
line: 53
uri: templates2.robot
name: ${b}
@@ -5828,10 +5888,10 @@ result:
location:
range:
end:
- character: 19
+ character: 18
line: 22
start:
- character: 11
+ character: 13
line: 22
uri: templates2.robot
name: ${index}
@@ -5843,10 +5903,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 19
start:
- character: 11
+ character: 13
line: 19
uri: templates2.robot
name: ${item}
@@ -5858,10 +5918,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 28
start:
- character: 11
+ character: 13
line: 28
uri: templates2.robot
name: ${item}
@@ -5873,10 +5933,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 38
start:
- character: 11
+ character: 13
line: 38
uri: templates2.robot
name: ${item}
@@ -5888,10 +5948,10 @@ result:
location:
range:
end:
- character: 45
+ character: 44
line: 49
start:
- character: 34
+ character: 36
line: 49
uri: templates2.robot
name: ${password}
@@ -5903,10 +5963,10 @@ result:
location:
range:
end:
- character: 30
+ character: 29
line: 49
start:
- character: 19
+ character: 21
line: 49
uri: templates2.robot
name: ${username}
@@ -5918,10 +5978,10 @@ result:
location:
range:
end:
- character: 38
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: templates2.robot
name: '@{ITEMS}'
@@ -6092,136 +6152,601 @@ result:
name: Template with FOR loop
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 16
- line: 12
+ character: 19
+ line: 7
start:
- character: 0
- line: 12
- uri: variables.robot
- name: ${DD}
+ character: 2
+ line: 7
+ uri: variable_conversion.robot
+ name: '${DATES: list[date]}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 24
- line: 124
+ character: 28
+ line: 8
start:
- character: 0
- line: 124
- uri: variables.robot
- name: ${INFO_DATA}
+ character: 2
+ line: 8
+ uri: variable_conversion.robot
+ name: '${PRIORITIES: dict[int, str]}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 12
- line: 11
+ character: 40
+ line: 70
start:
- character: 0
- line: 11
- uri: variables.robot
- name: ${UU}
+ character: 21
+ line: 70
+ uri: variable_conversion.robot
+ name: '${a: int | str | None}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 24
- line: 123
+ character: 8
+ line: 1
start:
- character: 0
- line: 123
- uri: variables.robot
- name: ${VALUE}
+ character: 2
+ line: 1
+ uri: variable_conversion.robot
+ name: '${a: int}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
character: 12
- line: 10
+ line: 47
start:
- character: 0
- line: 10
- uri: variables.robot
- name: ${ZZ}
+ character: 6
+ line: 47
+ uri: variable_conversion.robot
+ name: '${a: int}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 25
- line: 167
+ character: 27
+ line: 57
start:
- character: 19
- line: 167
- uri: variables.robot
- name: ${aaa}
+ character: 21
+ line: 57
+ uri: variable_conversion.robot
+ name: '${a: int}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 10
- line: 64
+ character: 22
+ line: 65
start:
- character: 4
- line: 64
- uri: variables.robot
- name: ${asd}
+ character: 21
+ line: 65
+ uri: variable_conversion.robot
+ name: ${a}
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 8
- line: 75
+ character: 37
+ line: 65
start:
- character: 4
- line: 75
- uri: variables.robot
- name: ${a}
+ character: 31
+ line: 65
+ uri: variable_conversion.robot
+ name: '${b: int}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 57
+ start:
+ character: 34
+ line: 57
+ uri: variable_conversion.robot
+ name: '${c: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 59
+ line: 57
+ start:
+ character: 47
+ line: 57
+ uri: variable_conversion.robot
+ name: '${d: list[str]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 32
+ start:
+ character: 6
+ line: 32
+ uri: variable_conversion.robot
+ name: '${i: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 42
+ start:
+ character: 13
+ line: 42
+ uri: variable_conversion.robot
+ name: '${i: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: variable_conversion.robot
+ name: '${k: Literal["Yes", "No"]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 34
+ line: 83
+ start:
+ character: 2
+ line: 83
+ uri: variable_conversion.robot
+ name: ${keyword}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 38
+ start:
+ character: 13
+ line: 38
+ uri: variable_conversion.robot
+ name: '${l: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
character: 8
+ line: 2
+ start:
+ character: 2
+ line: 2
+ uri: variable_conversion.robot
+ name: '${s: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 32
+ line: 42
+ start:
+ character: 26
+ line: 42
+ uri: variable_conversion.robot
+ name: '${s: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 16
+ line: 6
+ start:
+ character: 2
+ line: 6
+ uri: variable_conversion.robot
+ name: '${time: datetime}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 4
+ start:
+ character: 2
+ line: 4
+ uri: variable_conversion.robot
+ name: '@{numbers: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 5
+ start:
+ character: 2
+ line: 5
+ uri: variable_conversion.robot
+ name: '@{wrong_numbers: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 53
line: 83
start:
+ character: 0
+ line: 83
+ uri: variable_conversion.robot
+ name: 'a ${keyword: int:keyword|testcase} with embedded args'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: variable_conversion.robot
+ name: a simple keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 39
+ line: 64
+ start:
+ character: 0
+ line: 64
+ uri: variable_conversion.robot
+ name: a simple keyword with default arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 36
+ line: 69
+ start:
+ character: 0
+ line: 69
+ uri: variable_conversion.robot
+ name: a simple keyword with union argument
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 50
+ start:
+ character: 0
+ line: 50
+ uri: variable_conversion.robot
+ name: calling kws with embedded args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 9
+ line: 35
+ start:
+ character: 0
+ line: 35
+ uri: variable_conversion.robot
+ name: for loops
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 46
+ start:
+ character: 0
+ line: 46
+ uri: variable_conversion.robot
+ name: if assignment
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 19
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: variable_conversion.robot
+ name: keyword assignments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 25
+ start:
+ character: 0
+ line: 25
+ uri: variable_conversion.robot
+ name: local variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 12
+ start:
+ character: 0
+ line: 12
+ uri: variable_conversion.robot
+ name: suite variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 4
+ line: 12
+ start:
+ character: 2
+ line: 12
+ uri: variables.robot
+ name: ${DD}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 11
+ line: 124
+ start:
+ character: 2
+ line: 124
+ uri: variables.robot
+ name: ${INFO_DATA}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 4
+ line: 11
+ start:
+ character: 2
+ line: 11
+ uri: variables.robot
+ name: ${UU}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 123
+ start:
+ character: 2
+ line: 123
+ uri: variables.robot
+ name: ${VALUE}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
character: 4
+ line: 10
+ start:
+ character: 2
+ line: 10
+ uri: variables.robot
+ name: ${ZZ}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 167
+ start:
+ character: 19
+ line: 167
+ uri: variables.robot
+ name: ${aaa}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 24
+ line: 167
+ start:
+ character: 21
+ line: 167
+ uri: variables.robot
+ name: ${aaa}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
+ line: 64
+ start:
+ character: 6
+ line: 64
+ uri: variables.robot
+ name: ${asd}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 75
+ start:
+ character: 6
+ line: 75
+ uri: variables.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 83
+ start:
+ character: 6
line: 83
uri: variables.robot
name: ${a}
@@ -6233,10 +6758,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 99
start:
- character: 4
+ character: 6
line: 99
uri: variables.robot
name: ${a}
@@ -6263,10 +6788,10 @@ result:
location:
range:
end:
- character: 21
+ character: 20
line: 177
start:
- character: 17
+ character: 19
line: 177
uri: variables.robot
name: ${a}
@@ -6278,10 +6803,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 76
start:
- character: 4
+ character: 6
line: 76
uri: variables.robot
name: ${b}
@@ -6293,10 +6818,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 84
start:
- character: 4
+ character: 6
line: 84
uri: variables.robot
name: ${b}
@@ -6308,10 +6833,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 100
start:
- character: 4
+ character: 6
line: 100
uri: variables.robot
name: ${b}
@@ -6338,10 +6863,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 177
start:
- character: 23
+ character: 25
line: 177
uri: variables.robot
name: ${b}
@@ -6353,10 +6878,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 77
start:
- character: 4
+ character: 6
line: 77
uri: variables.robot
name: ${c}
@@ -6368,10 +6893,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 102
start:
- character: 4
+ character: 6
line: 102
uri: variables.robot
name: ${c}
@@ -6383,10 +6908,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 78
start:
- character: 4
+ character: 6
line: 78
uri: variables.robot
name: ${d}
@@ -6413,10 +6938,10 @@ result:
location:
range:
end:
- character: 40
+ character: 39
line: 177
start:
- character: 29
+ character: 31
line: 177
uri: variables.robot
name: ${expected}
@@ -6428,10 +6953,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 79
start:
- character: 4
+ character: 6
line: 79
uri: variables.robot
name: ${e}
@@ -6443,10 +6968,10 @@ result:
location:
range:
end:
- character: 43
+ character: 11
line: 9
start:
- character: 0
+ character: 2
line: 9
uri: variables.robot
name: ${full_name}
@@ -6458,10 +6983,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 80
start:
- character: 4
+ character: 6
line: 80
uri: variables.robot
name: ${f}
@@ -6473,10 +6998,10 @@ result:
location:
range:
end:
- character: 19
+ character: 18
line: 68
start:
- character: 4
+ character: 6
line: 68
uri: variables.robot
name: ${hello there1}
@@ -6488,10 +7013,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 52
start:
- character: 9
+ character: 11
line: 52
uri: variables.robot
name: ${i}
@@ -6503,14 +7028,29 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 169
start:
- character: 9
+ character: 11
line: 169
uri: variables.robot
name: ${i}
tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 83
+ line: 181
+ start:
+ character: 75
+ line: 181
+ uri: variables.robot
+ name: ${keywords}
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -6533,10 +7073,10 @@ result:
location:
range:
end:
- character: 99
+ character: 98
line: 181
start:
- character: 88
+ character: 90
line: 181
uri: variables.robot
name: ${listener}
@@ -6548,10 +7088,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 181
start:
- character: 19
+ character: 21
line: 181
uri: variables.robot
name: ${name}
@@ -6563,14 +7103,29 @@ result:
location:
range:
end:
- character: 57
+ character: 15
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: variables.robot
name: ${pre_full_name}
tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 68
+ line: 181
+ start:
+ character: 63
+ line: 181
+ uri: variables.robot
+ name: ${scope}
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -6593,10 +7148,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 181
start:
- character: 37
+ character: 39
line: 181
uri: variables.robot
name: ${version}
@@ -6608,10 +7163,10 @@ result:
location:
range:
end:
- character: 11
+ character: 4
line: 14
start:
- character: 0
+ character: 2
line: 14
uri: variables.robot
name: "${\U0001F9E8\U0001F9E8}"
@@ -6623,10 +7178,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 71
start:
- character: 4
+ character: 6
line: 71
uri: variables.robot
name: '&{a dict}'
@@ -6938,10 +7493,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 39
start:
- character: 32
+ character: 34
line: 39
uri: vartest.robot
name: ${a_second_arg}
@@ -6953,10 +7508,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 45
start:
- character: 32
+ character: 34
line: 45
uri: vartest.robot
name: ${a_second_arg}
@@ -6968,10 +7523,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 39
start:
- character: 19
+ character: 21
line: 39
uri: vartest.robot
name: ${an_arg}
@@ -6983,10 +7538,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 45
start:
- character: 19
+ character: 21
line: 45
uri: vartest.robot
name: ${an_arg}
@@ -7118,10 +7673,10 @@ result:
location:
range:
end:
- character: 35
+ character: 11
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: very_big_file.robot
name: ${city_name}
@@ -7148,10 +7703,10 @@ result:
location:
range:
end:
- character: 71
+ character: 16
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: very_big_file.robot
name: ${cryptic_answer}
@@ -7178,10 +7733,10 @@ result:
location:
range:
end:
- character: 34
+ character: 10
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: very_big_file.robot
name: ${location}
@@ -7298,10 +7853,10 @@ result:
location:
range:
end:
- character: 62
+ character: 10
line: 7
start:
- character: 0
+ character: 2
line: 7
uri: very_big_file.robot
name: ${question}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_workspace_symbols.test[as].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_workspace_symbols.test[as].out
index 90632af99..aaab5e7bc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_workspace_symbols.test[as].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_workspace_symbols.test[as].out
@@ -111,10 +111,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: code_action_show_documentation.robot
name: ${bananas}
@@ -216,10 +216,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 164
start:
- character: 32
+ character: 34
line: 164
uri: document_highlight.robot
name: ${a_second_arg}
@@ -231,10 +231,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 169
start:
- character: 32
+ character: 34
line: 169
uri: document_highlight.robot
name: ${a_second_arg}
@@ -411,10 +411,10 @@ result:
location:
range:
end:
- character: 47
+ character: 20
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: firstresource.resource
name: ${A_VAR_FROM_RESOURE}
@@ -426,10 +426,10 @@ result:
location:
range:
end:
- character: 61
+ character: 60
line: 23
start:
- character: 46
+ character: 48
line: 23
uri: firstresource.resource
name: ${a_short_name}
@@ -516,10 +516,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 213
start:
- character: 32
+ character: 34
line: 213
uri: goto.robot
name: ${a_second_arg}
@@ -531,10 +531,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 218
start:
- character: 32
+ character: 34
line: 218
uri: goto.robot
name: ${a_second_arg}
@@ -726,10 +726,10 @@ result:
location:
range:
end:
- character: 24
+ character: 8
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: indexed_variables.robot
name: '@{A_LIST}'
@@ -741,10 +741,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 26
start:
- character: 0
+ character: 2
line: 26
uri: references.robot
name: ${bananas}
@@ -1071,10 +1071,10 @@ result:
location:
range:
end:
- character: 23
+ character: 16
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: templates2.robot
name: ${VALID PASSWORD}
@@ -1086,10 +1086,10 @@ result:
location:
range:
end:
- character: 22
+ character: 12
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: templates2.robot
name: ${VALID USER}
@@ -1101,10 +1101,10 @@ result:
location:
range:
end:
- character: 45
+ character: 44
line: 49
start:
- character: 34
+ character: 36
line: 49
uri: templates2.robot
name: ${password}
@@ -1199,6 +1199,186 @@ result:
uri: templates2.robot
name: Login with invalid credentials should fail
tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 7
+ start:
+ character: 2
+ line: 7
+ uri: variable_conversion.robot
+ name: '${DATES: list[date]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 70
+ start:
+ character: 21
+ line: 70
+ uri: variable_conversion.robot
+ name: '${a: int | str | None}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: variable_conversion.robot
+ name: '${k: Literal["Yes", "No"]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 53
+ line: 83
+ start:
+ character: 0
+ line: 83
+ uri: variable_conversion.robot
+ name: 'a ${keyword: int:keyword|testcase} with embedded args'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: variable_conversion.robot
+ name: a simple keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 39
+ line: 64
+ start:
+ character: 0
+ line: 64
+ uri: variable_conversion.robot
+ name: a simple keyword with default arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 36
+ line: 69
+ start:
+ character: 0
+ line: 69
+ uri: variable_conversion.robot
+ name: a simple keyword with union argument
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 50
+ start:
+ character: 0
+ line: 50
+ uri: variable_conversion.robot
+ name: calling kws with embedded args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 46
+ start:
+ character: 0
+ line: 46
+ uri: variable_conversion.robot
+ name: if assignment
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 19
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: variable_conversion.robot
+ name: keyword assignments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 25
+ start:
+ character: 0
+ line: 25
+ uri: variable_conversion.robot
+ name: local variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 12
+ start:
+ character: 0
+ line: 12
+ uri: variable_conversion.robot
+ name: suite variables
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -1206,10 +1386,10 @@ result:
location:
range:
end:
- character: 10
+ character: 9
line: 64
start:
- character: 4
+ character: 6
line: 64
uri: variables.robot
name: ${asd}
@@ -1281,10 +1461,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 39
start:
- character: 32
+ character: 34
line: 39
uri: vartest.robot
name: ${a_second_arg}
@@ -1296,10 +1476,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 45
start:
- character: 32
+ character: 34
line: 45
uri: vartest.robot
name: ${a_second_arg}
@@ -1371,10 +1551,10 @@ result:
location:
range:
end:
- character: 71
+ character: 16
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: very_big_file.robot
name: ${cryptic_answer}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_workspace_symbols.test[first].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_workspace_symbols.test[first].out
index e29fff18e..ab4c5c257 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_workspace_symbols.test[first].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_workspace_symbols.test[first].out
@@ -299,6 +299,21 @@ result:
uri: jsonvariables.robot
name: first
tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: old_for.robot
+ name: first
+ tags: null
- !WorkspaceSymbol
container_name: part1__suite
data: null
@@ -576,10 +591,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 41
start:
- character: 19
+ character: 21
line: 41
uri: symbols.robot
name: ${first}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
index 8239f353e..226df7e43 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
index a3ba6d93a..a8415375e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
index 524f60284..6eaa2e935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
index a049d2abd..7ca591687 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
index b2b3a6421..e5efffaa2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
index a513df80b..d54497f31 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
index 2f87ac00e..7efe9727c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
index b0e55bbd5..8f988fde6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
index 6842bfc3a..204e3a526 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
index b9e122bef..392d76d05 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
index 1f167bad1..595a25015 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
index 2d3d8bb53..ec8d67203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
index f4485a04e..2a4594d9d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
index a1f129203..931b651ca 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
index 8a5af0dd6..ca5f519ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
index 079bc90d9..db4eadd00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
index c04f7fc58..9fc8dc9da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
index c233ae926..96464fc0a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
index 870d7a36a..b1eff5801 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
index e82ef2b56..980598cd7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
index c592fc763..0c5b96935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
index a57aabeb3..e02339b62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
index 46e7c3340..ffe8f95ee 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
index 642884f51..67711a05f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
index 28cb91a72..8bb3347a7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
index 0dba1a415..79b0ab951 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
index d71c9d08b..e9fe50e25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
index 7b0d67047..cf3d34dea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
index 3c475dbed..62f4aceb1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
index 15d634e9c..107def919 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
index ade8b6d92..8d2ca8626 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
index 66fddf121..1feeeb40c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
index eb0b5fd54..f5ec1c457 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
index ba8a95794..bea1d3906 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
index 4e8e95194..a62d80df3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
index 90b42a565..e34b79a0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
index be66e20d1..17ec05e27 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
index cb8da7aba..04e70985b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
index f4d156da6..9e6dfd8d7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
index a7550e1f4..b7cf80414 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
index 5d424c505..3244fdcd1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
index becb9d7cb..a94d36226 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
index 5bd9fb55e..fece8b2aa 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
index 725193b37..b0235ca01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
index 5e034b72e..ac50687b3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
index 70d1c5b94..23bb8aaf3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
index ef1b3e404..3b0e98cec 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
index 07bd779f8..325e16336 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
index b3afde9c8..40a3bfb4b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
index b2b32b5a7..9dcf09b8d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
index e0d8907d6..a60432e01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
index ee5c1bb07..52e38c418 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
index 77b677467..afad4b22e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
index 545003425..79c6190d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
index 4a4ecc302..a1e856600 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
index 84362f8a9..b1cb2126a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
index 447bf4184..de0d59df6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
index 52d02c18e..23b9b8a1f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
index dcf7c04e6..17be9c684 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
index 0dfb5c023..7d355d48d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
index f1f42b950..e0c65040f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
index 78cea173c..e73a085ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
index c1fefa5a0..fe1822274 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
index d7f5004eb..7083c0456 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
@@ -13,10 +13,10 @@ result:
line: 113
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
index 5c887ad71..7805da4bc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
@@ -13,10 +13,10 @@ result:
line: 116
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
index ad2cb2b03..e2b4e3ec5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 121
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
index ffdb6f269..3053203b2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 124
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
index 005eccbe0..3aa98776d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
index 727f6e96d..1d82bbf19 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
index 11c936057..69ac841ce 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
index 16a81732f..89d2d8a9a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
index 4f87541d1..220538b57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
@@ -13,10 +13,10 @@ result:
line: 136
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
index 38e45adb1..c0d8cab53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
index 3d915b2f6..e5b45a749 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
index 999c93272..f5bd445a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
index 1be872de3..2ce131597 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
index 1bb226e02..9d51f1860 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
index 7bab735ea..452a44add 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
index 88b77dc89..865e4fe5a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
index 2ad7fcd5c..67501186c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
index 4660d8a0f..f0ad689e2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
index 36e560bc2..3b1f57c25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
index 1082011e2..868e40459 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
index 631d5be02..c6855781f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
index bb4183827..bc6603370 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
index f210370b5..f5299abab 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
index 58c0e52a0..4cf7f16da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
index 16692643a..ae530e453 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
index 85273368b..e48ac204d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
index 11982d4d9..67436f28b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
index 8ee8393a4..8489525fc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
index a9096c519..aeb46e115 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
index 31d58a50f..ff5922211 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
index 2c1d286e9..518933599 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
index 88bfebaf9..1389c2ae6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
index 107e0644a..91386967d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
index bcb425d10..ba3e6351b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
index 5ce584672..14c6de2b7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
index 8c637fba1..145813fd0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
index 84d9267dd..001e62bda 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
index 9c2bc61de..2f9ed615a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
index 877c4d3f7..8f60adbfe 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
index 352ed5354..e58d291f5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
index 7f2aaed0b..79b34a22b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
index 9f7ff9da3..6aafa0cf7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
index e62f70937..99b407107 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
index 26343b08f..a2d19cd1a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
index cb34057a6..b90b18f53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
index 66e1b72a2..5be0a2e62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
index 05a9f2878..44fda0315 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
index a13d64453..3499f3dc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
index edeb45042..800293ec2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 191
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
index f9f759774..e4a2311a1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 193
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
index 8f408d191..18898925e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
index fc63710ae..e00559044 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
index 99b3c42e7..e8255ec5f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
index 24291cbfc..4a85bbe85 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 208
target_range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
index 602cb6ab0..39faffbcf 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
index 6b1ce1d6a..4fd41dc65 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
index 6abc94c88..98f059f2a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
index 3951adaa1..3165c0fc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
index 397adb60c..c34433d9f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
index 38ad1c416..c15fef092 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
index c0de4a0d8..83529a203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 222
target_range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
index 23f059316..3cbc16c4f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
index cd700261d..1514a2e57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
index 6ef9cc6bf..99b72499e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
index 8239f353e..226df7e43 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
index a3ba6d93a..a8415375e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
index 524f60284..6eaa2e935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
index a049d2abd..7ca591687 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
index b2b3a6421..e5efffaa2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
index a513df80b..d54497f31 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
index 2f87ac00e..7efe9727c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
index b0e55bbd5..8f988fde6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
index 6842bfc3a..204e3a526 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
index b9e122bef..392d76d05 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
index 1f167bad1..595a25015 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
index 2d3d8bb53..ec8d67203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
index f4485a04e..2a4594d9d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
index a1f129203..931b651ca 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
index 8a5af0dd6..ca5f519ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
index 079bc90d9..db4eadd00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
index c04f7fc58..9fc8dc9da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
index c233ae926..96464fc0a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
index 870d7a36a..b1eff5801 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
index e82ef2b56..980598cd7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
index c592fc763..0c5b96935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
index a57aabeb3..e02339b62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
index 46e7c3340..ffe8f95ee 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
index 642884f51..67711a05f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
index 28cb91a72..8bb3347a7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
index 0dba1a415..79b0ab951 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
index d71c9d08b..e9fe50e25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
index 7b0d67047..cf3d34dea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
index 3c475dbed..62f4aceb1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
index 15d634e9c..107def919 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
index ade8b6d92..8d2ca8626 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
index 66fddf121..1feeeb40c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
index eb0b5fd54..f5ec1c457 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
index ba8a95794..bea1d3906 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
index 4e8e95194..a62d80df3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
index 90b42a565..e34b79a0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
index be66e20d1..17ec05e27 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
index cb8da7aba..04e70985b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
index f4d156da6..9e6dfd8d7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
index a7550e1f4..b7cf80414 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
index 5d424c505..3244fdcd1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
index becb9d7cb..a94d36226 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
index 5bd9fb55e..fece8b2aa 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
index 725193b37..b0235ca01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
index 5e034b72e..ac50687b3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
index 70d1c5b94..23bb8aaf3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
index ef1b3e404..3b0e98cec 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
index 07bd779f8..325e16336 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
index b3afde9c8..40a3bfb4b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
index b2b32b5a7..9dcf09b8d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
index e0d8907d6..a60432e01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
index ee5c1bb07..52e38c418 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
index 77b677467..afad4b22e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
index 545003425..79c6190d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
index 4a4ecc302..a1e856600 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
index 84362f8a9..b1cb2126a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
index 447bf4184..de0d59df6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
index 52d02c18e..23b9b8a1f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
index dcf7c04e6..17be9c684 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
index 0dfb5c023..7d355d48d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
index f1f42b950..e0c65040f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
index 78cea173c..e73a085ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
index c1fefa5a0..fe1822274 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
index d7f5004eb..7083c0456 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
@@ -13,10 +13,10 @@ result:
line: 113
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
index 5c887ad71..7805da4bc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
@@ -13,10 +13,10 @@ result:
line: 116
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
index ad2cb2b03..e2b4e3ec5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 121
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
index ffdb6f269..3053203b2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 124
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
index 005eccbe0..3aa98776d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
index 727f6e96d..1d82bbf19 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
index 11c936057..69ac841ce 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
index 16a81732f..89d2d8a9a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
index 4f87541d1..220538b57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
@@ -13,10 +13,10 @@ result:
line: 136
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
index 38e45adb1..c0d8cab53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
index 3d915b2f6..e5b45a749 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
index 999c93272..f5bd445a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
index 1be872de3..2ce131597 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
index 1bb226e02..9d51f1860 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
index 7bab735ea..452a44add 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
index 88b77dc89..865e4fe5a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
index 2ad7fcd5c..67501186c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
index 4660d8a0f..f0ad689e2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
index 36e560bc2..3b1f57c25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
index 1082011e2..868e40459 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
index 631d5be02..c6855781f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
index bb4183827..bc6603370 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
index f210370b5..f5299abab 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
index 58c0e52a0..4cf7f16da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
index 16692643a..ae530e453 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
index 85273368b..e48ac204d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
index 11982d4d9..67436f28b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
index 8ee8393a4..8489525fc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
index a9096c519..aeb46e115 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
index 31d58a50f..ff5922211 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
index 2c1d286e9..518933599 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
index 88bfebaf9..1389c2ae6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
index 107e0644a..91386967d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
index bcb425d10..ba3e6351b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
index 5ce584672..14c6de2b7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
index 8c637fba1..145813fd0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
index 84d9267dd..001e62bda 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
index 9c2bc61de..2f9ed615a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
index 877c4d3f7..8f60adbfe 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
index 352ed5354..e58d291f5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
index 7f2aaed0b..79b34a22b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
index 9f7ff9da3..6aafa0cf7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
index e62f70937..99b407107 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
index 26343b08f..a2d19cd1a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
index cb34057a6..b90b18f53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
index 66e1b72a2..5be0a2e62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
index 05a9f2878..44fda0315 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
index a13d64453..3499f3dc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
index edeb45042..800293ec2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 191
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
index f9f759774..e4a2311a1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 193
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
index 8f408d191..18898925e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
index fc63710ae..e00559044 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
index 99b3c42e7..e8255ec5f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
index 24291cbfc..4a85bbe85 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 208
target_range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
index 602cb6ab0..39faffbcf 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
index 6b1ce1d6a..4fd41dc65 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
index 6abc94c88..98f059f2a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
index 3951adaa1..3165c0fc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
index 397adb60c..c34433d9f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
index 38ad1c416..c15fef092 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
index c0de4a0d8..83529a203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 222
target_range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
index 23f059316..3cbc16c4f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
index cd700261d..1514a2e57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
index 6ef9cc6bf..99b72499e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-004-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-004-simple_keyword_call].out
index 5ec0e9ca0..f7a52ff86 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-004-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-004-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-005-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-005-simple_keyword_call].out
index d7490e3f4..d5eee1586 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-005-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-005-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-006-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-006-simple_keyword_call].out
index ec577841d..5199944ba 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-006-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-006-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-105-029-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-105-029-a_variable_with_emoji].out
new file mode 100644
index 000000000..70dec3898
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-105-029-a_variable_with_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 29
+ line: 105
+ name: a variable with emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-105-030-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-105-030-a_variable_with_emoji].out
new file mode 100644
index 000000000..1ba9d617a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-105-030-a_variable_with_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 30
+ line: 105
+ name: a variable with emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-105-033-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-105-033-a_variable_with_emoji].out
deleted file mode 100644
index 3afbe753a..000000000
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-105-033-a_variable_with_emoji].out
+++ /dev/null
@@ -1,32 +0,0 @@
-data: !GeneratedTestData
- character: 33
- line: 105
- name: a variable with emoji
-result:
-- !Location
- range:
- end:
- character: 50
- line: 30
- start:
- character: 41
- line: 30
- uri: resources/firstresource.resource
-- !Location
- range:
- end:
- character: 49
- line: 31
- start:
- character: 40
- line: 31
- uri: resources/firstresource.resource
-- !Location
- range:
- end:
- character: 42
- line: 105
- start:
- character: 33
- line: 105
- uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[__init__.robot].out
index 617f8bd42..f17fc64b4 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[__init__.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 14
- 26
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[bddstyle.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[bddstyle.robot].out
index 2ffd4be56..abd63c2b8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[bddstyle.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[bddstyle.robot].out
@@ -3,57 +3,87 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 14
- - 34
+ - 33
- 1
- 0
- - 22
+ - 14
+ - 8
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 0
- 37
- - 34
+ - 33
- 1
- 0
- - 50
+ - 37
+ - 13
+ - 36
+ - 0
+ - 0
+ - 13
- 1
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 0
- 31
- - 34
+ - 33
- 1
- 0
- - 40
+ - 31
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 1
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 0
- 2
- - 34
+ - 33
- 1
- 0
- 6
@@ -63,7 +93,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -73,221 +103,246 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 13
- - 56
+ - 54
- 0
- 0
- 17
- 9
- - 56
+ - 54
- 0
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 0
- 0
- - 23
+ - 14
+ - 8
+ - 36
+ - 2048
+ - 0
+ - 9
- 11
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 37
- - 39
+ - 37
- 0
+ - 0
+ - 37
+ - 13
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 9
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 8
+ - 36
+ - 2048
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 0
- 0
- 14
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 37
- - 39
+ - 37
- 0
- 0
- 37
- 1
- - 36
+ - 35
- 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
- 0
- 31
- 10
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
- 0
- 31
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 4
+ - 36
+ - 2048
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[code_action_show_documentation.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[code_action_show_documentation.robot].out
index 693e7bbc6..63f49473f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[code_action_show_documentation.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[code_action_show_documentation.robot].out
@@ -3,82 +3,97 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 16
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -88,27 +103,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -116,24 +131,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 2
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -143,32 +163,47 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -178,7 +213,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -188,8 +223,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -198,7 +238,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -208,7 +248,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -218,22 +258,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 1
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -243,17 +298,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -263,7 +328,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -273,22 +338,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -298,7 +363,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -308,7 +373,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -318,27 +383,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
- 9
- - 53
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
- 0
- 0
- 9
@@ -348,17 +418,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -368,17 +448,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -388,7 +478,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -398,12 +488,12 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 2
- 4
@@ -413,7 +503,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -423,107 +513,112 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 17
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 5
- - 36
+ - 35
- 2048
- 0
- 6
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 14
- - 36
+ - 35
- 2048
- 0
- 15
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 2
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 18
+ - 7
+ - 10
+ - 36
+ - 2048
+ - 0
+ - 11
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 21
- - 39
+ - 37
- 0
- 2
- 4
- 21
- - 39
+ - 37
- 0
- 0
- 25
@@ -533,57 +628,67 @@ result: !SemanticTokens
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 2
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 17
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 2
- 4
@@ -593,7 +698,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -603,97 +708,192 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 3
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 22
- 4
- - 34
+ - 18
+ - 36
+ - 0
+ - 0
+ - 18
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 7
- - 34
+ - 33
- 1
- 0
- - 17
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 10
- 14
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -703,7 +903,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -720,20 +920,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -743,7 +958,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -753,7 +968,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -765,20 +980,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -788,7 +1018,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -798,7 +1028,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -810,14 +1040,29 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[document_highlight.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[document_highlight.robot].out
index 85e03cd1e..f92227379 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[document_highlight.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[document_highlight.robot].out
@@ -3,62 +3,77 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
+ - 0
+ - 0
+ - 16
+ - 9
+ - 36
- 0
- 0
- - 25
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
- 36
- - 53
+ - 0
+ - 0
+ - 9
+ - 36
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -68,27 +83,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -96,24 +111,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 4
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -123,32 +143,52 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 9
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,8 +208,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -178,7 +223,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -188,7 +233,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -198,22 +243,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -223,17 +283,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -243,7 +313,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,22 +323,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -278,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -288,7 +358,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -298,27 +368,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 9
- - 53
+ - 51
- 0
- 0
- 9
@@ -328,17 +403,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -348,37 +433,47 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 21
- - 39
+ - 37
- 0
- 1
- 4
- 27
- - 39
+ - 37
- 0
- 1
- 4
- 27
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -388,12 +483,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -403,7 +498,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -413,7 +508,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -423,7 +518,7 @@ result: !SemanticTokens
- 5
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -433,147 +528,167 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -583,7 +698,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -600,20 +715,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -623,7 +753,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -633,7 +763,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -645,20 +775,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -668,7 +813,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -678,7 +823,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -691,7 +836,12 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 9
+ - 1
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 4
- 7
- 0
@@ -700,92 +850,152 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- - 26
+ - 18
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 15
- - 40
+ - 38
- 1024
+ - 0
+ - 19
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 24
- 15
- - 40
+ - 38
- 1024
+ - 0
+ - 19
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- - 26
+ - 18
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 11
- - 40
+ - 38
- 1024
- 0
- 15
- 4
- - 40
+ - 38
+ - 0
+ - 0
+ - 8
+ - 7
+ - 36
- 0
- 3
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 4
- 0
- 49
- - 34
- - 1
+ - 33
- 1
- 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
- - 3
- 4
- 1
- 21
@@ -793,13 +1003,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -808,13 +1023,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -823,7 +1048,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -833,7 +1058,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -845,20 +1070,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
@@ -868,7 +1108,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -878,7 +1118,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -890,22 +1130,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -913,13 +1143,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -928,21 +1163,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[duplicated_resources.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[duplicated_resources.robot].out
index fb940fc64..413d2bcd8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[duplicated_resources.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[duplicated_resources.robot].out
@@ -3,107 +3,107 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 28
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 10
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 8
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 12
- 14
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 18
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -113,12 +113,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -128,12 +128,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -143,6 +143,6 @@ result: !SemanticTokens
- 0
- 1
- 18
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[external_libray.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[external_libray.robot].out
index deee32838..60f2a2488 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[external_libray.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[external_libray.robot].out
@@ -3,47 +3,47 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 17
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -53,6 +53,6 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[foldingrange.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[foldingrange.robot].out
index 5c07a2da1..4ffb0b878 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[foldingrange.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[foldingrange.robot].out
@@ -3,356 +3,396 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- - 2
- - 0
- - 13
- - 25
- - 256
- - 1
+ - 3
- 0
- 3
- - 43
+ - 41
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 9
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 15
+ - 8
- 2
- - 46
+ - 44
- 0
- 2
- 8
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 6
+ - 4
+ - 36
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 3
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 0
- 8
- - 33
+ - 32
- 1
- 3
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 3
- 0
- 9
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 16
- - 31
+ - 30
- 0
- 7
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 13
- - 33
+ - 32
- 1
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
- 1
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 2
- - 35
+ - 34
- 0
- 1
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 4
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 0
- 16
- - 33
+ - 32
- 1
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 6
+ - 36
+ - 0
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- - 16
+ - 8
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 12
- - 39
+ - 37
- 1024
- 3
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[goto.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[goto.robot].out
index 627361dcf..c53530ddb 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[goto.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[goto.robot].out
@@ -3,62 +3,82 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 11
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
- 36
- - 53
+ - 0
+ - 0
+ - 9
+ - 36
+ - 51
- 0
- 4
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 24
+ - 18
+ - 6
+ - 36
+ - 0
+ - 0
+ - 6
- 19
- - 53
+ - 51
- 0
- 0
- 23
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -66,24 +86,49 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 5
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
- 0
- - 3
- 18
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -93,7 +138,7 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -103,17 +148,37 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
- 1
- 21
- 0
- - 7
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 6
+ - 36
+ - 0
+ - 2
+ - 0
+ - 11
+ - 36
+ - 0
+ - 2
+ - 0
+ - 11
+ - 36
+ - 0
+ - 0
- 15
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -123,22 +188,52 @@ result: !SemanticTokens
- 0
- 6
- 6
- - 56
+ - 54
- 0
- 0
- 6
- 1
- 21
- 0
+ - 3
+ - 0
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
+ - 0
+ - 9
+ - 11
+ - 36
+ - 0
+ - 0
+ - 12
- 10
+ - 36
+ - 0
+ - 4
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -148,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -158,37 +253,67 @@ result: !SemanticTokens
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -198,12 +323,17 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
- 0
- 5
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -213,42 +343,77 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 29
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 0
+ - 12
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 9
+ - 36
- 0
- 3
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 3
- 4
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -258,22 +423,22 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 16
- - 39
+ - 37
- 0
- 2
- 4
- 18
- - 39
+ - 37
- 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -283,7 +448,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -298,7 +463,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -308,7 +473,7 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
- 2
- 4
@@ -318,7 +483,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -328,7 +493,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -338,12 +503,12 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 4
- 0
- 16
- - 33
+ - 32
- 1
- 1
- 4
@@ -353,7 +518,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -363,7 +528,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -373,177 +538,202 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 32
- - 39
+ - 37
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 3
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 3
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 7
- - 39
+ - 37
- 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -553,12 +743,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -568,7 +758,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -578,7 +768,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -588,22 +778,22 @@ result: !SemanticTokens
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 16
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 3
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -613,7 +803,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -630,20 +820,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -653,7 +858,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -663,7 +868,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -675,20 +880,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 32
- - 34
+ - 33
- 1
- 1
- 4
@@ -698,7 +918,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -708,7 +928,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -721,7 +941,12 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 10
+ - 1
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
- 5
- 7
- 0
@@ -730,20 +955,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 9
+ - 36
+ - 0
- 6
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 4
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -753,7 +993,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -763,7 +1003,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -775,25 +1015,40 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 0
- 7
- - 34
+ - 33
- 1
- 1
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -803,12 +1058,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -818,12 +1073,12 @@ result: !SemanticTokens
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 2
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -833,29 +1088,14 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 0
- 49
- - 34
- - 1
+ - 33
- 1
- 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
- - 3
- 4
- 1
- 21
@@ -863,13 +1103,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -878,13 +1123,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -893,7 +1148,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -903,7 +1158,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -915,20 +1170,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
@@ -938,7 +1208,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -948,7 +1218,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -960,22 +1230,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -983,13 +1243,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -998,21 +1263,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[hover.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[hover.robot].out
index 0d30de80e..c2aff9bd2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[hover.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[hover.robot].out
@@ -3,32 +3,32 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -38,27 +38,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -66,134 +66,164 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 14
- - 53
+ - 51
- 0
- 0
- 18
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 17
- - 53
+ - 51
- 0
- 0
- 29
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 8
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 17
- - 53
+ - 51
- 0
- 0
- 30
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 10
- - 53
+ - 51
- 0
- 4
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 3
+ - 0
+ - 9
+ - 36
+ - 0
- 0
- - 4
- 18
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -203,7 +233,7 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -213,22 +243,87 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
- 1
- 21
- 0
- - 28
+ - 3
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 36
+ - 0
+ - 3
+ - 0
+ - 5
+ - 36
- 0
- 1
- 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 20
+ - 36
+ - 0
- 5
- - 33
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 25
+ - 36
+ - 0
+ - 0
+ - 26
+ - 4
+ - 36
+ - 0
+ - 8
+ - 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 6
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
- 1
- 1
- 4
@@ -238,7 +333,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -253,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -263,8 +358,13 @@ result: !SemanticTokens
- 0
- 3
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -273,7 +373,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -283,7 +383,7 @@ result: !SemanticTokens
- 0
- 3
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -293,37 +393,67 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 3
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -333,52 +463,97 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 29
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 0
+ - 12
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 9
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 3
- 4
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -388,12 +563,12 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
- 4
- 0
- 6
- - 33
+ - 32
- 1
- 2
- 4
@@ -403,7 +578,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -413,7 +588,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -423,27 +598,32 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
- 9
- - 53
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
- 0
- 0
- 9
@@ -453,17 +633,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -473,12 +663,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -488,17 +683,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
- 0
- 19
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -506,34 +701,49 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 13
+ - 1
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 56
+ - 54
- 0
- 0
- 6
- 1
- 21
- 0
+ - 0
+ - 1
+ - 10
+ - 36
+ - 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
- 0
- 28
@@ -543,22 +753,22 @@ result: !SemanticTokens
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 5
- 4
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 7
- 15
- - 40
+ - 38
- 0
- 0
- 21
@@ -568,122 +778,142 @@ result: !SemanticTokens
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- - 2
- - 35
+ - 2
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
@@ -693,7 +923,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -703,17 +933,17 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
@@ -723,7 +953,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -733,17 +963,17 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -753,97 +983,97 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -853,72 +1083,72 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 5
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 0
- 21
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 40
+ - 38
- 0
- 0
- 1
- 3
- - 40
+ - 38
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 12
- 3
- - 40
+ - 38
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 6
- 3
- - 40
+ - 38
- 1024
- 5
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -928,22 +1158,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 0
- - 27
+ - 16
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 40
+ - 38
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -953,12 +1188,12 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 40
+ - 38
- 1024
- 4
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
@@ -968,7 +1203,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -978,42 +1213,42 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -1023,32 +1258,32 @@ result: !SemanticTokens
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 4
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 18
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1058,12 +1293,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1073,12 +1308,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1088,27 +1323,27 @@ result: !SemanticTokens
- 0
- 1
- 18
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -1118,12 +1353,12 @@ result: !SemanticTokens
- 0
- 1
- 16
- - 39
+ - 37
- 0
- 3
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -1133,12 +1368,12 @@ result: !SemanticTokens
- 0
- 1
- 21
- - 39
+ - 37
- 0
- 3
- 4
- 8
- - 53
+ - 51
- 0
- 0
- 8
@@ -1148,12 +1383,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1163,12 +1398,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 19
- - 53
+ - 51
- 0
- 0
- 19
@@ -1178,17 +1413,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 4
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -1198,12 +1433,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -1213,7 +1448,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -1223,7 +1458,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -1233,92 +1468,92 @@ result: !SemanticTokens
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 9
- - 34
+ - 33
- 1
- 1
- 4
- 11
- - 39
+ - 37
- 1024
- 0
- 15
- 3
- - 40
+ - 38
- 1024
- 4
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 16
- - 40
+ - 38
- 0
- 0
- 20
- 20
- - 40
+ - 38
- 0
- 5
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- 9
- 3
- - 35
+ - 34
- 0
- 0
- 5
- 16
- - 40
+ - 38
- 0
- 0
- 18
- 3
- - 35
+ - 34
- 0
- 0
- 5
- 20
- - 40
+ - 38
- 0
- 7
- 0
- 16
- - 34
+ - 33
- 1
- 2
- 4
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 13
- - 34
+ - 33
- 1
- 1
- 4
- 9
- - 39
+ - 37
- 1024
- 3
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -1328,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1345,20 +1580,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -1368,7 +1618,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1378,7 +1628,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -1390,20 +1640,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -1413,7 +1678,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1423,7 +1688,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1435,49 +1700,74 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 0
- 25
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 4
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 8
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[old_for.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[old_for.robot].out
new file mode 100644
index 000000000..7be4fa033
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[old_for.robot].out
@@ -0,0 +1,98 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 4
+ - 37
+ - 0
+ - 0
+ - 8
+ - 9
+ - 36
+ - 0
+ - 1
+ - 8
+ - 1
+ - 37
+ - 0
+ - 0
+ - 9
+ - 9
+ - 36
+ - 0
+ - 1
+ - 8
+ - 1
+ - 37
+ - 0
+ - 2
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 2
+ - 34
+ - 0
+ - 0
+ - 14
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 14
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 8
+ - 44
+ - 0
+ - 1
+ - 8
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 18
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[playground.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[playground.robot].out
index 5062f2aba..40dfae3ad 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[playground.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[playground.robot].out
@@ -3,87 +3,147 @@ result: !SemanticTokens
- 0
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 13
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 2
- - 35
+ - 34
- 0
- 0
- 11
- 8
- - 39
+ - 37
- 1024
- 0
- 17
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 8
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 4
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 8
- - 34
+ - 33
- 1
- 1
- 4
@@ -93,7 +153,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -103,26 +163,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[references.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[references.robot].out
index 4454cadf3..1c2889b95 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[references.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[references.robot].out
@@ -3,62 +3,77 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -68,27 +83,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -96,24 +111,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 3
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -123,32 +143,52 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 9
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 1
+ - 0
+ - 7
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,8 +208,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -178,7 +223,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -188,7 +233,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -198,22 +243,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -223,17 +283,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -243,7 +313,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,22 +323,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -278,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -288,7 +358,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -298,27 +368,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 9
- - 53
+ - 51
- 0
- 0
- 9
@@ -328,17 +403,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -348,17 +433,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -368,7 +463,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -378,12 +473,12 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 2
- 4
@@ -393,7 +488,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -403,117 +498,127 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 17
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 5
- - 36
+ - 35
- 2048
- 0
- 6
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 14
- - 36
+ - 35
- 2048
- 0
- 15
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 18
+ - 7
+ - 10
+ - 36
+ - 2048
+ - 0
+ - 11
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 15
+ - 7
+ - 7
+ - 36
+ - 2048
+ - 0
+ - 8
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 21
- - 39
+ - 37
- 0
- 2
- 4
- 21
- - 39
+ - 37
- 0
- 0
- 25
@@ -523,57 +628,57 @@ result: !SemanticTokens
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 6
- 2
- - 56
+ - 54
- 0
- 0
- 2
@@ -583,7 +688,7 @@ result: !SemanticTokens
- 2
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -593,12 +698,12 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 39
+ - 37
- 0
- 0
- 6
- 2
- - 56
+ - 54
- 0
- 0
- 2
@@ -606,9 +711,14 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 12
+ - 1
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 15
- - 56
+ - 54
- 0
- 0
- 15
@@ -616,24 +726,34 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 18
- 1
- - 17
- - 0
+ - 7
+ - 36
- 0
- - 3
- - 4
- - 17
+ - 0
+ - 8
+ - 7
+ - 36
+ - 0
+ - 0
+ - 9
+ - 1
+ - 17
+ - 0
+ - 0
+ - 3
+ - 4
+ - 17
- 0
- 5
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -643,12 +763,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -658,7 +778,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -668,7 +788,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -678,12 +798,12 @@ result: !SemanticTokens
- 4
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- 7
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -693,22 +813,32 @@ result: !SemanticTokens
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 17
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -718,7 +848,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -728,97 +858,192 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 4
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 22
- 4
- - 34
+ - 18
+ - 36
+ - 0
+ - 0
+ - 18
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 7
- - 34
+ - 33
- 1
- 0
- - 17
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 10
- 14
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -828,7 +1053,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -845,20 +1070,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -868,7 +1108,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -878,7 +1118,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -890,20 +1130,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -913,7 +1168,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -923,7 +1178,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -935,37 +1190,37 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- - 3
- 0
- - 49
- - 34
- - 1
- - 1
+ - 7
- 4
- - 1
- - 21
- - 256
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
+ - 49
+ - 33
- 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -973,13 +1228,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
- 2
- 4
- 1
@@ -988,13 +1248,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -1003,7 +1273,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1013,7 +1283,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1025,25 +1295,45 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- - 10
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 12
- - 39
+ - 37
- 1024
- 1
- 4
@@ -1053,7 +1343,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1063,7 +1353,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1075,22 +1365,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -1098,13 +1378,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
- 2
- 4
- 1
@@ -1113,27 +1398,52 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 12
- - 39
+ - 37
- 1024
- 1
- 4
@@ -1143,7 +1453,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -1153,27 +1463,42 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 4
+ - 36
- 0
- 2
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 17
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1183,52 +1508,52 @@ result: !SemanticTokens
- 0
- 1
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 10
+ - 36
+ - 0
- 2
- 8
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 12
+ - 36
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 33
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 2
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
@@ -1238,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1248,44 +1573,54 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 35
+ - 36
- 0
- 3
- 4
- 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 39
+ - 36
- 0
- 2
- 4
- 6
- - 35
+ - 34
- 0
- - 3
- 0
- - 57
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
+ - 10
+ - 9
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
- - 1
- - 21
- - 256
+ - 57
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1293,7 +1628,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1303,17 +1638,22 @@ result: !SemanticTokens
- 0
- 5
- 10
- - 56
+ - 54
- 0
- 2
- 4
- 5
- - 35
+ - 34
+ - 0
+ - 0
+ - 9
+ - 7
+ - 36
- 0
- 0
- - 20
+ - 11
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1323,39 +1663,24 @@ result: !SemanticTokens
- 0
- 1
- 10
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 31
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1363,7 +1688,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1373,59 +1698,59 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 1
- 4
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 2
- 4
- 4
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- - 3
- 0
- - 44
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
+ - 10
+ - 9
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
- - 1
- - 21
- - 256
+ - 44
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1433,7 +1758,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1443,27 +1768,37 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 10
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
+ - 4
+ - 36
- 0
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 24
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1473,52 +1808,67 @@ result: !SemanticTokens
- 0
- 1
- 10
- - 35
+ - 34
- 0
- 4
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 23
- - 34
+ - 33
- 1
- 1
- - 21
+ - 4
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
- 12
- - 39
+ - 37
- 1024
- 1
- - 22
+ - 4
+ - 13
+ - 36
+ - 0
+ - 0
+ - 18
- 12
- - 39
+ - 37
- 1024
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- - 41
+ - 25
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1528,37 +1878,37 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 35
+ - 34
- 0
- 2
- 8
- 13
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 28
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1568,22 +1918,22 @@ result: !SemanticTokens
- 0
- 1
- 13
- - 35
+ - 34
- 0
- 2
- 8
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 36
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1593,16 +1943,16 @@ result: !SemanticTokens
- 0
- 1
- 6
- - 35
+ - 34
- 0
- 1
- 8
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[remotetest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[remotetest.robot].out
index 91f1a4bce..539e5d2db 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[remotetest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[remotetest.robot].out
@@ -3,21 +3,21 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 4
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 30
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[reserved.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[reserved.robot].out
index 4d9f51a5e..7719a4730 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[reserved.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[reserved.robot].out
@@ -3,17 +3,17 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 8
- - 53
+ - 51
- 0
- 0
- 8
@@ -23,37 +23,37 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 39
+ - 37
- 0
- 1
- 4
- 5
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 39
+ - 37
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 7
@@ -63,17 +63,17 @@ result: !SemanticTokens
- 1
- 4
- 7
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 1
- 4
- 2
- - 39
+ - 37
- 0
- 0
- 6
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[sematic_tokenizing.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[sematic_tokenizing.robot].out
index b190aa5a1..8ceaea69e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[sematic_tokenizing.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[sematic_tokenizing.robot].out
@@ -3,72 +3,72 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 40
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
@@ -78,7 +78,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -88,62 +88,67 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 13
- 36
- 0
- 0
- - 22
+ - 17
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 27
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -153,32 +158,32 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -188,7 +193,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -198,17 +203,17 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 2
- - 39
+ - 37
- 0
- 3
- 0
- 8
- - 34
+ - 33
- 1
- 1
- 4
@@ -218,7 +223,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -228,21 +233,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 2
- 4
- 2
- - 39
+ - 37
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[setup_teardown.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[setup_teardown.robot].out
index 311584076..75cf1183e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[setup_teardown.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[setup_teardown.robot].out
@@ -3,92 +3,92 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 11
- - 36
+ - 35
- 2048
- 1
- 0
- 14
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 14
- - 36
+ - 35
- 2048
- 1
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 10
- - 36
+ - 35
- 2048
- 2
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 20
- 5
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 25
+ - 24
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -98,7 +98,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -108,17 +108,17 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -128,7 +128,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -138,17 +138,17 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +158,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,12 +168,12 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -183,7 +183,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -198,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -208,22 +208,32 @@ result: !SemanticTokens
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 16
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -233,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -243,21 +253,26 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 2
- 0
- 5
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[signature_help.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[signature_help.robot].out
index e7478c3f3..44c7241a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[signature_help.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[signature_help.robot].out
@@ -3,27 +3,27 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 12
- 10
- - 53
+ - 51
- 0
- 0
- 21
@@ -33,27 +33,27 @@ result: !SemanticTokens
- 3
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 12
- - 39
+ - 37
- 0
- 4
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 26
- - 39
+ - 37
- 0
- 0
- 73
@@ -63,7 +63,7 @@ result: !SemanticTokens
- 5
- 4
- 12
- - 39
+ - 37
- 0
- 0
- 20
@@ -71,9 +71,19 @@ result: !SemanticTokens
- 17
- 0
- 2
- - 20
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 39
+ - 37
- 0
- 0
- 38
@@ -83,7 +93,7 @@ result: !SemanticTokens
- 5
- 4
- 22
- - 39
+ - 37
- 0
- 0
- 44
@@ -93,12 +103,12 @@ result: !SemanticTokens
- 6
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 26
- - 34
+ - 33
- 1
- 1
- 4
@@ -108,7 +118,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -118,7 +128,7 @@ result: !SemanticTokens
- 0
- 5
- 10
- - 56
+ - 54
- 0
- 0
- 14
@@ -140,10 +150,15 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 17
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[symbols.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[symbols.robot].out
index ae76a9d7c..6865270d2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[symbols.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[symbols.robot].out
@@ -3,117 +3,167 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 2
+ - 0
+ - 8
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 2
- - 20
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
- 8
- - 39
+ - 37
- 1024
- 3
- - 37
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
- 8
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 5
+ - 12
+ - 36
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 5
+ - 11
+ - 36
+ - 0
+ - 0
+ - 13
- 2
- - 46
+ - 44
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 4
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 19
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 6
+ - 6
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 31
+ - 30
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 2
- 0
- 10
- - 34
+ - 33
- 1
- 2
- 4
@@ -123,7 +173,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -133,86 +183,86 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 9
- - 56
+ - 54
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 2
- 0
- 15
- - 34
- - 1
- - 2
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 3
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 3
- 4
- 11
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 4
- 4
- 11
- - 39
+ - 37
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 20
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 5
+ - 8
+ - 36
- 0
- 2
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 5
+ - 8
+ - 36
- 0
- 2
- - 15
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 11
- 8
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[templates.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[templates.robot].out
index 745afa1e7..25cc698d3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[templates.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[templates.robot].out
@@ -3,37 +3,47 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 20
- 22
- - 39
+ - 37
- 0
- 2
- 0
- 13
- - 54
+ - 52
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 4
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -43,7 +53,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -58,7 +68,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -68,62 +78,92 @@ result: !SemanticTokens
- 0
- 5
- 16
- - 39
+ - 37
- 0
- 1
- 4
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 8
- 36
- 0
- 0
- - 17
+ - 12
- 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 11
- 36
- 0
- - 2
+ - 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- - 23
- - 1
+ - 5
+ - 14
- 36
- 0
+ - 0
+ - 18
- 1
- - 19
+ - 35
+ - 0
- 1
+ - 4
+ - 11
- 36
- 0
+ - 0
+ - 15
+ - 1
+ - 35
+ - 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 8
- 36
- 0
- 0
- - 17
+ - 12
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
+ - 35
+ - 0
+ - 0
+ - 7
+ - 14
- 36
- 0
- 0
- - 25
+ - 18
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -133,7 +173,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -143,57 +183,57 @@ result: !SemanticTokens
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 36
+ - 35
- 0
- 0
- 7
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -203,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -213,17 +253,17 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 9
- - 33
+ - 32
- 1
- 1
- 4
@@ -233,7 +273,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -243,72 +283,72 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -318,7 +358,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -328,52 +368,62 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
- 0
+ - 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -383,7 +433,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -393,47 +443,57 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 4
+ - 36
+ - 2048
- 0
- - 10
+ - 5
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -443,7 +503,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -453,42 +513,47 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 35
- - 33
+ - 32
- 1
- 1
- 4
@@ -498,7 +563,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -508,47 +573,47 @@ result: !SemanticTokens
- 0
- 5
- 41
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 22
- - 34
+ - 33
- 1
- 1
- 4
@@ -558,7 +623,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -568,42 +633,57 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 16
- - 34
+ - 33
- 1
- 1
- 4
@@ -613,7 +693,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -623,47 +703,62 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -673,7 +768,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -683,27 +778,37 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 28
+ - 7
+ - 17
+ - 36
+ - 0
+ - 0
+ - 21
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 2
- 0
- 19
- - 34
+ - 33
- 1
- 1
- 4
@@ -713,7 +818,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -723,52 +828,97 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 35
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 15
- 8
- - 46
+ - 8
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 11
- - 34
+ - 33
- 1
- 0
- - 15
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 4
- 6
- - 34
+ - 33
- 1
- 0
- - 17
+ - 6
+ - 11
+ - 36
+ - 0
+ - 0
+ - 11
- 4
- - 34
+ - 33
- 1
+ - 0
+ - 4
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -778,7 +928,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -788,21 +938,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[templates2.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[templates2.robot].out
index decfe09ce..a7484130f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[templates2.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[templates2.robot].out
@@ -3,97 +3,152 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 17
- 42
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 13
+ - 36
+ - 0
+ - 1
+ - 0
+ - 17
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 0
- 34
- 8
- - 29
+ - 28
- 0
- 0
- 17
- 8
- - 29
+ - 28
- 0
- 1
- 0
- 17
- - 33
+ - 32
- 1
- 0
- 34
- 7
+ - 35
+ - 0
+ - 0
+ - 17
+ - 17
- 36
- 0
- 1
- 0
- 16
- - 33
+ - 32
- 1
- 0
- - 51
- - 7
+ - 34
+ - 13
- 36
- 0
+ - 0
+ - 17
+ - 7
+ - 35
+ - 0
- 1
- 0
- 30
- - 33
+ - 32
- 1
- 0
- 34
- 7
- - 36
+ - 35
- 0
- 0
- 17
- 7
- - 36
+ - 35
- 0
- 1
- 0
- 15
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 8
+ - 36
+ - 0
+ - 0
+ - 17
+ - 17
+ - 36
+ - 0
- 1
- 0
- 14
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 1
- 0
- 28
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 8
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 22
- - 33
+ - 32
- 1
- 1
- 4
@@ -103,7 +158,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -113,52 +168,77 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- - 19
+ - 8
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 19
+ - 7
- 8
- - 46
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 44
- 0
- 1
- 8
- 7
+ - 35
+ - 0
+ - 0
+ - 11
+ - 8
- 36
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -168,7 +248,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -178,52 +258,77 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- 8
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 7
+ - 36
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 32
- - 33
+ - 32
- 1
- 1
- 4
@@ -233,7 +338,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -243,67 +348,97 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- 8
- 2
- - 35
+ - 34
- 0
- - 1
- - 23
+ - 0
+ - 4
- 7
- 36
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
- 0
- 11
+ - 7
+ - 35
+ - 0
- 1
+ - 12
+ - 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
+ - 0
+ - 11
+ - 1
+ - 35
+ - 0
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 42
- - 34
+ - 33
- 1
- 1
- 4
@@ -313,7 +448,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -323,22 +458,32 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 56
+ - 54
- 0
- 0
- 15
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 15
+ - 11
+ - 36
+ - 0
- 2
- 0
- 15
- - 34
+ - 33
- 1
- 1
- 4
@@ -348,7 +493,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -358,16 +503,26 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[variables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[variables.robot].out
index 04efdca20..d5e87872d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[variables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[variables.robot].out
@@ -3,237 +3,462 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 14
- - 25
+ - 24
- 0
- 0
- 20
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 26
+ - 7
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
- 0
- - 39
+ - 7
+ - 16
+ - 36
+ - 0
+ - 0
+ - 17
+ - 12
+ - 36
+ - 0
+ - 0
+ - 15
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 13
- - 40
+ - 38
- 1024
- 1
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 14
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 12
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 16
+ - 36
+ - 0
+ - 0
+ - 20
+ - 17
+ - 36
+ - 0
+ - 0
+ - 18
+ - 19
+ - 36
+ - 0
+ - 1
+ - 0
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
+ - 12
+ - 36
+ - 0
+ - 0
+ - 13
+ - 14
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
+ - 3
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
- 0
- 9
+ - 3
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
+ - 7
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 7
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 20
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 22
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
@@ -243,7 +468,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,367 +478,527 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
+ - 0
+ - 15
+ - 15
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 11
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 2
- - 46
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 19
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
+ - 1
- 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 24
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
- 1
- 4
- - 3
- - 39
- - 1024
- - 1
- - 14
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
- 12
- - 39
+ - 37
- 1024
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 24
+ - 36
+ - 0
- 1
- - 23
+ - 4
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- - 35
+ - 7
+ - 24
+ - 36
+ - 0
+ - 0
+ - 28
- 20
- 17
- 0
- 2
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 5
- - 35
+ - 34
- 0
- 1
- 8
- 5
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 16
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 2
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 39
+ - 37
- 1024
- 1
- 4
- 20
- - 39
+ - 37
- 1024
- 1
- 4
- 16
- - 39
+ - 37
- 1024
- 1
- 4
- 22
- - 39
+ - 37
- 1024
- 1
- 4
- 25
- - 39
+ - 37
- 1024
- 0
- 36
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 17
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 27
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 18
- - 39
+ - 37
- 1024
- 0
- 29
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 27
- 8
- - 40
+ - 38
- 1024
- 2
- 0
- 7
- - 33
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 32
- 1
+ - 2
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 2
- 4
- 9
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 4
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 13
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 2
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 2
- 0
- 9
- - 33
+ - 32
- 1
- 1
- 4
@@ -623,7 +1008,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -633,42 +1018,42 @@ result: !SemanticTokens
- 0
- 3
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
@@ -678,7 +1063,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -688,52 +1073,67 @@ result: !SemanticTokens
- 0
- 3
- 11
- - 39
+ - 37
- 0
- 0
- - 16
+ - 11
+ - 4
+ - 36
+ - 2048
+ - 0
- 5
- - 39
+ - 5
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
@@ -743,7 +1143,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -753,62 +1153,82 @@ result: !SemanticTokens
- 0
- 3
- 11
- - 39
+ - 37
- 0
- 0
- - 16
+ - 11
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 5
- - 39
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
- 0
+ - 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- - 14
- - 1
+ - 4
+ - 8
- 36
- 0
- 0
+ - 10
+ - 1
+ - 35
+ - 0
+ - 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 35
- - 33
+ - 32
- 1
- 1
- 4
@@ -818,7 +1238,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -828,67 +1248,77 @@ result: !SemanticTokens
- 0
- 3
- 41
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 15
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- - 62
+ - 5
+ - 23
+ - 36
+ - 0
+ - 0
+ - 30
+ - 25
+ - 36
+ - 0
+ - 0
+ - 27
- 6
- 17
- 0
- 2
- 0
- 15
- - 33
+ - 32
- 1
- 1
- 4
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 3
- - 56
+ - 54
- 0
- 0
- 3
@@ -898,17 +1328,17 @@ result: !SemanticTokens
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -918,7 +1348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -928,27 +1358,37 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 28
+ - 7
+ - 17
+ - 36
+ - 0
+ - 0
+ - 21
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 2
- 0
- 19
- - 34
+ - 33
- 1
- 1
- 4
@@ -958,7 +1398,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -968,52 +1408,97 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 11
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 8
- - 46
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 11
- - 34
+ - 33
- 1
- 0
- - 24
+ - 11
+ - 13
+ - 36
+ - 0
+ - 0
+ - 13
- 6
- - 34
+ - 33
- 1
- 0
- - 10
+ - 6
- 4
- - 34
+ - 36
+ - 0
+ - 0
+ - 4
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -1023,7 +1508,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1033,27 +1518,42 @@ result: !SemanticTokens
- 0
- 3
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 31
- - 34
+ - 33
- 1
- 1
- 4
@@ -1063,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1073,12 +1573,12 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 0
- 11
- 3
- - 56
+ - 54
- 0
- 0
- 7
@@ -1093,12 +1593,12 @@ result: !SemanticTokens
- 0
- 14
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 11
- - 56
+ - 54
- 0
- 0
- 15
@@ -1113,22 +1613,22 @@ result: !SemanticTokens
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 5
- - 34
+ - 33
- 1
- 1
- 4
- 31
- - 39
+ - 37
- 0
- 0
- 37
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -1138,7 +1638,7 @@ result: !SemanticTokens
- 0
- 4
- 8
- - 56
+ - 54
- 0
- 0
- 8
@@ -1148,6 +1648,6 @@ result: !SemanticTokens
- 2
- 0
- 18
- - 29
+ - 28
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-__init__.robot].out
index df8fc7278..e0e9f51af 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-__init__.robot].out
@@ -3,6 +3,6 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
index 8461ce14c..fb00afb00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
@@ -3,92 +3,122 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 9
- - 36
+ - 35
- 2048
- 0
- 10
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 9
- - 36
+ - 35
- 2048
- 0
- 10
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 0
- 6
- 13
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 3
- - 34
+ - 33
- 1
- 0
- - 15
+ - 3
+ - 12
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 34
+ - 33
- 1
+ - 0
+ - 6
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
+ - 0
+ - 18
+ - 8
+ - 36
+ - 0
- 2
- 0
- 3
- - 34
+ - 33
- 1
- 0
- - 15
+ - 3
+ - 12
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 34
+ - 33
- 1
- 0
+ - 6
+ - 8
+ - 36
+ - 0
+ - 0
+ - 8
- 14
- - 14
- - 34
+ - 33
- 1
- 1
- 4
@@ -98,7 +128,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -108,11 +138,26 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
+ - 0
+ - 18
+ - 8
+ - 36
+ - 0
+ - 0
+ - 23
+ - 7
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
index 783918611..18166c03e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
@@ -3,31 +3,46 @@ result: !SemanticTokens
- 0
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 18
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
index 827c4b670..9bc959b6c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
@@ -3,36 +3,46 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 16
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 16
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-sometasks.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
index 26fe2075d..3bcc51825 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 13
- - 30
+ - 29
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
index 6020eff3e..111152354 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
@@ -3,11 +3,11 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 4
- - 54
+ - 52
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
index 8ef46bca6..6d97c1255 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
@@ -3,21 +3,21 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
index ea4b3c324..e31f6a76d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 4
- - 54
+ - 52
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf70-vartest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf70-vartest.robot].out
index d084a4249..937fee29c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf70-vartest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf70-vartest.robot].out
@@ -3,144 +3,229 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 2
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 3
- 0
- 22
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 2
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 4
+ - 36
+ - 0
- 2
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 4
+ - 36
+ - 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 49
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- - 1
- - 13
- - 25
- - 256
+ - 7
+ - 9
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -148,13 +233,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -163,13 +253,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -178,7 +278,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -188,7 +288,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -200,25 +300,45 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
@@ -228,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -238,7 +358,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -250,22 +370,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -273,13 +383,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -288,21 +403,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf72-grouptest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
index b78249896..293ff3772 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
@@ -3,56 +3,56 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 39
+ - 37
- 0
- 1
- 8
- 5
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 2
- 4
- 5
- - 39
+ - 37
- 0
- 1
- 8
- 6
- - 39
+ - 37
- 0
- 1
- 8
- 5
- - 39
+ - 37
- 0
- 1
- 12
- 6
- - 39
+ - 37
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 0
- 2
- 4
- 3
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out
new file mode 100644
index 000000000..21f88dc2a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out
@@ -0,0 +1,583 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 26
+ - 36
+ - 0
+ - 1
+ - 0
+ - 15
+ - 36
+ - 0
+ - 1
+ - 0
+ - 21
+ - 36
+ - 0
+ - 1
+ - 0
+ - 17
+ - 36
+ - 0
+ - 1
+ - 0
+ - 20
+ - 36
+ - 0
+ - 1
+ - 0
+ - 29
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 15
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 13
+ - 20
+ - 36
+ - 0
+ - 1
+ - 4
+ - 26
+ - 37
+ - 0
+ - 1
+ - 4
+ - 39
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 0
+ - 40
+ - 7
+ - 36
+ - 0
+ - 2
+ - 0
+ - 15
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 19
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 9
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 8
+ - 44
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 12
+ - 44
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 0
+ - 13
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 2
+ - 34
+ - 0
+ - 0
+ - 12
+ - 8
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 4
+ - 34
+ - 0
+ - 0
+ - 8
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 30
+ - 32
+ - 1
+ - 1
+ - 4
+ - 28
+ - 37
+ - 0
+ - 1
+ - 4
+ - 2
+ - 37
+ - 0
+ - 0
+ - 2
+ - 8
+ - 35
+ - 2048
+ - 0
+ - 9
+ - 18
+ - 37
+ - 0
+ - 3
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 26
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 15
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 3
+ - 36
+ - 0
+ - 2
+ - 0
+ - 39
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 7
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 6
+ - 9
+ - 7
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 36
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 22
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 12
+ - 0
+ - 2
+ - 33
+ - 1
+ - 0
+ - 2
+ - 32
+ - 36
+ - 0
+ - 0
+ - 32
+ - 19
+ - 33
+ - 1
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[very_big_file.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[very_big_file.robot].out
index d4bc0b145..15e147ff0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[very_big_file.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_semantic_tokens.test[very_big_file.robot].out
@@ -3,92346 +3,100801 @@ result: !SemanticTokens
- 0
- 0
- 16
+ - 26
+ - 0
+ - 4
+ - 0
+ - 17
- 27
- 0
- 1
- 0
- - 13
- - 25
- - 256
- - 3
+ - 12
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 1
- 0
- 17
- - 28
+ - 36
- 0
- - 7
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 17
- - 34
+ - 33
- 1
- 0
- - 24
+ - 17
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 51
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 0
- - 19
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 32
- - 34
+ - 33
- 1
+ - 0
+ - 32
+ - 12
+ - 36
+ - 0
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 40
- - 34
+ - 33
- 1
- 0
- - 47
+ - 40
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 6
- - 34
+ - 33
- 1
+ - 0
+ - 6
+ - 11
+ - 36
+ - 0
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 62
- - 34
+ - 33
- 1
- 0
- - 73
+ - 62
+ - 11
+ - 36
+ - 0
+ - 0
+ - 11
- 1
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 0
- - 19
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
+ - 33
- 33
- - 34
- 1
- 0
- - 50
+ - 33
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
- 1
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 50
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 28
- - 34
+ - 33
- 1
- 0
- - 35
+ - 28
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 20
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 34
+ - 33
- 1
- 0
- - 24
+ - 17
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 21
- - 34
+ - 33
- 1
- 0
- - 30
+ - 21
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 13
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 30
- - 34
+ - 33
- 1
- 0
- - 37
+ - 30
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 13
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_workspace_symbols.test[].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_workspace_symbols.test[].out
index 8e5a2cf90..e52ebfc4d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_workspace_symbols.test[].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_workspace_symbols.test[].out
@@ -81,10 +81,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 9
start:
- character: 21
+ character: 23
line: 9
uri: bddstyle.robot
name: ${input}
@@ -111,10 +111,10 @@ result:
location:
range:
end:
- character: 46
+ character: 45
line: 9
start:
- character: 33
+ character: 35
line: 9
uri: bddstyle.robot
name: ${multiplier}
@@ -141,10 +141,10 @@ result:
location:
range:
end:
- character: 59
+ character: 58
line: 9
start:
- character: 50
+ character: 52
line: 9
uri: bddstyle.robot
name: ${result}
@@ -276,10 +276,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 119
start:
- character: 19
+ character: 21
line: 119
uri: code_action_show_documentation.robot
name: ${A VAR}
@@ -291,10 +291,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 124
start:
- character: 28
+ character: 30
line: 124
uri: code_action_show_documentation.robot
name: ${A VAR}
@@ -306,10 +306,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
uri: code_action_show_documentation.robot
name: ${LIB_ARG}
@@ -321,10 +321,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: code_action_show_documentation.robot
name: ${a var}
@@ -336,10 +336,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 129
start:
- character: 19
+ character: 21
line: 129
uri: code_action_show_documentation.robot
name: ${a}
@@ -351,10 +351,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: code_action_show_documentation.robot
name: ${bananas}
@@ -381,10 +381,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 129
start:
- character: 27
+ character: 29
line: 129
uri: code_action_show_documentation.robot
name: ${b}
@@ -411,10 +411,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 52
start:
- character: 4
+ character: 6
line: 52
uri: code_action_show_documentation.robot
name: ${result}
@@ -486,10 +486,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 124
start:
- character: 19
+ character: 21
line: 124
uri: code_action_show_documentation.robot
name: ${tt}
@@ -516,10 +516,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 97
start:
- character: 19
+ character: 21
line: 97
uri: code_action_show_documentation.robot
name: ${type}
@@ -846,10 +846,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 113
start:
- character: 19
+ character: 21
line: 113
uri: document_highlight.robot
name: ${A VAR}
@@ -861,10 +861,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 122
start:
- character: 28
+ character: 30
line: 122
uri: document_highlight.robot
name: ${A VAR}
@@ -876,10 +876,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: document_highlight.robot
name: ${A}
@@ -891,10 +891,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 25
start:
- character: 0
+ character: 2
line: 25
uri: document_highlight.robot
name: ${B}
@@ -906,10 +906,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: document_highlight.robot
name: ${LIB_ARG}
@@ -921,10 +921,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 20
start:
- character: 0
+ character: 2
line: 20
uri: document_highlight.robot
name: ${a var}
@@ -936,10 +936,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 164
start:
- character: 32
+ character: 34
line: 164
uri: document_highlight.robot
name: ${a_second_arg}
@@ -951,10 +951,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 169
start:
- character: 32
+ character: 34
line: 169
uri: document_highlight.robot
name: ${a_second_arg}
@@ -966,10 +966,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 164
start:
- character: 19
+ character: 21
line: 164
uri: document_highlight.robot
name: ${an_arg}
@@ -981,10 +981,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 169
start:
- character: 19
+ character: 21
line: 169
uri: document_highlight.robot
name: ${an_arg}
@@ -996,10 +996,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 132
start:
- character: 19
+ character: 21
line: 132
uri: document_highlight.robot
name: ${a}
@@ -1011,10 +1011,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 132
start:
- character: 27
+ character: 29
line: 132
uri: document_highlight.robot
name: ${b}
@@ -1026,10 +1026,10 @@ result:
location:
range:
end:
- character: 44
+ character: 43
line: 132
start:
- character: 40
+ character: 42
line: 132
uri: document_highlight.robot
name: ${c}
@@ -1056,10 +1056,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 57
start:
- character: 4
+ character: 6
line: 57
uri: document_highlight.robot
name: ${result}
@@ -1086,10 +1086,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 122
start:
- character: 19
+ character: 21
line: 122
uri: document_highlight.robot
name: ${tt}
@@ -1431,10 +1431,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 10
start:
- character: 19
+ character: 21
line: 10
uri: embedded_keywords.robot
name: ${data}
@@ -1566,10 +1566,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 2
start:
- character: 4
+ character: 6
line: 2
uri: fibonaci.robot
name: ${a}
@@ -1581,10 +1581,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 36
start:
- character: 4
+ character: 6
line: 36
uri: fibonaci.robot
name: ${a}
@@ -1596,10 +1596,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 27
start:
- character: 8
+ character: 10
line: 27
uri: fibonaci.robot
name: ${n1}
@@ -1611,10 +1611,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 28
start:
- character: 8
+ character: 10
line: 28
uri: fibonaci.robot
name: ${n2}
@@ -1626,10 +1626,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 22
start:
- character: 19
+ character: 21
line: 22
uri: fibonaci.robot
name: ${n}
@@ -1641,10 +1641,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 35
start:
- character: 19
+ character: 21
line: 35
uri: fibonaci.robot
name: ${n}
@@ -1656,10 +1656,10 @@ result:
location:
range:
end:
- character: 12
+ character: 11
line: 25
start:
- character: 8
+ character: 10
line: 25
uri: fibonaci.robot
name: ${r}
@@ -1821,10 +1821,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 32
start:
- character: 19
+ character: 21
line: 32
uri: first.robot
name: ${b}
@@ -1956,10 +1956,10 @@ result:
location:
range:
end:
- character: 47
+ character: 20
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: firstresource.resource
name: ${A_VAR_FROM_RESOURE}
@@ -1971,10 +1971,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 23
start:
- character: 27
+ character: 29
line: 23
uri: firstresource.resource
name: ${a long name}
@@ -1986,10 +1986,10 @@ result:
location:
range:
end:
- character: 61
+ character: 60
line: 23
start:
- character: 46
+ character: 48
line: 23
uri: firstresource.resource
name: ${a_short_name}
@@ -2001,10 +2001,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 23
start:
- character: 19
+ character: 21
line: 23
uri: firstresource.resource
name: ${a}
@@ -2016,10 +2016,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 30
start:
- character: 19
+ character: 21
line: 30
uri: firstresource.resource
name: "${\U0001F413}"
@@ -2031,10 +2031,10 @@ result:
location:
range:
end:
- character: 34
+ character: 33
line: 30
start:
- character: 27
+ character: 29
line: 30
uri: firstresource.resource
name: "${\U0001F60E\U0001F60B\U0001F619\U0001F619}"
@@ -2046,10 +2046,10 @@ result:
location:
range:
end:
- character: 51
+ character: 50
line: 30
start:
- character: 39
+ character: 41
line: 30
uri: firstresource.resource
name: "${\U0001F9DF\u200D\u2642\uFE0F\U0001F6C3\U0001FAC5\U0001F3FF\U0001F478\U0001F3FF\
@@ -2137,10 +2137,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 53
start:
- character: 4
+ character: 6
line: 53
uri: foldingrange.robot
name: ${a}
@@ -2152,10 +2152,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 81
start:
- character: 4
+ character: 6
line: 81
uri: foldingrange.robot
name: ${a}
@@ -2167,10 +2167,10 @@ result:
location:
range:
end:
- character: 15
+ character: 14
line: 12
start:
- character: 11
+ character: 13
line: 12
uri: foldingrange.robot
name: ${i}
@@ -2272,10 +2272,10 @@ result:
location:
range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
uri: goto.robot
name: ${A VAR1}
@@ -2287,10 +2287,10 @@ result:
location:
range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
uri: goto.robot
name: ${A VAR}
@@ -2302,10 +2302,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
uri: goto.robot
name: ${A VAR}
@@ -2317,10 +2317,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
uri: goto.robot
name: ${A VAR}
@@ -2332,10 +2332,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
uri: goto.robot
name: ${A}
@@ -2347,10 +2347,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
uri: goto.robot
name: ${B}
@@ -2362,10 +2362,10 @@ result:
location:
range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
uri: goto.robot
name: ${DOT}
@@ -2377,10 +2377,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
uri: goto.robot
name: ${LIB_ARG}
@@ -2392,10 +2392,10 @@ result:
location:
range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
uri: goto.robot
name: ${MY_DIR}
@@ -2407,10 +2407,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 213
start:
- character: 32
+ character: 34
line: 213
uri: goto.robot
name: ${a_second_arg}
@@ -2422,10 +2422,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 218
start:
- character: 32
+ character: 34
line: 218
uri: goto.robot
name: ${a_second_arg}
@@ -2437,10 +2437,10 @@ result:
location:
range:
end:
- character: 50
+ character: 14
line: 32
start:
- character: 0
+ character: 2
line: 32
uri: goto.robot
name: ${all together}
@@ -2452,10 +2452,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
uri: goto.robot
name: ${an_arg}
@@ -2467,10 +2467,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
uri: goto.robot
name: ${an_arg}
@@ -2482,10 +2482,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 136
start:
- character: 4
+ character: 6
line: 136
uri: goto.robot
name: ${a}
@@ -2497,10 +2497,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
uri: goto.robot
name: ${a}
@@ -2512,10 +2512,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
uri: goto.robot
name: ${b}
@@ -2527,10 +2527,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
uri: goto.robot
name: ${key}
@@ -2542,10 +2542,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
uri: goto.robot
name: ${tt}
@@ -2557,10 +2557,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
uri: goto.robot
name: ${tt}
@@ -2572,10 +2572,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
uri: goto.robot
name: ${value}
@@ -2587,10 +2587,10 @@ result:
location:
range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: goto.robot
name: '&{A DICT}'
@@ -2602,10 +2602,10 @@ result:
location:
range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
uri: goto.robot
name: '&{dict_var}'
@@ -2617,10 +2617,10 @@ result:
location:
range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
uri: goto.robot
name: '@{list_var}'
@@ -2887,10 +2887,10 @@ result:
location:
range:
end:
- character: 28
+ character: 7
line: 30
start:
- character: 0
+ character: 2
line: 30
uri: hover.robot
name: ${A VAR}
@@ -2902,10 +2902,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 267
start:
- character: 19
+ character: 21
line: 267
uri: hover.robot
name: ${A VAR}
@@ -2917,10 +2917,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 276
start:
- character: 28
+ character: 30
line: 276
uri: hover.robot
name: ${A VAR}
@@ -2932,10 +2932,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 41
start:
- character: 0
+ character: 2
line: 41
uri: hover.robot
name: ${A}
@@ -2947,10 +2947,10 @@ result:
location:
range:
end:
- character: 9
+ character: 3
line: 42
start:
- character: 0
+ character: 2
line: 42
uri: hover.robot
name: ${B}
@@ -2962,10 +2962,10 @@ result:
location:
range:
end:
- character: 28
+ character: 3
line: 43
start:
- character: 0
+ character: 2
line: 43
uri: hover.robot
name: ${C}
@@ -2977,10 +2977,10 @@ result:
location:
range:
end:
- character: 9
+ character: 3
line: 56
start:
- character: 0
+ character: 2
line: 56
uri: hover.robot
name: ${D}
@@ -2992,10 +2992,10 @@ result:
location:
range:
end:
- character: 41
+ character: 3
line: 57
start:
- character: 0
+ character: 2
line: 57
uri: hover.robot
name: ${E}
@@ -3007,10 +3007,10 @@ result:
location:
range:
end:
- character: 14
+ character: 3
line: 58
start:
- character: 0
+ character: 2
line: 58
uri: hover.robot
name: ${F}
@@ -3022,10 +3022,10 @@ result:
location:
range:
end:
- character: 38
+ character: 3
line: 48
start:
- character: 0
+ character: 2
line: 48
uri: hover.robot
name: ${K}
@@ -3037,10 +3037,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 36
start:
- character: 0
+ character: 2
line: 36
uri: hover.robot
name: ${LIB_ARG}
@@ -3052,10 +3052,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 286
start:
- character: 19
+ character: 21
line: 286
uri: hover.robot
name: ${a}
@@ -3067,10 +3067,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 286
start:
- character: 27
+ character: 29
line: 286
uri: hover.robot
name: ${b}
@@ -3097,10 +3097,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 81
start:
- character: 11
+ character: 13
line: 81
uri: hover.robot
name: ${key}
@@ -3112,10 +3112,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 111
start:
- character: 4
+ character: 6
line: 111
uri: hover.robot
name: ${result}
@@ -3127,10 +3127,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 276
start:
- character: 19
+ character: 21
line: 276
uri: hover.robot
name: ${tt}
@@ -3142,10 +3142,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 81
start:
- character: 21
+ character: 23
line: 81
uri: hover.robot
name: ${value}
@@ -3157,10 +3157,10 @@ result:
location:
range:
end:
- character: 35
+ character: 8
line: 33
start:
- character: 0
+ character: 2
line: 33
uri: hover.robot
name: '&{A DICT}'
@@ -3457,10 +3457,10 @@ result:
location:
range:
end:
- character: 13
+ character: 7
line: 2
start:
- character: 0
+ character: 2
line: 2
uri: indexed_variables.robot
name: ${index}
@@ -3472,10 +3472,10 @@ result:
location:
range:
end:
- character: 24
+ character: 8
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: indexed_variables.robot
name: '@{A_LIST}'
@@ -3510,6 +3510,66 @@ result:
uri: jsonvariables.robot
name: first
tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 10
+ start:
+ character: 13
+ line: 10
+ uri: old_for.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: old_for.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 6
+ start:
+ character: 0
+ line: 6
+ uri: old_for.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: old_for.robot
+ name: third
+ tags: null
- !WorkspaceSymbol
container_name: part1__suite
data: null
@@ -3562,10 +3622,10 @@ result:
location:
range:
end:
- character: 21
+ character: 3
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: playground.robot
name: ${2}
@@ -3577,10 +3637,10 @@ result:
location:
range:
end:
- character: 12
+ character: 3
line: 2
start:
- character: 0
+ character: 2
line: 2
uri: playground.robot
name: ${a}
@@ -3592,10 +3652,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 22
start:
- character: 19
+ character: 21
line: 22
uri: playground.robot
name: ${a}
@@ -3607,10 +3667,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 22
start:
- character: 27
+ character: 29
line: 22
uri: playground.robot
name: ${b}
@@ -3622,10 +3682,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 15
start:
- character: 4
+ character: 6
line: 15
uri: playground.robot
name: ${v}
@@ -3667,10 +3727,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 150
start:
- character: 19
+ character: 21
line: 150
uri: references.robot
name: ${A VAR}
@@ -3682,10 +3742,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 159
start:
- character: 28
+ character: 30
line: 159
uri: references.robot
name: ${A VAR}
@@ -3697,10 +3757,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: references.robot
name: ${LIB_ARG}
@@ -3712,10 +3772,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 270
start:
- character: 4
+ character: 6
line: 270
uri: references.robot
name: ${MATCH TYPE}
@@ -3727,10 +3787,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: references.robot
name: ${a var}
@@ -3742,10 +3802,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 245
start:
- character: 19
+ character: 21
line: 245
uri: references.robot
name: ${arg}
@@ -3757,10 +3817,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 169
start:
- character: 19
+ character: 21
line: 169
uri: references.robot
name: ${a}
@@ -3772,10 +3832,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
uri: references.robot
name: ${a}
@@ -3787,10 +3847,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 193
start:
- character: 19
+ character: 21
line: 193
uri: references.robot
name: ${a}
@@ -3802,10 +3862,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 26
start:
- character: 0
+ character: 2
line: 26
uri: references.robot
name: ${bananas}
@@ -3832,10 +3892,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 269
start:
- character: 4
+ character: 6
line: 269
uri: references.robot
name: ${beginning}
@@ -3847,10 +3907,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 169
start:
- character: 27
+ character: 29
line: 169
uri: references.robot
name: ${b}
@@ -3862,10 +3922,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
uri: references.robot
name: ${b}
@@ -3877,10 +3937,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 193
start:
- character: 27
+ character: 29
line: 193
uri: references.robot
name: ${b}
@@ -3892,10 +3952,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 258
start:
- character: 19
+ character: 21
line: 258
uri: references.robot
name: ${count}
@@ -3922,10 +3982,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 59
start:
- character: 4
+ character: 6
line: 59
uri: references.robot
name: ${result}
@@ -3937,10 +3997,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 205
start:
- character: 4
+ character: 6
line: 205
uri: references.robot
name: ${result}
@@ -3952,10 +4012,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 236
start:
- character: 19
+ character: 21
line: 236
uri: references.robot
name: ${retries}
@@ -3967,10 +4027,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 258
start:
- character: 31
+ character: 33
line: 258
uri: references.robot
name: ${retries}
@@ -4042,10 +4102,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 159
start:
- character: 19
+ character: 21
line: 159
uri: references.robot
name: ${tt}
@@ -4072,10 +4132,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 122
start:
- character: 19
+ character: 21
line: 122
uri: references.robot
name: ${type}
@@ -4087,10 +4147,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 224
start:
- character: 19
+ character: 21
line: 224
uri: references.robot
name: ${val}
@@ -4147,10 +4207,10 @@ result:
location:
range:
end:
- character: 11
+ character: 4
line: 27
start:
- character: 0
+ character: 2
line: 27
uri: references.robot
name: "${\U0001F9E8\U0001F9E8}"
@@ -4597,10 +4657,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 31
start:
- character: 19
+ character: 21
line: 31
uri: sematic_tokenizing.robot
name: ${a}
@@ -4612,10 +4672,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 31
start:
- character: 27
+ character: 29
line: 31
uri: sematic_tokenizing.robot
name: ${b}
@@ -4627,10 +4687,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 31
start:
- character: 35
+ character: 37
line: 31
uri: sematic_tokenizing.robot
name: ${c}
@@ -4642,10 +4702,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 26
start:
- character: 19
+ character: 21
line: 26
uri: sematic_tokenizing.robot
name: ${type}
@@ -4762,10 +4822,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 30
start:
- character: 19
+ character: 21
line: 30
uri: setup_teardown.robot
name: ${type}
@@ -4867,10 +4927,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 19
start:
- character: 4
+ character: 6
line: 19
uri: signature_help.robot
name: ${a}
@@ -4882,10 +4942,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 19
start:
- character: 12
+ character: 14
line: 19
uri: signature_help.robot
name: ${b}
@@ -4897,10 +4957,10 @@ result:
location:
range:
end:
- character: 57
+ character: 56
line: 32
start:
- character: 50
+ character: 52
line: 32
uri: signature_help.robot
name: ${html}
@@ -4912,10 +4972,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 32
start:
- character: 33
+ character: 35
line: 32
uri: signature_help.robot
name: ${level}
@@ -4927,10 +4987,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 32
start:
- character: 19
+ character: 21
line: 32
uri: signature_help.robot
name: ${message}
@@ -5122,10 +5182,10 @@ result:
location:
range:
end:
- character: 13
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: symbols.robot
name: ${A_VAR}
@@ -5152,10 +5212,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 41
start:
- character: 19
+ character: 21
line: 41
uri: symbols.robot
name: ${first}
@@ -5167,10 +5227,10 @@ result:
location:
range:
end:
- character: 33
+ character: 32
line: 16
start:
- character: 20
+ character: 22
line: 16
uri: symbols.robot
name: ${kw_result1}
@@ -5182,10 +5242,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 13
start:
- character: 4
+ character: 6
line: 13
uri: symbols.robot
name: ${kw_result}
@@ -5197,10 +5257,10 @@ result:
location:
range:
end:
- character: 20
+ character: 19
line: 21
start:
- character: 9
+ character: 11
line: 21
uri: symbols.robot
name: ${loop_var}
@@ -5212,10 +5272,10 @@ result:
location:
range:
end:
- character: 40
+ character: 39
line: 41
start:
- character: 31
+ character: 33
line: 41
uri: symbols.robot
name: ${second}
@@ -5227,10 +5287,10 @@ result:
location:
range:
end:
- character: 12
+ character: 11
line: 68
start:
- character: 4
+ character: 6
line: 68
uri: symbols.robot
name: ${var 1}
@@ -5303,10 +5363,10 @@ result:
location:
range:
end:
- character: 13
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: templates.robot
name: ${A VAR}
@@ -5318,10 +5378,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 79
start:
- character: 19
+ character: 21
line: 79
uri: templates.robot
name: ${aaa}
@@ -5333,10 +5393,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 61
start:
- character: 19
+ character: 21
line: 61
uri: templates.robot
name: ${a}
@@ -5348,10 +5408,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 68
start:
- character: 19
+ character: 21
line: 68
uri: templates.robot
name: ${a}
@@ -5378,10 +5438,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 89
start:
- character: 19
+ character: 21
line: 89
uri: templates.robot
name: ${a}
@@ -5393,10 +5453,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 61
start:
- character: 27
+ character: 29
line: 61
uri: templates.robot
name: ${b}
@@ -5408,10 +5468,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 68
start:
- character: 27
+ character: 29
line: 68
uri: templates.robot
name: ${b}
@@ -5438,10 +5498,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 89
start:
- character: 27
+ character: 29
line: 89
uri: templates.robot
name: ${b}
@@ -5453,10 +5513,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 61
start:
- character: 35
+ character: 37
line: 61
uri: templates.robot
name: ${c}
@@ -5468,10 +5528,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 68
start:
- character: 35
+ character: 37
line: 68
uri: templates.robot
name: ${c}
@@ -5498,10 +5558,10 @@ result:
location:
range:
end:
- character: 46
+ character: 45
line: 89
start:
- character: 35
+ character: 37
line: 89
uri: templates.robot
name: ${expected}
@@ -5513,10 +5573,10 @@ result:
location:
range:
end:
- character: 15
+ character: 14
line: 81
start:
- character: 11
+ character: 13
line: 81
uri: templates.robot
name: ${i}
@@ -5528,10 +5588,10 @@ result:
location:
range:
end:
- character: 26
+ character: 10
line: 7
start:
- character: 0
+ character: 2
line: 7
uri: templates.robot
name: '@{LIST VAR}'
@@ -5768,10 +5828,10 @@ result:
location:
range:
end:
- character: 23
+ character: 16
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: templates2.robot
name: ${VALID PASSWORD}
@@ -5783,10 +5843,10 @@ result:
location:
range:
end:
- character: 22
+ character: 12
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: templates2.robot
name: ${VALID USER}
@@ -5798,10 +5858,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 53
start:
- character: 19
+ character: 21
line: 53
uri: templates2.robot
name: ${a}
@@ -5813,10 +5873,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 53
start:
- character: 27
+ character: 29
line: 53
uri: templates2.robot
name: ${b}
@@ -5828,10 +5888,10 @@ result:
location:
range:
end:
- character: 19
+ character: 18
line: 22
start:
- character: 11
+ character: 13
line: 22
uri: templates2.robot
name: ${index}
@@ -5843,10 +5903,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 19
start:
- character: 11
+ character: 13
line: 19
uri: templates2.robot
name: ${item}
@@ -5858,10 +5918,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 28
start:
- character: 11
+ character: 13
line: 28
uri: templates2.robot
name: ${item}
@@ -5873,10 +5933,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 38
start:
- character: 11
+ character: 13
line: 38
uri: templates2.robot
name: ${item}
@@ -5888,10 +5948,10 @@ result:
location:
range:
end:
- character: 45
+ character: 44
line: 49
start:
- character: 34
+ character: 36
line: 49
uri: templates2.robot
name: ${password}
@@ -5903,10 +5963,10 @@ result:
location:
range:
end:
- character: 30
+ character: 29
line: 49
start:
- character: 19
+ character: 21
line: 49
uri: templates2.robot
name: ${username}
@@ -5918,10 +5978,10 @@ result:
location:
range:
end:
- character: 38
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: templates2.robot
name: '@{ITEMS}'
@@ -6092,136 +6152,601 @@ result:
name: Template with FOR loop
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 16
- line: 12
+ character: 19
+ line: 7
start:
- character: 0
- line: 12
- uri: variables.robot
- name: ${DD}
+ character: 2
+ line: 7
+ uri: variable_conversion.robot
+ name: '${DATES: list[date]}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 24
- line: 124
+ character: 28
+ line: 8
start:
- character: 0
- line: 124
- uri: variables.robot
- name: ${INFO_DATA}
+ character: 2
+ line: 8
+ uri: variable_conversion.robot
+ name: '${PRIORITIES: dict[int, str]}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 12
- line: 11
+ character: 40
+ line: 70
start:
- character: 0
- line: 11
- uri: variables.robot
- name: ${UU}
+ character: 21
+ line: 70
+ uri: variable_conversion.robot
+ name: '${a: int | str | None}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 24
- line: 123
+ character: 8
+ line: 1
start:
- character: 0
- line: 123
- uri: variables.robot
- name: ${VALUE}
+ character: 2
+ line: 1
+ uri: variable_conversion.robot
+ name: '${a: int}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
character: 12
- line: 10
+ line: 47
start:
- character: 0
- line: 10
- uri: variables.robot
- name: ${ZZ}
+ character: 6
+ line: 47
+ uri: variable_conversion.robot
+ name: '${a: int}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 25
- line: 167
+ character: 27
+ line: 57
start:
- character: 19
- line: 167
- uri: variables.robot
- name: ${aaa}
+ character: 21
+ line: 57
+ uri: variable_conversion.robot
+ name: '${a: int}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 10
- line: 64
+ character: 22
+ line: 65
start:
- character: 4
- line: 64
- uri: variables.robot
- name: ${asd}
+ character: 21
+ line: 65
+ uri: variable_conversion.robot
+ name: ${a}
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 8
- line: 75
+ character: 37
+ line: 65
start:
- character: 4
- line: 75
- uri: variables.robot
- name: ${a}
+ character: 31
+ line: 65
+ uri: variable_conversion.robot
+ name: '${b: int}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 57
+ start:
+ character: 34
+ line: 57
+ uri: variable_conversion.robot
+ name: '${c: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 59
+ line: 57
+ start:
+ character: 47
+ line: 57
+ uri: variable_conversion.robot
+ name: '${d: list[str]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 32
+ start:
+ character: 6
+ line: 32
+ uri: variable_conversion.robot
+ name: '${i: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 42
+ start:
+ character: 13
+ line: 42
+ uri: variable_conversion.robot
+ name: '${i: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: variable_conversion.robot
+ name: '${k: Literal["Yes", "No"]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 34
+ line: 83
+ start:
+ character: 2
+ line: 83
+ uri: variable_conversion.robot
+ name: ${keyword}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 38
+ start:
+ character: 13
+ line: 38
+ uri: variable_conversion.robot
+ name: '${l: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
character: 8
+ line: 2
+ start:
+ character: 2
+ line: 2
+ uri: variable_conversion.robot
+ name: '${s: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 32
+ line: 42
+ start:
+ character: 26
+ line: 42
+ uri: variable_conversion.robot
+ name: '${s: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 16
+ line: 6
+ start:
+ character: 2
+ line: 6
+ uri: variable_conversion.robot
+ name: '${time: datetime}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 4
+ start:
+ character: 2
+ line: 4
+ uri: variable_conversion.robot
+ name: '@{numbers: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 5
+ start:
+ character: 2
+ line: 5
+ uri: variable_conversion.robot
+ name: '@{wrong_numbers: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 53
line: 83
start:
+ character: 0
+ line: 83
+ uri: variable_conversion.robot
+ name: 'a ${keyword: int:keyword|testcase} with embedded args'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: variable_conversion.robot
+ name: a simple keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 39
+ line: 64
+ start:
+ character: 0
+ line: 64
+ uri: variable_conversion.robot
+ name: a simple keyword with default arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 36
+ line: 69
+ start:
+ character: 0
+ line: 69
+ uri: variable_conversion.robot
+ name: a simple keyword with union argument
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 50
+ start:
+ character: 0
+ line: 50
+ uri: variable_conversion.robot
+ name: calling kws with embedded args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 9
+ line: 35
+ start:
+ character: 0
+ line: 35
+ uri: variable_conversion.robot
+ name: for loops
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 46
+ start:
+ character: 0
+ line: 46
+ uri: variable_conversion.robot
+ name: if assignment
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 19
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: variable_conversion.robot
+ name: keyword assignments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 25
+ start:
+ character: 0
+ line: 25
+ uri: variable_conversion.robot
+ name: local variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 12
+ start:
+ character: 0
+ line: 12
+ uri: variable_conversion.robot
+ name: suite variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 4
+ line: 12
+ start:
+ character: 2
+ line: 12
+ uri: variables.robot
+ name: ${DD}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 11
+ line: 124
+ start:
+ character: 2
+ line: 124
+ uri: variables.robot
+ name: ${INFO_DATA}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 4
+ line: 11
+ start:
+ character: 2
+ line: 11
+ uri: variables.robot
+ name: ${UU}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 123
+ start:
+ character: 2
+ line: 123
+ uri: variables.robot
+ name: ${VALUE}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
character: 4
+ line: 10
+ start:
+ character: 2
+ line: 10
+ uri: variables.robot
+ name: ${ZZ}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 167
+ start:
+ character: 19
+ line: 167
+ uri: variables.robot
+ name: ${aaa}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 24
+ line: 167
+ start:
+ character: 21
+ line: 167
+ uri: variables.robot
+ name: ${aaa}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
+ line: 64
+ start:
+ character: 6
+ line: 64
+ uri: variables.robot
+ name: ${asd}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 75
+ start:
+ character: 6
+ line: 75
+ uri: variables.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 83
+ start:
+ character: 6
line: 83
uri: variables.robot
name: ${a}
@@ -6233,10 +6758,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 99
start:
- character: 4
+ character: 6
line: 99
uri: variables.robot
name: ${a}
@@ -6263,10 +6788,10 @@ result:
location:
range:
end:
- character: 21
+ character: 20
line: 177
start:
- character: 17
+ character: 19
line: 177
uri: variables.robot
name: ${a}
@@ -6278,10 +6803,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 76
start:
- character: 4
+ character: 6
line: 76
uri: variables.robot
name: ${b}
@@ -6293,10 +6818,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 84
start:
- character: 4
+ character: 6
line: 84
uri: variables.robot
name: ${b}
@@ -6308,10 +6833,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 100
start:
- character: 4
+ character: 6
line: 100
uri: variables.robot
name: ${b}
@@ -6338,10 +6863,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 177
start:
- character: 23
+ character: 25
line: 177
uri: variables.robot
name: ${b}
@@ -6353,10 +6878,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 77
start:
- character: 4
+ character: 6
line: 77
uri: variables.robot
name: ${c}
@@ -6368,10 +6893,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 102
start:
- character: 4
+ character: 6
line: 102
uri: variables.robot
name: ${c}
@@ -6383,10 +6908,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 78
start:
- character: 4
+ character: 6
line: 78
uri: variables.robot
name: ${d}
@@ -6413,10 +6938,10 @@ result:
location:
range:
end:
- character: 40
+ character: 39
line: 177
start:
- character: 29
+ character: 31
line: 177
uri: variables.robot
name: ${expected}
@@ -6428,10 +6953,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 79
start:
- character: 4
+ character: 6
line: 79
uri: variables.robot
name: ${e}
@@ -6443,10 +6968,10 @@ result:
location:
range:
end:
- character: 43
+ character: 11
line: 9
start:
- character: 0
+ character: 2
line: 9
uri: variables.robot
name: ${full_name}
@@ -6458,10 +6983,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 80
start:
- character: 4
+ character: 6
line: 80
uri: variables.robot
name: ${f}
@@ -6473,10 +6998,10 @@ result:
location:
range:
end:
- character: 19
+ character: 18
line: 68
start:
- character: 4
+ character: 6
line: 68
uri: variables.robot
name: ${hello there1}
@@ -6488,10 +7013,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 52
start:
- character: 9
+ character: 11
line: 52
uri: variables.robot
name: ${i}
@@ -6503,14 +7028,29 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 169
start:
- character: 9
+ character: 11
line: 169
uri: variables.robot
name: ${i}
tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 83
+ line: 181
+ start:
+ character: 75
+ line: 181
+ uri: variables.robot
+ name: ${keywords}
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -6533,10 +7073,10 @@ result:
location:
range:
end:
- character: 99
+ character: 98
line: 181
start:
- character: 88
+ character: 90
line: 181
uri: variables.robot
name: ${listener}
@@ -6548,10 +7088,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 181
start:
- character: 19
+ character: 21
line: 181
uri: variables.robot
name: ${name}
@@ -6563,14 +7103,29 @@ result:
location:
range:
end:
- character: 57
+ character: 15
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: variables.robot
name: ${pre_full_name}
tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 68
+ line: 181
+ start:
+ character: 63
+ line: 181
+ uri: variables.robot
+ name: ${scope}
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -6593,10 +7148,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 181
start:
- character: 37
+ character: 39
line: 181
uri: variables.robot
name: ${version}
@@ -6608,10 +7163,10 @@ result:
location:
range:
end:
- character: 11
+ character: 4
line: 14
start:
- character: 0
+ character: 2
line: 14
uri: variables.robot
name: "${\U0001F9E8\U0001F9E8}"
@@ -6623,10 +7178,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 71
start:
- character: 4
+ character: 6
line: 71
uri: variables.robot
name: '&{a dict}'
@@ -6938,10 +7493,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 39
start:
- character: 32
+ character: 34
line: 39
uri: vartest.robot
name: ${a_second_arg}
@@ -6953,10 +7508,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 45
start:
- character: 32
+ character: 34
line: 45
uri: vartest.robot
name: ${a_second_arg}
@@ -6968,10 +7523,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 39
start:
- character: 19
+ character: 21
line: 39
uri: vartest.robot
name: ${an_arg}
@@ -6983,10 +7538,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 45
start:
- character: 19
+ character: 21
line: 45
uri: vartest.robot
name: ${an_arg}
@@ -7118,10 +7673,10 @@ result:
location:
range:
end:
- character: 35
+ character: 11
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: very_big_file.robot
name: ${city_name}
@@ -7148,10 +7703,10 @@ result:
location:
range:
end:
- character: 71
+ character: 16
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: very_big_file.robot
name: ${cryptic_answer}
@@ -7178,10 +7733,10 @@ result:
location:
range:
end:
- character: 34
+ character: 10
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: very_big_file.robot
name: ${location}
@@ -7298,10 +7853,10 @@ result:
location:
range:
end:
- character: 62
+ character: 10
line: 7
start:
- character: 0
+ character: 2
line: 7
uri: very_big_file.robot
name: ${question}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_workspace_symbols.test[as].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_workspace_symbols.test[as].out
index 90632af99..aaab5e7bc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_workspace_symbols.test[as].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_workspace_symbols.test[as].out
@@ -111,10 +111,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: code_action_show_documentation.robot
name: ${bananas}
@@ -216,10 +216,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 164
start:
- character: 32
+ character: 34
line: 164
uri: document_highlight.robot
name: ${a_second_arg}
@@ -231,10 +231,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 169
start:
- character: 32
+ character: 34
line: 169
uri: document_highlight.robot
name: ${a_second_arg}
@@ -411,10 +411,10 @@ result:
location:
range:
end:
- character: 47
+ character: 20
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: firstresource.resource
name: ${A_VAR_FROM_RESOURE}
@@ -426,10 +426,10 @@ result:
location:
range:
end:
- character: 61
+ character: 60
line: 23
start:
- character: 46
+ character: 48
line: 23
uri: firstresource.resource
name: ${a_short_name}
@@ -516,10 +516,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 213
start:
- character: 32
+ character: 34
line: 213
uri: goto.robot
name: ${a_second_arg}
@@ -531,10 +531,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 218
start:
- character: 32
+ character: 34
line: 218
uri: goto.robot
name: ${a_second_arg}
@@ -726,10 +726,10 @@ result:
location:
range:
end:
- character: 24
+ character: 8
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: indexed_variables.robot
name: '@{A_LIST}'
@@ -741,10 +741,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 26
start:
- character: 0
+ character: 2
line: 26
uri: references.robot
name: ${bananas}
@@ -1071,10 +1071,10 @@ result:
location:
range:
end:
- character: 23
+ character: 16
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: templates2.robot
name: ${VALID PASSWORD}
@@ -1086,10 +1086,10 @@ result:
location:
range:
end:
- character: 22
+ character: 12
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: templates2.robot
name: ${VALID USER}
@@ -1101,10 +1101,10 @@ result:
location:
range:
end:
- character: 45
+ character: 44
line: 49
start:
- character: 34
+ character: 36
line: 49
uri: templates2.robot
name: ${password}
@@ -1199,6 +1199,186 @@ result:
uri: templates2.robot
name: Login with invalid credentials should fail
tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 7
+ start:
+ character: 2
+ line: 7
+ uri: variable_conversion.robot
+ name: '${DATES: list[date]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 70
+ start:
+ character: 21
+ line: 70
+ uri: variable_conversion.robot
+ name: '${a: int | str | None}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: variable_conversion.robot
+ name: '${k: Literal["Yes", "No"]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 53
+ line: 83
+ start:
+ character: 0
+ line: 83
+ uri: variable_conversion.robot
+ name: 'a ${keyword: int:keyword|testcase} with embedded args'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: variable_conversion.robot
+ name: a simple keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 39
+ line: 64
+ start:
+ character: 0
+ line: 64
+ uri: variable_conversion.robot
+ name: a simple keyword with default arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 36
+ line: 69
+ start:
+ character: 0
+ line: 69
+ uri: variable_conversion.robot
+ name: a simple keyword with union argument
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 50
+ start:
+ character: 0
+ line: 50
+ uri: variable_conversion.robot
+ name: calling kws with embedded args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 46
+ start:
+ character: 0
+ line: 46
+ uri: variable_conversion.robot
+ name: if assignment
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 19
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: variable_conversion.robot
+ name: keyword assignments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 25
+ start:
+ character: 0
+ line: 25
+ uri: variable_conversion.robot
+ name: local variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 12
+ start:
+ character: 0
+ line: 12
+ uri: variable_conversion.robot
+ name: suite variables
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -1206,10 +1386,10 @@ result:
location:
range:
end:
- character: 10
+ character: 9
line: 64
start:
- character: 4
+ character: 6
line: 64
uri: variables.robot
name: ${asd}
@@ -1281,10 +1461,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 39
start:
- character: 32
+ character: 34
line: 39
uri: vartest.robot
name: ${a_second_arg}
@@ -1296,10 +1476,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 45
start:
- character: 32
+ character: 34
line: 45
uri: vartest.robot
name: ${a_second_arg}
@@ -1371,10 +1551,10 @@ result:
location:
range:
end:
- character: 71
+ character: 16
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: very_big_file.robot
name: ${cryptic_answer}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_workspace_symbols.test[first].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_workspace_symbols.test[first].out
index e29fff18e..ab4c5c257 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_workspace_symbols.test[first].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_workspace_symbols.test[first].out
@@ -299,6 +299,21 @@ result:
uri: jsonvariables.robot
name: first
tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: old_for.robot
+ name: first
+ tags: null
- !WorkspaceSymbol
container_name: part1__suite
data: null
@@ -576,10 +591,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 41
start:
- character: 19
+ character: 21
line: 41
uri: symbols.robot
name: ${first}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
index 8239f353e..226df7e43 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
index a3ba6d93a..a8415375e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
index 524f60284..6eaa2e935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
index a049d2abd..7ca591687 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
index b2b3a6421..e5efffaa2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
index a513df80b..d54497f31 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
index 2f87ac00e..7efe9727c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
index b0e55bbd5..8f988fde6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
index 6842bfc3a..204e3a526 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
index b9e122bef..392d76d05 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
index 1f167bad1..595a25015 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
index 2d3d8bb53..ec8d67203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
index f4485a04e..2a4594d9d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
index a1f129203..931b651ca 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
index 8a5af0dd6..ca5f519ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
index 079bc90d9..db4eadd00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
index c04f7fc58..9fc8dc9da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
index c233ae926..96464fc0a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
index 870d7a36a..b1eff5801 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
index e82ef2b56..980598cd7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
index c592fc763..0c5b96935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
index a57aabeb3..e02339b62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
index 46e7c3340..ffe8f95ee 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
index 642884f51..67711a05f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
index 28cb91a72..8bb3347a7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
index 0dba1a415..79b0ab951 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
index d71c9d08b..e9fe50e25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
index 7b0d67047..cf3d34dea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
index 3c475dbed..62f4aceb1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
index 15d634e9c..107def919 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
index ade8b6d92..8d2ca8626 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
index 66fddf121..1feeeb40c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
index eb0b5fd54..f5ec1c457 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
index ba8a95794..bea1d3906 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
index 4e8e95194..a62d80df3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
index 90b42a565..e34b79a0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
index be66e20d1..17ec05e27 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
index cb8da7aba..04e70985b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
index f4d156da6..9e6dfd8d7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
index a7550e1f4..b7cf80414 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
index 5d424c505..3244fdcd1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
index becb9d7cb..a94d36226 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
index 5bd9fb55e..fece8b2aa 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
index 725193b37..b0235ca01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
index 5e034b72e..ac50687b3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
index 70d1c5b94..23bb8aaf3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
index ef1b3e404..3b0e98cec 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
index 07bd779f8..325e16336 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
index b3afde9c8..40a3bfb4b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
index b2b32b5a7..9dcf09b8d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
index e0d8907d6..a60432e01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
index ee5c1bb07..52e38c418 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
index 77b677467..afad4b22e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
index 545003425..79c6190d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
index 4a4ecc302..a1e856600 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
index 84362f8a9..b1cb2126a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
index 447bf4184..de0d59df6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
index 52d02c18e..23b9b8a1f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
index dcf7c04e6..17be9c684 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
index 0dfb5c023..7d355d48d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
index f1f42b950..e0c65040f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
index 78cea173c..e73a085ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
index c1fefa5a0..fe1822274 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
index d7f5004eb..7083c0456 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
@@ -13,10 +13,10 @@ result:
line: 113
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
index 5c887ad71..7805da4bc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
@@ -13,10 +13,10 @@ result:
line: 116
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
index ad2cb2b03..e2b4e3ec5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 121
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
index ffdb6f269..3053203b2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 124
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
index 005eccbe0..3aa98776d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
index 727f6e96d..1d82bbf19 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
index 11c936057..69ac841ce 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
index 16a81732f..89d2d8a9a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
index 4f87541d1..220538b57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
@@ -13,10 +13,10 @@ result:
line: 136
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
index 38e45adb1..c0d8cab53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
index 3d915b2f6..e5b45a749 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
index 999c93272..f5bd445a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
index 1be872de3..2ce131597 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
index 1bb226e02..9d51f1860 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
index 7bab735ea..452a44add 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
index 88b77dc89..865e4fe5a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
index 2ad7fcd5c..67501186c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
index 4660d8a0f..f0ad689e2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
index 36e560bc2..3b1f57c25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
index 1082011e2..868e40459 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
index 631d5be02..c6855781f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
index bb4183827..bc6603370 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
index f210370b5..f5299abab 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
index 58c0e52a0..4cf7f16da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
index 16692643a..ae530e453 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
index 85273368b..e48ac204d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
index 11982d4d9..67436f28b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
index 8ee8393a4..8489525fc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
index a9096c519..aeb46e115 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
index 31d58a50f..ff5922211 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
index 2c1d286e9..518933599 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
index 88bfebaf9..1389c2ae6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
index 107e0644a..91386967d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
index bcb425d10..ba3e6351b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
index 5ce584672..14c6de2b7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
index 8c637fba1..145813fd0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
index 84d9267dd..001e62bda 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
index 9c2bc61de..2f9ed615a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
index 877c4d3f7..8f60adbfe 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
index 352ed5354..e58d291f5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
index 7f2aaed0b..79b34a22b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
index 9f7ff9da3..6aafa0cf7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
index e62f70937..99b407107 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
index 26343b08f..a2d19cd1a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
index cb34057a6..b90b18f53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
index 66e1b72a2..5be0a2e62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
index 05a9f2878..44fda0315 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
index a13d64453..3499f3dc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
index edeb45042..800293ec2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 191
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
index f9f759774..e4a2311a1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 193
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
index 8f408d191..18898925e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
index fc63710ae..e00559044 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
index 99b3c42e7..e8255ec5f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
index 24291cbfc..4a85bbe85 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 208
target_range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
index 602cb6ab0..39faffbcf 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
index 6b1ce1d6a..4fd41dc65 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
index 6abc94c88..98f059f2a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
index 3951adaa1..3165c0fc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
index 397adb60c..c34433d9f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
index 38ad1c416..c15fef092 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
index c0de4a0d8..83529a203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 222
target_range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
index 23f059316..3cbc16c4f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
index cd700261d..1514a2e57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
index 6ef9cc6bf..99b72499e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
index 8239f353e..226df7e43 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
index a3ba6d93a..a8415375e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
index 524f60284..6eaa2e935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
index a049d2abd..7ca591687 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
index b2b3a6421..e5efffaa2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
index a513df80b..d54497f31 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
index 2f87ac00e..7efe9727c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
index b0e55bbd5..8f988fde6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
index 6842bfc3a..204e3a526 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
index b9e122bef..392d76d05 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
index 1f167bad1..595a25015 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
index 2d3d8bb53..ec8d67203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
index f4485a04e..2a4594d9d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
index a1f129203..931b651ca 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
index 8a5af0dd6..ca5f519ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
index 079bc90d9..db4eadd00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
index c04f7fc58..9fc8dc9da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
index c233ae926..96464fc0a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
index 870d7a36a..b1eff5801 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
index e82ef2b56..980598cd7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
index c592fc763..0c5b96935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
index a57aabeb3..e02339b62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
index 46e7c3340..ffe8f95ee 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
index 642884f51..67711a05f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
index 28cb91a72..8bb3347a7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
index 0dba1a415..79b0ab951 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
index d71c9d08b..e9fe50e25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
index 7b0d67047..cf3d34dea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
index 3c475dbed..62f4aceb1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
index 15d634e9c..107def919 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
index ade8b6d92..8d2ca8626 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
index 66fddf121..1feeeb40c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
index eb0b5fd54..f5ec1c457 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
index ba8a95794..bea1d3906 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
index 4e8e95194..a62d80df3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
index 90b42a565..e34b79a0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
index be66e20d1..17ec05e27 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
index cb8da7aba..04e70985b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
index f4d156da6..9e6dfd8d7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
index a7550e1f4..b7cf80414 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
index 5d424c505..3244fdcd1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
index becb9d7cb..a94d36226 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
index 5bd9fb55e..fece8b2aa 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
index 725193b37..b0235ca01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
index 5e034b72e..ac50687b3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
index 70d1c5b94..23bb8aaf3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
index ef1b3e404..3b0e98cec 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
index 07bd779f8..325e16336 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
index b3afde9c8..40a3bfb4b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
index b2b32b5a7..9dcf09b8d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
index e0d8907d6..a60432e01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
index ee5c1bb07..52e38c418 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
index 77b677467..afad4b22e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
index 545003425..79c6190d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
index 4a4ecc302..a1e856600 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
index 84362f8a9..b1cb2126a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
index 447bf4184..de0d59df6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
index 52d02c18e..23b9b8a1f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
index dcf7c04e6..17be9c684 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
index 0dfb5c023..7d355d48d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
index f1f42b950..e0c65040f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
index 78cea173c..e73a085ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
index c1fefa5a0..fe1822274 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
index d7f5004eb..7083c0456 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
@@ -13,10 +13,10 @@ result:
line: 113
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
index 5c887ad71..7805da4bc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
@@ -13,10 +13,10 @@ result:
line: 116
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
index ad2cb2b03..e2b4e3ec5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 121
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
index ffdb6f269..3053203b2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 124
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
index 005eccbe0..3aa98776d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
index 727f6e96d..1d82bbf19 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
index 11c936057..69ac841ce 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
index 16a81732f..89d2d8a9a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
index 4f87541d1..220538b57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
@@ -13,10 +13,10 @@ result:
line: 136
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
index 38e45adb1..c0d8cab53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
index 3d915b2f6..e5b45a749 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
index 999c93272..f5bd445a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
index 1be872de3..2ce131597 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
index 1bb226e02..9d51f1860 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
index 7bab735ea..452a44add 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
index 88b77dc89..865e4fe5a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
index 2ad7fcd5c..67501186c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
index 4660d8a0f..f0ad689e2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
index 36e560bc2..3b1f57c25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
index 1082011e2..868e40459 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
index 631d5be02..c6855781f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
index bb4183827..bc6603370 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
index f210370b5..f5299abab 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
index 58c0e52a0..4cf7f16da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
index 16692643a..ae530e453 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
index 85273368b..e48ac204d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
index 11982d4d9..67436f28b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
index 8ee8393a4..8489525fc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
index a9096c519..aeb46e115 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
index 31d58a50f..ff5922211 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
index 2c1d286e9..518933599 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
index 88bfebaf9..1389c2ae6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
index 107e0644a..91386967d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
index bcb425d10..ba3e6351b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
index 5ce584672..14c6de2b7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
index 8c637fba1..145813fd0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
index 84d9267dd..001e62bda 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
index 9c2bc61de..2f9ed615a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
index 877c4d3f7..8f60adbfe 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
index 352ed5354..e58d291f5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
index 7f2aaed0b..79b34a22b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
index 9f7ff9da3..6aafa0cf7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
index e62f70937..99b407107 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
index 26343b08f..a2d19cd1a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
index cb34057a6..b90b18f53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
index 66e1b72a2..5be0a2e62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
index 05a9f2878..44fda0315 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
index a13d64453..3499f3dc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
index edeb45042..800293ec2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 191
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
index f9f759774..e4a2311a1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 193
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
index 8f408d191..18898925e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
index fc63710ae..e00559044 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
index 99b3c42e7..e8255ec5f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
index 24291cbfc..4a85bbe85 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 208
target_range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
index 602cb6ab0..39faffbcf 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
index 6b1ce1d6a..4fd41dc65 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
index 6abc94c88..98f059f2a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
index 3951adaa1..3165c0fc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
index 397adb60c..c34433d9f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
index 38ad1c416..c15fef092 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
index c0de4a0d8..83529a203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 222
target_range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
index 23f059316..3cbc16c4f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
index cd700261d..1514a2e57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
index 6ef9cc6bf..99b72499e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out
index 444f042b1..e61ae5a48 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 2
line: 38
name: no hover for invalid variable
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out
index 487757a8e..28410e141 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 9
line: 38
name: no hover for invalid variable
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out
index ef7994f1d..52e5648d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 16
line: 38
name: no hover for invalid variable
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out
index 98a12e526..5238819ba 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 20
line: 72
name: no hover for invalid variable reference
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 28
+ line: 72
+ start:
+ character: 13
+ line: 72
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out
index 69dd1ee5c..1b0b0551b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 27
line: 72
name: no hover for invalid variable reference
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 28
+ line: 72
+ start:
+ character: 13
+ line: 72
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-036-004-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-036-004-simple_keyword_call].out
index 10e7a2c39..3821899cf 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-036-004-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-036-004-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-036-005-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-036-005-simple_keyword_call].out
index 948457d49..d3ed3e70d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-036-005-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-036-005-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-036-006-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-036-006-simple_keyword_call].out
index 8e2aa30fd..211762bcf 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-036-006-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-036-006-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-105-029-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-105-029-a_variable_with_emoji].out
new file mode 100644
index 000000000..70dec3898
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-105-029-a_variable_with_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 29
+ line: 105
+ name: a variable with emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-105-030-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-105-030-a_variable_with_emoji].out
new file mode 100644
index 000000000..1ba9d617a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-105-030-a_variable_with_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 30
+ line: 105
+ name: a variable with emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-105-033-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-105-033-a_variable_with_emoji].out
deleted file mode 100644
index 3afbe753a..000000000
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_references.test[references.robot-105-033-a_variable_with_emoji].out
+++ /dev/null
@@ -1,32 +0,0 @@
-data: !GeneratedTestData
- character: 33
- line: 105
- name: a variable with emoji
-result:
-- !Location
- range:
- end:
- character: 50
- line: 30
- start:
- character: 41
- line: 30
- uri: resources/firstresource.resource
-- !Location
- range:
- end:
- character: 49
- line: 31
- start:
- character: 40
- line: 31
- uri: resources/firstresource.resource
-- !Location
- range:
- end:
- character: 42
- line: 105
- start:
- character: 33
- line: 105
- uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[__init__.robot].out
index 617f8bd42..f17fc64b4 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[__init__.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 14
- 26
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[bddstyle.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[bddstyle.robot].out
index 2ffd4be56..abd63c2b8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[bddstyle.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[bddstyle.robot].out
@@ -3,57 +3,87 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 14
- - 34
+ - 33
- 1
- 0
- - 22
+ - 14
+ - 8
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 0
- 37
- - 34
+ - 33
- 1
- 0
- - 50
+ - 37
+ - 13
+ - 36
+ - 0
+ - 0
+ - 13
- 1
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 0
- 31
- - 34
+ - 33
- 1
- 0
- - 40
+ - 31
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 1
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 0
- 2
- - 34
+ - 33
- 1
- 0
- 6
@@ -63,7 +93,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -73,221 +103,246 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 13
- - 56
+ - 54
- 0
- 0
- 17
- 9
- - 56
+ - 54
- 0
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 0
- 0
- - 23
+ - 14
+ - 8
+ - 36
+ - 2048
+ - 0
+ - 9
- 11
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 37
- - 39
+ - 37
- 0
+ - 0
+ - 37
+ - 13
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 9
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 8
+ - 36
+ - 2048
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 0
- 0
- 14
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 37
- - 39
+ - 37
- 0
- 0
- 37
- 1
- - 36
+ - 35
- 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
- 0
- 31
- 10
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
- 0
- 31
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 4
+ - 36
+ - 2048
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[code_action_show_documentation.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[code_action_show_documentation.robot].out
index 693e7bbc6..63f49473f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[code_action_show_documentation.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[code_action_show_documentation.robot].out
@@ -3,82 +3,97 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 16
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -88,27 +103,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -116,24 +131,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 2
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -143,32 +163,47 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -178,7 +213,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -188,8 +223,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -198,7 +238,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -208,7 +248,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -218,22 +258,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 1
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -243,17 +298,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -263,7 +328,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -273,22 +338,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -298,7 +363,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -308,7 +373,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -318,27 +383,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
- 9
- - 53
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
- 0
- 0
- 9
@@ -348,17 +418,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -368,17 +448,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -388,7 +478,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -398,12 +488,12 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 2
- 4
@@ -413,7 +503,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -423,107 +513,112 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 17
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 5
- - 36
+ - 35
- 2048
- 0
- 6
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 14
- - 36
+ - 35
- 2048
- 0
- 15
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 2
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 18
+ - 7
+ - 10
+ - 36
+ - 2048
+ - 0
+ - 11
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 21
- - 39
+ - 37
- 0
- 2
- 4
- 21
- - 39
+ - 37
- 0
- 0
- 25
@@ -533,57 +628,67 @@ result: !SemanticTokens
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 2
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 17
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 2
- 4
@@ -593,7 +698,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -603,97 +708,192 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 3
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 22
- 4
- - 34
+ - 18
+ - 36
+ - 0
+ - 0
+ - 18
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 7
- - 34
+ - 33
- 1
- 0
- - 17
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 10
- 14
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -703,7 +903,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -720,20 +920,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -743,7 +958,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -753,7 +968,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -765,20 +980,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -788,7 +1018,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -798,7 +1028,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -810,14 +1040,29 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[document_highlight.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[document_highlight.robot].out
index 85e03cd1e..f92227379 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[document_highlight.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[document_highlight.robot].out
@@ -3,62 +3,77 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
+ - 0
+ - 0
+ - 16
+ - 9
+ - 36
- 0
- 0
- - 25
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
- 36
- - 53
+ - 0
+ - 0
+ - 9
+ - 36
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -68,27 +83,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -96,24 +111,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 4
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -123,32 +143,52 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 9
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,8 +208,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -178,7 +223,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -188,7 +233,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -198,22 +243,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -223,17 +283,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -243,7 +313,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,22 +323,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -278,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -288,7 +358,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -298,27 +368,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 9
- - 53
+ - 51
- 0
- 0
- 9
@@ -328,17 +403,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -348,37 +433,47 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 21
- - 39
+ - 37
- 0
- 1
- 4
- 27
- - 39
+ - 37
- 0
- 1
- 4
- 27
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -388,12 +483,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -403,7 +498,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -413,7 +508,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -423,7 +518,7 @@ result: !SemanticTokens
- 5
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -433,147 +528,167 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -583,7 +698,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -600,20 +715,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -623,7 +753,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -633,7 +763,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -645,20 +775,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -668,7 +813,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -678,7 +823,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -691,7 +836,12 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 9
+ - 1
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 4
- 7
- 0
@@ -700,92 +850,152 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- - 26
+ - 18
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 15
- - 40
+ - 38
- 1024
+ - 0
+ - 19
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 24
- 15
- - 40
+ - 38
- 1024
+ - 0
+ - 19
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- - 26
+ - 18
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 11
- - 40
+ - 38
- 1024
- 0
- 15
- 4
- - 40
+ - 38
+ - 0
+ - 0
+ - 8
+ - 7
+ - 36
- 0
- 3
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 4
- 0
- 49
- - 34
- - 1
+ - 33
- 1
- 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
- - 3
- 4
- 1
- 21
@@ -793,13 +1003,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -808,13 +1023,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -823,7 +1048,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -833,7 +1058,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -845,20 +1070,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
@@ -868,7 +1108,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -878,7 +1118,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -890,22 +1130,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -913,13 +1143,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -928,21 +1163,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[duplicated_resources.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[duplicated_resources.robot].out
index fb940fc64..413d2bcd8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[duplicated_resources.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[duplicated_resources.robot].out
@@ -3,107 +3,107 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 28
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 10
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 8
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 12
- 14
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 18
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -113,12 +113,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -128,12 +128,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -143,6 +143,6 @@ result: !SemanticTokens
- 0
- 1
- 18
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[external_libray.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[external_libray.robot].out
index deee32838..60f2a2488 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[external_libray.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[external_libray.robot].out
@@ -3,47 +3,47 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 17
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -53,6 +53,6 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[foldingrange.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[foldingrange.robot].out
index 5c07a2da1..4ffb0b878 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[foldingrange.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[foldingrange.robot].out
@@ -3,356 +3,396 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- - 2
- - 0
- - 13
- - 25
- - 256
- - 1
+ - 3
- 0
- 3
- - 43
+ - 41
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 9
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 15
+ - 8
- 2
- - 46
+ - 44
- 0
- 2
- 8
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 6
+ - 4
+ - 36
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 3
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 0
- 8
- - 33
+ - 32
- 1
- 3
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 3
- 0
- 9
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 16
- - 31
+ - 30
- 0
- 7
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 13
- - 33
+ - 32
- 1
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
- 1
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 2
- - 35
+ - 34
- 0
- 1
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 4
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 0
- 16
- - 33
+ - 32
- 1
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 6
+ - 36
+ - 0
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- - 16
+ - 8
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 12
- - 39
+ - 37
- 1024
- 3
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[goto.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[goto.robot].out
index 627361dcf..c53530ddb 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[goto.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[goto.robot].out
@@ -3,62 +3,82 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 11
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
- 36
- - 53
+ - 0
+ - 0
+ - 9
+ - 36
+ - 51
- 0
- 4
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 24
+ - 18
+ - 6
+ - 36
+ - 0
+ - 0
+ - 6
- 19
- - 53
+ - 51
- 0
- 0
- 23
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -66,24 +86,49 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 5
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
- 0
- - 3
- 18
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -93,7 +138,7 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -103,17 +148,37 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
- 1
- 21
- 0
- - 7
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 6
+ - 36
+ - 0
+ - 2
+ - 0
+ - 11
+ - 36
+ - 0
+ - 2
+ - 0
+ - 11
+ - 36
+ - 0
+ - 0
- 15
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -123,22 +188,52 @@ result: !SemanticTokens
- 0
- 6
- 6
- - 56
+ - 54
- 0
- 0
- 6
- 1
- 21
- 0
+ - 3
+ - 0
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
+ - 0
+ - 9
+ - 11
+ - 36
+ - 0
+ - 0
+ - 12
- 10
+ - 36
+ - 0
+ - 4
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -148,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -158,37 +253,67 @@ result: !SemanticTokens
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -198,12 +323,17 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
- 0
- 5
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -213,42 +343,77 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 29
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 0
+ - 12
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 9
+ - 36
- 0
- 3
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 3
- 4
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -258,22 +423,22 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 16
- - 39
+ - 37
- 0
- 2
- 4
- 18
- - 39
+ - 37
- 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -283,7 +448,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -298,7 +463,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -308,7 +473,7 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
- 2
- 4
@@ -318,7 +483,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -328,7 +493,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -338,12 +503,12 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 4
- 0
- 16
- - 33
+ - 32
- 1
- 1
- 4
@@ -353,7 +518,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -363,7 +528,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -373,177 +538,202 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 32
- - 39
+ - 37
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 3
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 3
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 7
- - 39
+ - 37
- 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -553,12 +743,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -568,7 +758,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -578,7 +768,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -588,22 +778,22 @@ result: !SemanticTokens
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 16
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 3
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -613,7 +803,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -630,20 +820,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -653,7 +858,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -663,7 +868,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -675,20 +880,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 32
- - 34
+ - 33
- 1
- 1
- 4
@@ -698,7 +918,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -708,7 +928,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -721,7 +941,12 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 10
+ - 1
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
- 5
- 7
- 0
@@ -730,20 +955,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 9
+ - 36
+ - 0
- 6
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 4
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -753,7 +993,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -763,7 +1003,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -775,25 +1015,40 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 0
- 7
- - 34
+ - 33
- 1
- 1
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -803,12 +1058,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -818,12 +1073,12 @@ result: !SemanticTokens
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 2
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -833,29 +1088,14 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 0
- 49
- - 34
- - 1
+ - 33
- 1
- 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
- - 3
- 4
- 1
- 21
@@ -863,13 +1103,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -878,13 +1123,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -893,7 +1148,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -903,7 +1158,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -915,20 +1170,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
@@ -938,7 +1208,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -948,7 +1218,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -960,22 +1230,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -983,13 +1243,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -998,21 +1263,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[hover.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[hover.robot].out
index 0d30de80e..c2aff9bd2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[hover.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[hover.robot].out
@@ -3,32 +3,32 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -38,27 +38,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -66,134 +66,164 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 14
- - 53
+ - 51
- 0
- 0
- 18
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 17
- - 53
+ - 51
- 0
- 0
- 29
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 8
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 17
- - 53
+ - 51
- 0
- 0
- 30
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 10
- - 53
+ - 51
- 0
- 4
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 3
+ - 0
+ - 9
+ - 36
+ - 0
- 0
- - 4
- 18
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -203,7 +233,7 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -213,22 +243,87 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
- 1
- 21
- 0
- - 28
+ - 3
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 36
+ - 0
+ - 3
+ - 0
+ - 5
+ - 36
- 0
- 1
- 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 20
+ - 36
+ - 0
- 5
- - 33
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 25
+ - 36
+ - 0
+ - 0
+ - 26
+ - 4
+ - 36
+ - 0
+ - 8
+ - 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 6
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
- 1
- 1
- 4
@@ -238,7 +333,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -253,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -263,8 +358,13 @@ result: !SemanticTokens
- 0
- 3
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -273,7 +373,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -283,7 +383,7 @@ result: !SemanticTokens
- 0
- 3
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -293,37 +393,67 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 3
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -333,52 +463,97 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 29
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 0
+ - 12
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 9
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 3
- 4
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -388,12 +563,12 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
- 4
- 0
- 6
- - 33
+ - 32
- 1
- 2
- 4
@@ -403,7 +578,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -413,7 +588,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -423,27 +598,32 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
- 9
- - 53
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
- 0
- 0
- 9
@@ -453,17 +633,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -473,12 +663,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -488,17 +683,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
- 0
- 19
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -506,34 +701,49 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 13
+ - 1
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 56
+ - 54
- 0
- 0
- 6
- 1
- 21
- 0
+ - 0
+ - 1
+ - 10
+ - 36
+ - 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
- 0
- 28
@@ -543,22 +753,22 @@ result: !SemanticTokens
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 5
- 4
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 7
- 15
- - 40
+ - 38
- 0
- 0
- 21
@@ -568,122 +778,142 @@ result: !SemanticTokens
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- - 2
- - 35
+ - 2
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
@@ -693,7 +923,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -703,17 +933,17 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
@@ -723,7 +953,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -733,17 +963,17 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -753,97 +983,97 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -853,72 +1083,72 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 5
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 0
- 21
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 40
+ - 38
- 0
- 0
- 1
- 3
- - 40
+ - 38
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 12
- 3
- - 40
+ - 38
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 6
- 3
- - 40
+ - 38
- 1024
- 5
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -928,22 +1158,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 0
- - 27
+ - 16
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 40
+ - 38
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -953,12 +1188,12 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 40
+ - 38
- 1024
- 4
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
@@ -968,7 +1203,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -978,42 +1213,42 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -1023,32 +1258,32 @@ result: !SemanticTokens
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 4
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 18
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1058,12 +1293,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1073,12 +1308,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1088,27 +1323,27 @@ result: !SemanticTokens
- 0
- 1
- 18
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -1118,12 +1353,12 @@ result: !SemanticTokens
- 0
- 1
- 16
- - 39
+ - 37
- 0
- 3
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -1133,12 +1368,12 @@ result: !SemanticTokens
- 0
- 1
- 21
- - 39
+ - 37
- 0
- 3
- 4
- 8
- - 53
+ - 51
- 0
- 0
- 8
@@ -1148,12 +1383,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1163,12 +1398,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 19
- - 53
+ - 51
- 0
- 0
- 19
@@ -1178,17 +1413,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 4
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -1198,12 +1433,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -1213,7 +1448,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -1223,7 +1458,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -1233,92 +1468,92 @@ result: !SemanticTokens
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 9
- - 34
+ - 33
- 1
- 1
- 4
- 11
- - 39
+ - 37
- 1024
- 0
- 15
- 3
- - 40
+ - 38
- 1024
- 4
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 16
- - 40
+ - 38
- 0
- 0
- 20
- 20
- - 40
+ - 38
- 0
- 5
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- 9
- 3
- - 35
+ - 34
- 0
- 0
- 5
- 16
- - 40
+ - 38
- 0
- 0
- 18
- 3
- - 35
+ - 34
- 0
- 0
- 5
- 20
- - 40
+ - 38
- 0
- 7
- 0
- 16
- - 34
+ - 33
- 1
- 2
- 4
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 13
- - 34
+ - 33
- 1
- 1
- 4
- 9
- - 39
+ - 37
- 1024
- 3
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -1328,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1345,20 +1580,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -1368,7 +1618,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1378,7 +1628,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -1390,20 +1640,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -1413,7 +1678,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1423,7 +1688,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1435,49 +1700,74 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 0
- 25
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 4
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 8
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[old_for.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[old_for.robot].out
new file mode 100644
index 000000000..7be4fa033
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[old_for.robot].out
@@ -0,0 +1,98 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 4
+ - 37
+ - 0
+ - 0
+ - 8
+ - 9
+ - 36
+ - 0
+ - 1
+ - 8
+ - 1
+ - 37
+ - 0
+ - 0
+ - 9
+ - 9
+ - 36
+ - 0
+ - 1
+ - 8
+ - 1
+ - 37
+ - 0
+ - 2
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 2
+ - 34
+ - 0
+ - 0
+ - 14
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 14
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 8
+ - 44
+ - 0
+ - 1
+ - 8
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 18
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[playground.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[playground.robot].out
index 5062f2aba..40dfae3ad 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[playground.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[playground.robot].out
@@ -3,87 +3,147 @@ result: !SemanticTokens
- 0
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 13
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 2
- - 35
+ - 34
- 0
- 0
- 11
- 8
- - 39
+ - 37
- 1024
- 0
- 17
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 8
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 4
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 8
- - 34
+ - 33
- 1
- 1
- 4
@@ -93,7 +153,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -103,26 +163,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[references.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[references.robot].out
index 4454cadf3..1c2889b95 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[references.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[references.robot].out
@@ -3,62 +3,77 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -68,27 +83,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -96,24 +111,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 3
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -123,32 +143,52 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 9
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 1
+ - 0
+ - 7
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,8 +208,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -178,7 +223,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -188,7 +233,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -198,22 +243,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -223,17 +283,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -243,7 +313,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,22 +323,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -278,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -288,7 +358,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -298,27 +368,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 9
- - 53
+ - 51
- 0
- 0
- 9
@@ -328,17 +403,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -348,17 +433,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -368,7 +463,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -378,12 +473,12 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 2
- 4
@@ -393,7 +488,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -403,117 +498,127 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 17
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 5
- - 36
+ - 35
- 2048
- 0
- 6
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 14
- - 36
+ - 35
- 2048
- 0
- 15
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 18
+ - 7
+ - 10
+ - 36
+ - 2048
+ - 0
+ - 11
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 15
+ - 7
+ - 7
+ - 36
+ - 2048
+ - 0
+ - 8
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 21
- - 39
+ - 37
- 0
- 2
- 4
- 21
- - 39
+ - 37
- 0
- 0
- 25
@@ -523,57 +628,57 @@ result: !SemanticTokens
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 6
- 2
- - 56
+ - 54
- 0
- 0
- 2
@@ -583,7 +688,7 @@ result: !SemanticTokens
- 2
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -593,12 +698,12 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 39
+ - 37
- 0
- 0
- 6
- 2
- - 56
+ - 54
- 0
- 0
- 2
@@ -606,9 +711,14 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 12
+ - 1
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 15
- - 56
+ - 54
- 0
- 0
- 15
@@ -616,24 +726,34 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 18
- 1
- - 17
- - 0
+ - 7
+ - 36
- 0
- - 3
- - 4
- - 17
+ - 0
+ - 8
+ - 7
+ - 36
+ - 0
+ - 0
+ - 9
+ - 1
+ - 17
+ - 0
+ - 0
+ - 3
+ - 4
+ - 17
- 0
- 5
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -643,12 +763,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -658,7 +778,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -668,7 +788,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -678,12 +798,12 @@ result: !SemanticTokens
- 4
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- 7
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -693,22 +813,32 @@ result: !SemanticTokens
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 17
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -718,7 +848,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -728,97 +858,192 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 4
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 22
- 4
- - 34
+ - 18
+ - 36
+ - 0
+ - 0
+ - 18
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 7
- - 34
+ - 33
- 1
- 0
- - 17
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 10
- 14
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -828,7 +1053,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -845,20 +1070,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -868,7 +1108,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -878,7 +1118,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -890,20 +1130,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -913,7 +1168,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -923,7 +1178,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -935,37 +1190,37 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- - 3
- 0
- - 49
- - 34
- - 1
- - 1
+ - 7
- 4
- - 1
- - 21
- - 256
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
+ - 49
+ - 33
- 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -973,13 +1228,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
- 2
- 4
- 1
@@ -988,13 +1248,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -1003,7 +1273,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1013,7 +1283,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1025,25 +1295,45 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- - 10
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 12
- - 39
+ - 37
- 1024
- 1
- 4
@@ -1053,7 +1343,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1063,7 +1353,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1075,22 +1365,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -1098,13 +1378,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
- 2
- 4
- 1
@@ -1113,27 +1398,52 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 12
- - 39
+ - 37
- 1024
- 1
- 4
@@ -1143,7 +1453,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -1153,27 +1463,42 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 4
+ - 36
- 0
- 2
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 17
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1183,52 +1508,52 @@ result: !SemanticTokens
- 0
- 1
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 10
+ - 36
+ - 0
- 2
- 8
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 12
+ - 36
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 33
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 2
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
@@ -1238,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1248,44 +1573,54 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 35
+ - 36
- 0
- 3
- 4
- 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 39
+ - 36
- 0
- 2
- 4
- 6
- - 35
+ - 34
- 0
- - 3
- 0
- - 57
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
+ - 10
+ - 9
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
- - 1
- - 21
- - 256
+ - 57
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1293,7 +1628,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1303,17 +1638,22 @@ result: !SemanticTokens
- 0
- 5
- 10
- - 56
+ - 54
- 0
- 2
- 4
- 5
- - 35
+ - 34
+ - 0
+ - 0
+ - 9
+ - 7
+ - 36
- 0
- 0
- - 20
+ - 11
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1323,39 +1663,24 @@ result: !SemanticTokens
- 0
- 1
- 10
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 31
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1363,7 +1688,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1373,59 +1698,59 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 1
- 4
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 2
- 4
- 4
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- - 3
- 0
- - 44
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
+ - 10
+ - 9
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
- - 1
- - 21
- - 256
+ - 44
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1433,7 +1758,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1443,27 +1768,37 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 10
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
+ - 4
+ - 36
- 0
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 24
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1473,52 +1808,67 @@ result: !SemanticTokens
- 0
- 1
- 10
- - 35
+ - 34
- 0
- 4
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 23
- - 34
+ - 33
- 1
- 1
- - 21
+ - 4
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
- 12
- - 39
+ - 37
- 1024
- 1
- - 22
+ - 4
+ - 13
+ - 36
+ - 0
+ - 0
+ - 18
- 12
- - 39
+ - 37
- 1024
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- - 41
+ - 25
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1528,37 +1878,37 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 35
+ - 34
- 0
- 2
- 8
- 13
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 28
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1568,22 +1918,22 @@ result: !SemanticTokens
- 0
- 1
- 13
- - 35
+ - 34
- 0
- 2
- 8
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 36
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1593,16 +1943,16 @@ result: !SemanticTokens
- 0
- 1
- 6
- - 35
+ - 34
- 0
- 1
- 8
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[remotetest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[remotetest.robot].out
index 91f1a4bce..539e5d2db 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[remotetest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[remotetest.robot].out
@@ -3,21 +3,21 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 4
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 30
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[reserved.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[reserved.robot].out
index 4d9f51a5e..7719a4730 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[reserved.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[reserved.robot].out
@@ -3,17 +3,17 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 8
- - 53
+ - 51
- 0
- 0
- 8
@@ -23,37 +23,37 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 39
+ - 37
- 0
- 1
- 4
- 5
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 39
+ - 37
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 7
@@ -63,17 +63,17 @@ result: !SemanticTokens
- 1
- 4
- 7
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 1
- 4
- 2
- - 39
+ - 37
- 0
- 0
- 6
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[sematic_tokenizing.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[sematic_tokenizing.robot].out
index 3dafc108f..a0933c3eb 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[sematic_tokenizing.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[sematic_tokenizing.robot].out
@@ -3,37 +3,37 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 40
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 17
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -43,12 +43,12 @@ result: !SemanticTokens
- 0
- 1
- 1
- - 35
+ - 34
- 0
- 0
- 5
- 8
- - 38
+ - 36
- 0
- 0
- 8
@@ -58,37 +58,37 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 17
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -98,12 +98,12 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 16
- - 38
+ - 36
- 0
- 0
- 16
@@ -113,22 +113,22 @@ result: !SemanticTokens
- 0
- 1
- 31
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
@@ -138,7 +138,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -148,62 +148,67 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 13
- 36
- 0
- 0
- - 22
+ - 17
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 27
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -213,32 +218,32 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -248,7 +253,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -258,17 +263,17 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 2
- - 39
+ - 37
- 0
- 3
- 0
- 8
- - 34
+ - 33
- 1
- 1
- 4
@@ -278,7 +283,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -288,21 +293,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 2
- 4
- 2
- - 39
+ - 37
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[setup_teardown.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[setup_teardown.robot].out
index 311584076..75cf1183e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[setup_teardown.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[setup_teardown.robot].out
@@ -3,92 +3,92 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 11
- - 36
+ - 35
- 2048
- 1
- 0
- 14
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 14
- - 36
+ - 35
- 2048
- 1
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 10
- - 36
+ - 35
- 2048
- 2
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 20
- 5
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 25
+ - 24
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -98,7 +98,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -108,17 +108,17 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -128,7 +128,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -138,17 +138,17 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +158,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,12 +168,12 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -183,7 +183,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -198,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -208,22 +208,32 @@ result: !SemanticTokens
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 16
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -233,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -243,21 +253,26 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 2
- 0
- 5
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[signature_help.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[signature_help.robot].out
index e7478c3f3..44c7241a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[signature_help.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[signature_help.robot].out
@@ -3,27 +3,27 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 12
- 10
- - 53
+ - 51
- 0
- 0
- 21
@@ -33,27 +33,27 @@ result: !SemanticTokens
- 3
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 12
- - 39
+ - 37
- 0
- 4
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 26
- - 39
+ - 37
- 0
- 0
- 73
@@ -63,7 +63,7 @@ result: !SemanticTokens
- 5
- 4
- 12
- - 39
+ - 37
- 0
- 0
- 20
@@ -71,9 +71,19 @@ result: !SemanticTokens
- 17
- 0
- 2
- - 20
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 39
+ - 37
- 0
- 0
- 38
@@ -83,7 +93,7 @@ result: !SemanticTokens
- 5
- 4
- 22
- - 39
+ - 37
- 0
- 0
- 44
@@ -93,12 +103,12 @@ result: !SemanticTokens
- 6
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 26
- - 34
+ - 33
- 1
- 1
- 4
@@ -108,7 +118,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -118,7 +128,7 @@ result: !SemanticTokens
- 0
- 5
- 10
- - 56
+ - 54
- 0
- 0
- 14
@@ -140,10 +150,15 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 17
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[symbols.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[symbols.robot].out
index ae76a9d7c..6865270d2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[symbols.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[symbols.robot].out
@@ -3,117 +3,167 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 2
+ - 0
+ - 8
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 2
- - 20
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
- 8
- - 39
+ - 37
- 1024
- 3
- - 37
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
- 8
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 5
+ - 12
+ - 36
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 5
+ - 11
+ - 36
+ - 0
+ - 0
+ - 13
- 2
- - 46
+ - 44
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 4
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 19
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 6
+ - 6
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 31
+ - 30
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 2
- 0
- 10
- - 34
+ - 33
- 1
- 2
- 4
@@ -123,7 +173,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -133,86 +183,86 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 9
- - 56
+ - 54
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 2
- 0
- 15
- - 34
- - 1
- - 2
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 3
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 3
- 4
- 11
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 4
- 4
- 11
- - 39
+ - 37
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 20
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 5
+ - 8
+ - 36
- 0
- 2
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 5
+ - 8
+ - 36
- 0
- 2
- - 15
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 11
- 8
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[templates.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[templates.robot].out
index 745afa1e7..25cc698d3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[templates.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[templates.robot].out
@@ -3,37 +3,47 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 20
- 22
- - 39
+ - 37
- 0
- 2
- 0
- 13
- - 54
+ - 52
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 4
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -43,7 +53,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -58,7 +68,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -68,62 +78,92 @@ result: !SemanticTokens
- 0
- 5
- 16
- - 39
+ - 37
- 0
- 1
- 4
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 8
- 36
- 0
- 0
- - 17
+ - 12
- 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 11
- 36
- 0
- - 2
+ - 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- - 23
- - 1
+ - 5
+ - 14
- 36
- 0
+ - 0
+ - 18
- 1
- - 19
+ - 35
+ - 0
- 1
+ - 4
+ - 11
- 36
- 0
+ - 0
+ - 15
+ - 1
+ - 35
+ - 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 8
- 36
- 0
- 0
- - 17
+ - 12
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
+ - 35
+ - 0
+ - 0
+ - 7
+ - 14
- 36
- 0
- 0
- - 25
+ - 18
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -133,7 +173,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -143,57 +183,57 @@ result: !SemanticTokens
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 36
+ - 35
- 0
- 0
- 7
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -203,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -213,17 +253,17 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 9
- - 33
+ - 32
- 1
- 1
- 4
@@ -233,7 +273,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -243,72 +283,72 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -318,7 +358,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -328,52 +368,62 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
- 0
+ - 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -383,7 +433,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -393,47 +443,57 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 4
+ - 36
+ - 2048
- 0
- - 10
+ - 5
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -443,7 +503,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -453,42 +513,47 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 35
- - 33
+ - 32
- 1
- 1
- 4
@@ -498,7 +563,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -508,47 +573,47 @@ result: !SemanticTokens
- 0
- 5
- 41
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 22
- - 34
+ - 33
- 1
- 1
- 4
@@ -558,7 +623,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -568,42 +633,57 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 16
- - 34
+ - 33
- 1
- 1
- 4
@@ -613,7 +693,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -623,47 +703,62 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -673,7 +768,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -683,27 +778,37 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 28
+ - 7
+ - 17
+ - 36
+ - 0
+ - 0
+ - 21
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 2
- 0
- 19
- - 34
+ - 33
- 1
- 1
- 4
@@ -713,7 +818,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -723,52 +828,97 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 35
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 15
- 8
- - 46
+ - 8
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 11
- - 34
+ - 33
- 1
- 0
- - 15
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 4
- 6
- - 34
+ - 33
- 1
- 0
- - 17
+ - 6
+ - 11
+ - 36
+ - 0
+ - 0
+ - 11
- 4
- - 34
+ - 33
- 1
+ - 0
+ - 4
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -778,7 +928,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -788,21 +938,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[templates2.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[templates2.robot].out
index decfe09ce..a7484130f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[templates2.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[templates2.robot].out
@@ -3,97 +3,152 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 17
- 42
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 13
+ - 36
+ - 0
+ - 1
+ - 0
+ - 17
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 0
- 34
- 8
- - 29
+ - 28
- 0
- 0
- 17
- 8
- - 29
+ - 28
- 0
- 1
- 0
- 17
- - 33
+ - 32
- 1
- 0
- 34
- 7
+ - 35
+ - 0
+ - 0
+ - 17
+ - 17
- 36
- 0
- 1
- 0
- 16
- - 33
+ - 32
- 1
- 0
- - 51
- - 7
+ - 34
+ - 13
- 36
- 0
+ - 0
+ - 17
+ - 7
+ - 35
+ - 0
- 1
- 0
- 30
- - 33
+ - 32
- 1
- 0
- 34
- 7
- - 36
+ - 35
- 0
- 0
- 17
- 7
- - 36
+ - 35
- 0
- 1
- 0
- 15
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 8
+ - 36
+ - 0
+ - 0
+ - 17
+ - 17
+ - 36
+ - 0
- 1
- 0
- 14
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 1
- 0
- 28
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 8
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 22
- - 33
+ - 32
- 1
- 1
- 4
@@ -103,7 +158,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -113,52 +168,77 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- - 19
+ - 8
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 19
+ - 7
- 8
- - 46
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 44
- 0
- 1
- 8
- 7
+ - 35
+ - 0
+ - 0
+ - 11
+ - 8
- 36
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -168,7 +248,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -178,52 +258,77 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- 8
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 7
+ - 36
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 32
- - 33
+ - 32
- 1
- 1
- 4
@@ -233,7 +338,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -243,67 +348,97 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- 8
- 2
- - 35
+ - 34
- 0
- - 1
- - 23
+ - 0
+ - 4
- 7
- 36
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
- 0
- 11
+ - 7
+ - 35
+ - 0
- 1
+ - 12
+ - 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
+ - 0
+ - 11
+ - 1
+ - 35
+ - 0
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 42
- - 34
+ - 33
- 1
- 1
- 4
@@ -313,7 +448,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -323,22 +458,32 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 56
+ - 54
- 0
- 0
- 15
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 15
+ - 11
+ - 36
+ - 0
- 2
- 0
- 15
- - 34
+ - 33
- 1
- 1
- 4
@@ -348,7 +493,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -358,16 +503,26 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[variables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[variables.robot].out
index 04efdca20..d5e87872d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[variables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[variables.robot].out
@@ -3,237 +3,462 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 14
- - 25
+ - 24
- 0
- 0
- 20
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 26
+ - 7
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
- 0
- - 39
+ - 7
+ - 16
+ - 36
+ - 0
+ - 0
+ - 17
+ - 12
+ - 36
+ - 0
+ - 0
+ - 15
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 13
- - 40
+ - 38
- 1024
- 1
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 14
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 12
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 16
+ - 36
+ - 0
+ - 0
+ - 20
+ - 17
+ - 36
+ - 0
+ - 0
+ - 18
+ - 19
+ - 36
+ - 0
+ - 1
+ - 0
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
+ - 12
+ - 36
+ - 0
+ - 0
+ - 13
+ - 14
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
+ - 3
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
- 0
- 9
+ - 3
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
+ - 7
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 7
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 20
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 22
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
@@ -243,7 +468,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,367 +478,527 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
+ - 0
+ - 15
+ - 15
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 11
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 2
- - 46
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 19
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
+ - 1
- 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 24
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
- 1
- 4
- - 3
- - 39
- - 1024
- - 1
- - 14
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
- 12
- - 39
+ - 37
- 1024
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 24
+ - 36
+ - 0
- 1
- - 23
+ - 4
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- - 35
+ - 7
+ - 24
+ - 36
+ - 0
+ - 0
+ - 28
- 20
- 17
- 0
- 2
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 5
- - 35
+ - 34
- 0
- 1
- 8
- 5
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 16
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 2
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 39
+ - 37
- 1024
- 1
- 4
- 20
- - 39
+ - 37
- 1024
- 1
- 4
- 16
- - 39
+ - 37
- 1024
- 1
- 4
- 22
- - 39
+ - 37
- 1024
- 1
- 4
- 25
- - 39
+ - 37
- 1024
- 0
- 36
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 17
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 27
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 18
- - 39
+ - 37
- 1024
- 0
- 29
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 27
- 8
- - 40
+ - 38
- 1024
- 2
- 0
- 7
- - 33
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 32
- 1
+ - 2
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 2
- 4
- 9
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 4
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 13
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 2
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 2
- 0
- 9
- - 33
+ - 32
- 1
- 1
- 4
@@ -623,7 +1008,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -633,42 +1018,42 @@ result: !SemanticTokens
- 0
- 3
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
@@ -678,7 +1063,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -688,52 +1073,67 @@ result: !SemanticTokens
- 0
- 3
- 11
- - 39
+ - 37
- 0
- 0
- - 16
+ - 11
+ - 4
+ - 36
+ - 2048
+ - 0
- 5
- - 39
+ - 5
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
@@ -743,7 +1143,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -753,62 +1153,82 @@ result: !SemanticTokens
- 0
- 3
- 11
- - 39
+ - 37
- 0
- 0
- - 16
+ - 11
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 5
- - 39
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
- 0
+ - 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- - 14
- - 1
+ - 4
+ - 8
- 36
- 0
- 0
+ - 10
+ - 1
+ - 35
+ - 0
+ - 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 35
- - 33
+ - 32
- 1
- 1
- 4
@@ -818,7 +1238,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -828,67 +1248,77 @@ result: !SemanticTokens
- 0
- 3
- 41
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 15
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- - 62
+ - 5
+ - 23
+ - 36
+ - 0
+ - 0
+ - 30
+ - 25
+ - 36
+ - 0
+ - 0
+ - 27
- 6
- 17
- 0
- 2
- 0
- 15
- - 33
+ - 32
- 1
- 1
- 4
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 3
- - 56
+ - 54
- 0
- 0
- 3
@@ -898,17 +1328,17 @@ result: !SemanticTokens
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -918,7 +1348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -928,27 +1358,37 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 28
+ - 7
+ - 17
+ - 36
+ - 0
+ - 0
+ - 21
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 2
- 0
- 19
- - 34
+ - 33
- 1
- 1
- 4
@@ -958,7 +1398,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -968,52 +1408,97 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 11
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 8
- - 46
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 11
- - 34
+ - 33
- 1
- 0
- - 24
+ - 11
+ - 13
+ - 36
+ - 0
+ - 0
+ - 13
- 6
- - 34
+ - 33
- 1
- 0
- - 10
+ - 6
- 4
- - 34
+ - 36
+ - 0
+ - 0
+ - 4
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -1023,7 +1508,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1033,27 +1518,42 @@ result: !SemanticTokens
- 0
- 3
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 31
- - 34
+ - 33
- 1
- 1
- 4
@@ -1063,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1073,12 +1573,12 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 0
- 11
- 3
- - 56
+ - 54
- 0
- 0
- 7
@@ -1093,12 +1593,12 @@ result: !SemanticTokens
- 0
- 14
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 11
- - 56
+ - 54
- 0
- 0
- 15
@@ -1113,22 +1613,22 @@ result: !SemanticTokens
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 5
- - 34
+ - 33
- 1
- 1
- 4
- 31
- - 39
+ - 37
- 0
- 0
- 37
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -1138,7 +1638,7 @@ result: !SemanticTokens
- 0
- 4
- 8
- - 56
+ - 54
- 0
- 0
- 8
@@ -1148,6 +1648,6 @@ result: !SemanticTokens
- 2
- 0
- 18
- - 29
+ - 28
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-__init__.robot].out
index df8fc7278..e0e9f51af 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-__init__.robot].out
@@ -3,6 +3,6 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
index 8461ce14c..fb00afb00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
@@ -3,92 +3,122 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 9
- - 36
+ - 35
- 2048
- 0
- 10
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 9
- - 36
+ - 35
- 2048
- 0
- 10
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 0
- 6
- 13
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 3
- - 34
+ - 33
- 1
- 0
- - 15
+ - 3
+ - 12
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 34
+ - 33
- 1
+ - 0
+ - 6
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
+ - 0
+ - 18
+ - 8
+ - 36
+ - 0
- 2
- 0
- 3
- - 34
+ - 33
- 1
- 0
- - 15
+ - 3
+ - 12
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 34
+ - 33
- 1
- 0
+ - 6
+ - 8
+ - 36
+ - 0
+ - 0
+ - 8
- 14
- - 14
- - 34
+ - 33
- 1
- 1
- 4
@@ -98,7 +128,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -108,11 +138,26 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
+ - 0
+ - 18
+ - 8
+ - 36
+ - 0
+ - 0
+ - 23
+ - 7
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
index 3b0d75a71..eaf8038f2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
@@ -3,31 +3,56 @@ result: !SemanticTokens
- 0
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
- 0
- 18
- - 29
+ - 36
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 20
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
- 8
- - 39
+ - 37
- 1024
- 1
- - 27
+ - 4
+ - 19
+ - 36
+ - 0
+ - 0
+ - 23
- 8
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
index 827c4b670..9bc959b6c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
@@ -3,36 +3,46 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 16
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 16
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-sometasks.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
index 26fe2075d..3bcc51825 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 13
- - 30
+ - 29
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
index b41aa9750..6fa23318f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
@@ -3,11 +3,11 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 4
- - 25
+ - 24
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
index 8ef46bca6..6d97c1255 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
@@ -3,21 +3,21 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
index 89c5d5f77..00fda5828 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 4
- - 25
+ - 24
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf70-vartest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf70-vartest.robot].out
index d084a4249..937fee29c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf70-vartest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf70-vartest.robot].out
@@ -3,144 +3,229 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 2
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 3
- 0
- 22
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 2
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 4
+ - 36
+ - 0
- 2
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 4
+ - 36
+ - 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 49
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- - 1
- - 13
- - 25
- - 256
+ - 7
+ - 9
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -148,13 +233,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -163,13 +253,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -178,7 +278,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -188,7 +288,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -200,25 +300,45 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
@@ -228,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -238,7 +358,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -250,22 +370,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -273,13 +383,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -288,21 +403,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf72-grouptest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
index 816876a41..06694b6e5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
@@ -3,56 +3,56 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 39
+ - 37
- 0
- 1
- 8
- 5
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 54
+ - 52
- 0
- 2
- 4
- 5
- - 39
+ - 37
- 0
- 1
- 8
- 6
- - 39
+ - 37
- 0
- 1
- 8
- 5
- - 39
+ - 37
- 0
- 1
- 12
- 6
- - 39
+ - 37
- 0
- 2
- 8
- 3
- - 54
+ - 52
- 0
- 2
- 4
- 3
- - 54
+ - 52
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out
new file mode 100644
index 000000000..21f88dc2a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out
@@ -0,0 +1,583 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 26
+ - 36
+ - 0
+ - 1
+ - 0
+ - 15
+ - 36
+ - 0
+ - 1
+ - 0
+ - 21
+ - 36
+ - 0
+ - 1
+ - 0
+ - 17
+ - 36
+ - 0
+ - 1
+ - 0
+ - 20
+ - 36
+ - 0
+ - 1
+ - 0
+ - 29
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 15
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 13
+ - 20
+ - 36
+ - 0
+ - 1
+ - 4
+ - 26
+ - 37
+ - 0
+ - 1
+ - 4
+ - 39
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 0
+ - 40
+ - 7
+ - 36
+ - 0
+ - 2
+ - 0
+ - 15
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 19
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 9
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 8
+ - 44
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 12
+ - 44
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 0
+ - 13
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 2
+ - 34
+ - 0
+ - 0
+ - 12
+ - 8
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 4
+ - 34
+ - 0
+ - 0
+ - 8
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 30
+ - 32
+ - 1
+ - 1
+ - 4
+ - 28
+ - 37
+ - 0
+ - 1
+ - 4
+ - 2
+ - 37
+ - 0
+ - 0
+ - 2
+ - 8
+ - 35
+ - 2048
+ - 0
+ - 9
+ - 18
+ - 37
+ - 0
+ - 3
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 26
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 15
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 3
+ - 36
+ - 0
+ - 2
+ - 0
+ - 39
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 7
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 6
+ - 9
+ - 7
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 36
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 22
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 12
+ - 0
+ - 2
+ - 33
+ - 1
+ - 0
+ - 2
+ - 32
+ - 36
+ - 0
+ - 0
+ - 32
+ - 19
+ - 33
+ - 1
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[very_big_file.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[very_big_file.robot].out
index d4bc0b145..15e147ff0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[very_big_file.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_semantic_tokens.test[very_big_file.robot].out
@@ -3,92346 +3,100801 @@ result: !SemanticTokens
- 0
- 0
- 16
+ - 26
+ - 0
+ - 4
+ - 0
+ - 17
- 27
- 0
- 1
- 0
- - 13
- - 25
- - 256
- - 3
+ - 12
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 1
- 0
- 17
- - 28
+ - 36
- 0
- - 7
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 17
- - 34
+ - 33
- 1
- 0
- - 24
+ - 17
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 51
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 0
- - 19
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 32
- - 34
+ - 33
- 1
+ - 0
+ - 32
+ - 12
+ - 36
+ - 0
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 40
- - 34
+ - 33
- 1
- 0
- - 47
+ - 40
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 6
- - 34
+ - 33
- 1
+ - 0
+ - 6
+ - 11
+ - 36
+ - 0
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 62
- - 34
+ - 33
- 1
- 0
- - 73
+ - 62
+ - 11
+ - 36
+ - 0
+ - 0
+ - 11
- 1
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 0
- - 19
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
+ - 33
- 33
- - 34
- 1
- 0
- - 50
+ - 33
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
- 1
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 50
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 28
- - 34
+ - 33
- 1
- 0
- - 35
+ - 28
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 20
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 34
+ - 33
- 1
- 0
- - 24
+ - 17
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 21
- - 34
+ - 33
- 1
- 0
- - 30
+ - 21
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 13
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 30
- - 34
+ - 33
- 1
- 0
- - 37
+ - 30
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 13
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_workspace_symbols.test[].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_workspace_symbols.test[].out
index 8e5a2cf90..f4b62b1f1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_workspace_symbols.test[].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_workspace_symbols.test[].out
@@ -81,10 +81,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 9
start:
- character: 21
+ character: 23
line: 9
uri: bddstyle.robot
name: ${input}
@@ -111,10 +111,10 @@ result:
location:
range:
end:
- character: 46
+ character: 45
line: 9
start:
- character: 33
+ character: 35
line: 9
uri: bddstyle.robot
name: ${multiplier}
@@ -141,10 +141,10 @@ result:
location:
range:
end:
- character: 59
+ character: 58
line: 9
start:
- character: 50
+ character: 52
line: 9
uri: bddstyle.robot
name: ${result}
@@ -276,10 +276,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 119
start:
- character: 19
+ character: 21
line: 119
uri: code_action_show_documentation.robot
name: ${A VAR}
@@ -291,10 +291,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 124
start:
- character: 28
+ character: 30
line: 124
uri: code_action_show_documentation.robot
name: ${A VAR}
@@ -306,10 +306,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
uri: code_action_show_documentation.robot
name: ${LIB_ARG}
@@ -321,10 +321,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: code_action_show_documentation.robot
name: ${a var}
@@ -336,10 +336,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 129
start:
- character: 19
+ character: 21
line: 129
uri: code_action_show_documentation.robot
name: ${a}
@@ -351,10 +351,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: code_action_show_documentation.robot
name: ${bananas}
@@ -381,10 +381,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 129
start:
- character: 27
+ character: 29
line: 129
uri: code_action_show_documentation.robot
name: ${b}
@@ -411,10 +411,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 52
start:
- character: 4
+ character: 6
line: 52
uri: code_action_show_documentation.robot
name: ${result}
@@ -486,10 +486,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 124
start:
- character: 19
+ character: 21
line: 124
uri: code_action_show_documentation.robot
name: ${tt}
@@ -516,10 +516,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 97
start:
- character: 19
+ character: 21
line: 97
uri: code_action_show_documentation.robot
name: ${type}
@@ -846,10 +846,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 113
start:
- character: 19
+ character: 21
line: 113
uri: document_highlight.robot
name: ${A VAR}
@@ -861,10 +861,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 122
start:
- character: 28
+ character: 30
line: 122
uri: document_highlight.robot
name: ${A VAR}
@@ -876,10 +876,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: document_highlight.robot
name: ${A}
@@ -891,10 +891,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 25
start:
- character: 0
+ character: 2
line: 25
uri: document_highlight.robot
name: ${B}
@@ -906,10 +906,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: document_highlight.robot
name: ${LIB_ARG}
@@ -921,10 +921,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 20
start:
- character: 0
+ character: 2
line: 20
uri: document_highlight.robot
name: ${a var}
@@ -936,10 +936,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 164
start:
- character: 32
+ character: 34
line: 164
uri: document_highlight.robot
name: ${a_second_arg}
@@ -951,10 +951,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 169
start:
- character: 32
+ character: 34
line: 169
uri: document_highlight.robot
name: ${a_second_arg}
@@ -966,10 +966,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 164
start:
- character: 19
+ character: 21
line: 164
uri: document_highlight.robot
name: ${an_arg}
@@ -981,10 +981,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 169
start:
- character: 19
+ character: 21
line: 169
uri: document_highlight.robot
name: ${an_arg}
@@ -996,10 +996,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 132
start:
- character: 19
+ character: 21
line: 132
uri: document_highlight.robot
name: ${a}
@@ -1011,10 +1011,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 132
start:
- character: 27
+ character: 29
line: 132
uri: document_highlight.robot
name: ${b}
@@ -1026,10 +1026,10 @@ result:
location:
range:
end:
- character: 44
+ character: 43
line: 132
start:
- character: 40
+ character: 42
line: 132
uri: document_highlight.robot
name: ${c}
@@ -1056,10 +1056,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 57
start:
- character: 4
+ character: 6
line: 57
uri: document_highlight.robot
name: ${result}
@@ -1086,10 +1086,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 122
start:
- character: 19
+ character: 21
line: 122
uri: document_highlight.robot
name: ${tt}
@@ -1431,10 +1431,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 10
start:
- character: 19
+ character: 21
line: 10
uri: embedded_keywords.robot
name: ${data}
@@ -1566,10 +1566,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 2
start:
- character: 4
+ character: 6
line: 2
uri: fibonaci.robot
name: ${a}
@@ -1581,10 +1581,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 36
start:
- character: 4
+ character: 6
line: 36
uri: fibonaci.robot
name: ${a}
@@ -1596,10 +1596,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 27
start:
- character: 8
+ character: 10
line: 27
uri: fibonaci.robot
name: ${n1}
@@ -1611,10 +1611,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 28
start:
- character: 8
+ character: 10
line: 28
uri: fibonaci.robot
name: ${n2}
@@ -1626,10 +1626,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 22
start:
- character: 19
+ character: 21
line: 22
uri: fibonaci.robot
name: ${n}
@@ -1641,10 +1641,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 35
start:
- character: 19
+ character: 21
line: 35
uri: fibonaci.robot
name: ${n}
@@ -1656,10 +1656,10 @@ result:
location:
range:
end:
- character: 12
+ character: 11
line: 25
start:
- character: 8
+ character: 10
line: 25
uri: fibonaci.robot
name: ${r}
@@ -1821,10 +1821,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 32
start:
- character: 19
+ character: 21
line: 32
uri: first.robot
name: ${b}
@@ -1956,10 +1956,10 @@ result:
location:
range:
end:
- character: 47
+ character: 20
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: firstresource.resource
name: ${A_VAR_FROM_RESOURE}
@@ -1971,10 +1971,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 23
start:
- character: 27
+ character: 29
line: 23
uri: firstresource.resource
name: ${a long name}
@@ -1986,10 +1986,10 @@ result:
location:
range:
end:
- character: 61
+ character: 60
line: 23
start:
- character: 46
+ character: 48
line: 23
uri: firstresource.resource
name: ${a_short_name}
@@ -2001,10 +2001,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 23
start:
- character: 19
+ character: 21
line: 23
uri: firstresource.resource
name: ${a}
@@ -2016,10 +2016,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 30
start:
- character: 19
+ character: 21
line: 30
uri: firstresource.resource
name: "${\U0001F413}"
@@ -2031,10 +2031,10 @@ result:
location:
range:
end:
- character: 34
+ character: 33
line: 30
start:
- character: 27
+ character: 29
line: 30
uri: firstresource.resource
name: "${\U0001F60E\U0001F60B\U0001F619\U0001F619}"
@@ -2046,10 +2046,10 @@ result:
location:
range:
end:
- character: 51
+ character: 50
line: 30
start:
- character: 39
+ character: 41
line: 30
uri: firstresource.resource
name: "${\U0001F9DF\u200D\u2642\uFE0F\U0001F6C3\U0001FAC5\U0001F3FF\U0001F478\U0001F3FF\
@@ -2137,10 +2137,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 53
start:
- character: 4
+ character: 6
line: 53
uri: foldingrange.robot
name: ${a}
@@ -2152,10 +2152,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 81
start:
- character: 4
+ character: 6
line: 81
uri: foldingrange.robot
name: ${a}
@@ -2167,10 +2167,10 @@ result:
location:
range:
end:
- character: 15
+ character: 14
line: 12
start:
- character: 11
+ character: 13
line: 12
uri: foldingrange.robot
name: ${i}
@@ -2272,10 +2272,10 @@ result:
location:
range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
uri: goto.robot
name: ${A VAR1}
@@ -2287,10 +2287,10 @@ result:
location:
range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
uri: goto.robot
name: ${A VAR}
@@ -2302,10 +2302,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
uri: goto.robot
name: ${A VAR}
@@ -2317,10 +2317,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
uri: goto.robot
name: ${A VAR}
@@ -2332,10 +2332,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
uri: goto.robot
name: ${A}
@@ -2347,10 +2347,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
uri: goto.robot
name: ${B}
@@ -2362,10 +2362,10 @@ result:
location:
range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
uri: goto.robot
name: ${DOT}
@@ -2377,10 +2377,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
uri: goto.robot
name: ${LIB_ARG}
@@ -2392,10 +2392,10 @@ result:
location:
range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
uri: goto.robot
name: ${MY_DIR}
@@ -2407,10 +2407,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 213
start:
- character: 32
+ character: 34
line: 213
uri: goto.robot
name: ${a_second_arg}
@@ -2422,10 +2422,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 218
start:
- character: 32
+ character: 34
line: 218
uri: goto.robot
name: ${a_second_arg}
@@ -2437,10 +2437,10 @@ result:
location:
range:
end:
- character: 50
+ character: 14
line: 32
start:
- character: 0
+ character: 2
line: 32
uri: goto.robot
name: ${all together}
@@ -2452,10 +2452,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
uri: goto.robot
name: ${an_arg}
@@ -2467,10 +2467,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
uri: goto.robot
name: ${an_arg}
@@ -2482,10 +2482,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 136
start:
- character: 4
+ character: 6
line: 136
uri: goto.robot
name: ${a}
@@ -2497,10 +2497,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
uri: goto.robot
name: ${a}
@@ -2512,10 +2512,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
uri: goto.robot
name: ${b}
@@ -2527,10 +2527,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
uri: goto.robot
name: ${key}
@@ -2542,10 +2542,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
uri: goto.robot
name: ${tt}
@@ -2557,10 +2557,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
uri: goto.robot
name: ${tt}
@@ -2572,10 +2572,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
uri: goto.robot
name: ${value}
@@ -2587,10 +2587,10 @@ result:
location:
range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: goto.robot
name: '&{A DICT}'
@@ -2602,10 +2602,10 @@ result:
location:
range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
uri: goto.robot
name: '&{dict_var}'
@@ -2617,10 +2617,10 @@ result:
location:
range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
uri: goto.robot
name: '@{list_var}'
@@ -2887,10 +2887,10 @@ result:
location:
range:
end:
- character: 28
+ character: 7
line: 30
start:
- character: 0
+ character: 2
line: 30
uri: hover.robot
name: ${A VAR}
@@ -2902,10 +2902,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 267
start:
- character: 19
+ character: 21
line: 267
uri: hover.robot
name: ${A VAR}
@@ -2917,10 +2917,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 276
start:
- character: 28
+ character: 30
line: 276
uri: hover.robot
name: ${A VAR}
@@ -2932,10 +2932,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 41
start:
- character: 0
+ character: 2
line: 41
uri: hover.robot
name: ${A}
@@ -2947,10 +2947,10 @@ result:
location:
range:
end:
- character: 9
+ character: 3
line: 42
start:
- character: 0
+ character: 2
line: 42
uri: hover.robot
name: ${B}
@@ -2962,10 +2962,10 @@ result:
location:
range:
end:
- character: 28
+ character: 3
line: 43
start:
- character: 0
+ character: 2
line: 43
uri: hover.robot
name: ${C}
@@ -2977,10 +2977,10 @@ result:
location:
range:
end:
- character: 9
+ character: 3
line: 56
start:
- character: 0
+ character: 2
line: 56
uri: hover.robot
name: ${D}
@@ -2992,10 +2992,10 @@ result:
location:
range:
end:
- character: 41
+ character: 3
line: 57
start:
- character: 0
+ character: 2
line: 57
uri: hover.robot
name: ${E}
@@ -3007,10 +3007,10 @@ result:
location:
range:
end:
- character: 14
+ character: 3
line: 58
start:
- character: 0
+ character: 2
line: 58
uri: hover.robot
name: ${F}
@@ -3022,10 +3022,25 @@ result:
location:
range:
end:
- character: 38
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
+ uri: hover.robot
+ name: ${INVALID VAR ${}}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
line: 48
start:
- character: 0
+ character: 2
line: 48
uri: hover.robot
name: ${K}
@@ -3037,10 +3052,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 36
start:
- character: 0
+ character: 2
line: 36
uri: hover.robot
name: ${LIB_ARG}
@@ -3052,10 +3067,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 286
start:
- character: 19
+ character: 21
line: 286
uri: hover.robot
name: ${a}
@@ -3067,10 +3082,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 286
start:
- character: 27
+ character: 29
line: 286
uri: hover.robot
name: ${b}
@@ -3097,10 +3112,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 81
start:
- character: 11
+ character: 13
line: 81
uri: hover.robot
name: ${key}
@@ -3112,10 +3127,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 111
start:
- character: 4
+ character: 6
line: 111
uri: hover.robot
name: ${result}
@@ -3127,10 +3142,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 276
start:
- character: 19
+ character: 21
line: 276
uri: hover.robot
name: ${tt}
@@ -3142,10 +3157,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 81
start:
- character: 21
+ character: 23
line: 81
uri: hover.robot
name: ${value}
@@ -3157,10 +3172,10 @@ result:
location:
range:
end:
- character: 35
+ character: 8
line: 33
start:
- character: 0
+ character: 2
line: 33
uri: hover.robot
name: '&{A DICT}'
@@ -3457,10 +3472,25 @@ result:
location:
range:
end:
- character: 13
+ character: 17
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: indexed_variables.robot
+ name: ${A_LIST ${index}}
+ tags: null
+- !WorkspaceSymbol
+ container_name: indexed_variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
line: 2
start:
- character: 0
+ character: 2
line: 2
uri: indexed_variables.robot
name: ${index}
@@ -3472,10 +3502,10 @@ result:
location:
range:
end:
- character: 24
+ character: 8
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: indexed_variables.robot
name: '@{A_LIST}'
@@ -3510,6 +3540,66 @@ result:
uri: jsonvariables.robot
name: first
tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 10
+ start:
+ character: 13
+ line: 10
+ uri: old_for.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: old_for.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 6
+ start:
+ character: 0
+ line: 6
+ uri: old_for.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: old_for.robot
+ name: third
+ tags: null
- !WorkspaceSymbol
container_name: part1__suite
data: null
@@ -3562,10 +3652,10 @@ result:
location:
range:
end:
- character: 21
+ character: 3
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: playground.robot
name: ${2}
@@ -3577,10 +3667,10 @@ result:
location:
range:
end:
- character: 12
+ character: 3
line: 2
start:
- character: 0
+ character: 2
line: 2
uri: playground.robot
name: ${a}
@@ -3592,10 +3682,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 22
start:
- character: 19
+ character: 21
line: 22
uri: playground.robot
name: ${a}
@@ -3607,10 +3697,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 22
start:
- character: 27
+ character: 29
line: 22
uri: playground.robot
name: ${b}
@@ -3622,10 +3712,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 15
start:
- character: 4
+ character: 6
line: 15
uri: playground.robot
name: ${v}
@@ -3667,10 +3757,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 150
start:
- character: 19
+ character: 21
line: 150
uri: references.robot
name: ${A VAR}
@@ -3682,10 +3772,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 159
start:
- character: 28
+ character: 30
line: 159
uri: references.robot
name: ${A VAR}
@@ -3697,10 +3787,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: references.robot
name: ${LIB_ARG}
@@ -3712,10 +3802,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 270
start:
- character: 4
+ character: 6
line: 270
uri: references.robot
name: ${MATCH TYPE}
@@ -3727,10 +3817,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: references.robot
name: ${a var}
@@ -3742,10 +3832,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 245
start:
- character: 19
+ character: 21
line: 245
uri: references.robot
name: ${arg}
@@ -3757,10 +3847,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 169
start:
- character: 19
+ character: 21
line: 169
uri: references.robot
name: ${a}
@@ -3772,10 +3862,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
uri: references.robot
name: ${a}
@@ -3787,10 +3877,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 193
start:
- character: 19
+ character: 21
line: 193
uri: references.robot
name: ${a}
@@ -3802,10 +3892,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 26
start:
- character: 0
+ character: 2
line: 26
uri: references.robot
name: ${bananas}
@@ -3832,10 +3922,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 269
start:
- character: 4
+ character: 6
line: 269
uri: references.robot
name: ${beginning}
@@ -3847,10 +3937,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 169
start:
- character: 27
+ character: 29
line: 169
uri: references.robot
name: ${b}
@@ -3862,10 +3952,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
uri: references.robot
name: ${b}
@@ -3877,10 +3967,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 193
start:
- character: 27
+ character: 29
line: 193
uri: references.robot
name: ${b}
@@ -3892,10 +3982,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 258
start:
- character: 19
+ character: 21
line: 258
uri: references.robot
name: ${count}
@@ -3922,10 +4012,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 59
start:
- character: 4
+ character: 6
line: 59
uri: references.robot
name: ${result}
@@ -3937,10 +4027,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 205
start:
- character: 4
+ character: 6
line: 205
uri: references.robot
name: ${result}
@@ -3952,10 +4042,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 236
start:
- character: 19
+ character: 21
line: 236
uri: references.robot
name: ${retries}
@@ -3967,10 +4057,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 258
start:
- character: 31
+ character: 33
line: 258
uri: references.robot
name: ${retries}
@@ -4042,10 +4132,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 159
start:
- character: 19
+ character: 21
line: 159
uri: references.robot
name: ${tt}
@@ -4072,10 +4162,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 122
start:
- character: 19
+ character: 21
line: 122
uri: references.robot
name: ${type}
@@ -4087,10 +4177,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 224
start:
- character: 19
+ character: 21
line: 224
uri: references.robot
name: ${val}
@@ -4147,10 +4237,10 @@ result:
location:
range:
end:
- character: 11
+ character: 4
line: 27
start:
- character: 0
+ character: 2
line: 27
uri: references.robot
name: "${\U0001F9E8\U0001F9E8}"
@@ -4597,10 +4687,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 31
start:
- character: 19
+ character: 21
line: 31
uri: sematic_tokenizing.robot
name: ${a}
@@ -4612,10 +4702,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 31
start:
- character: 27
+ character: 29
line: 31
uri: sematic_tokenizing.robot
name: ${b}
@@ -4627,10 +4717,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 31
start:
- character: 35
+ character: 37
line: 31
uri: sematic_tokenizing.robot
name: ${c}
@@ -4642,10 +4732,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 26
start:
- character: 19
+ character: 21
line: 26
uri: sematic_tokenizing.robot
name: ${type}
@@ -4762,10 +4852,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 30
start:
- character: 19
+ character: 21
line: 30
uri: setup_teardown.robot
name: ${type}
@@ -4867,10 +4957,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 19
start:
- character: 4
+ character: 6
line: 19
uri: signature_help.robot
name: ${a}
@@ -4882,10 +4972,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 19
start:
- character: 12
+ character: 14
line: 19
uri: signature_help.robot
name: ${b}
@@ -4897,10 +4987,10 @@ result:
location:
range:
end:
- character: 57
+ character: 56
line: 32
start:
- character: 50
+ character: 52
line: 32
uri: signature_help.robot
name: ${html}
@@ -4912,10 +5002,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 32
start:
- character: 33
+ character: 35
line: 32
uri: signature_help.robot
name: ${level}
@@ -4927,10 +5017,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 32
start:
- character: 19
+ character: 21
line: 32
uri: signature_help.robot
name: ${message}
@@ -5122,10 +5212,10 @@ result:
location:
range:
end:
- character: 13
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: symbols.robot
name: ${A_VAR}
@@ -5152,10 +5242,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 41
start:
- character: 19
+ character: 21
line: 41
uri: symbols.robot
name: ${first}
@@ -5167,10 +5257,10 @@ result:
location:
range:
end:
- character: 33
+ character: 32
line: 16
start:
- character: 20
+ character: 22
line: 16
uri: symbols.robot
name: ${kw_result1}
@@ -5182,10 +5272,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 13
start:
- character: 4
+ character: 6
line: 13
uri: symbols.robot
name: ${kw_result}
@@ -5197,10 +5287,10 @@ result:
location:
range:
end:
- character: 20
+ character: 19
line: 21
start:
- character: 9
+ character: 11
line: 21
uri: symbols.robot
name: ${loop_var}
@@ -5212,10 +5302,10 @@ result:
location:
range:
end:
- character: 40
+ character: 39
line: 41
start:
- character: 31
+ character: 33
line: 41
uri: symbols.robot
name: ${second}
@@ -5227,10 +5317,10 @@ result:
location:
range:
end:
- character: 12
+ character: 11
line: 68
start:
- character: 4
+ character: 6
line: 68
uri: symbols.robot
name: ${var 1}
@@ -5303,10 +5393,10 @@ result:
location:
range:
end:
- character: 13
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: templates.robot
name: ${A VAR}
@@ -5318,10 +5408,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 79
start:
- character: 19
+ character: 21
line: 79
uri: templates.robot
name: ${aaa}
@@ -5333,10 +5423,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 61
start:
- character: 19
+ character: 21
line: 61
uri: templates.robot
name: ${a}
@@ -5348,10 +5438,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 68
start:
- character: 19
+ character: 21
line: 68
uri: templates.robot
name: ${a}
@@ -5378,10 +5468,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 89
start:
- character: 19
+ character: 21
line: 89
uri: templates.robot
name: ${a}
@@ -5393,10 +5483,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 61
start:
- character: 27
+ character: 29
line: 61
uri: templates.robot
name: ${b}
@@ -5408,10 +5498,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 68
start:
- character: 27
+ character: 29
line: 68
uri: templates.robot
name: ${b}
@@ -5438,10 +5528,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 89
start:
- character: 27
+ character: 29
line: 89
uri: templates.robot
name: ${b}
@@ -5453,10 +5543,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 61
start:
- character: 35
+ character: 37
line: 61
uri: templates.robot
name: ${c}
@@ -5468,10 +5558,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 68
start:
- character: 35
+ character: 37
line: 68
uri: templates.robot
name: ${c}
@@ -5498,10 +5588,10 @@ result:
location:
range:
end:
- character: 46
+ character: 45
line: 89
start:
- character: 35
+ character: 37
line: 89
uri: templates.robot
name: ${expected}
@@ -5513,10 +5603,10 @@ result:
location:
range:
end:
- character: 15
+ character: 14
line: 81
start:
- character: 11
+ character: 13
line: 81
uri: templates.robot
name: ${i}
@@ -5528,10 +5618,10 @@ result:
location:
range:
end:
- character: 26
+ character: 10
line: 7
start:
- character: 0
+ character: 2
line: 7
uri: templates.robot
name: '@{LIST VAR}'
@@ -5768,10 +5858,10 @@ result:
location:
range:
end:
- character: 23
+ character: 16
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: templates2.robot
name: ${VALID PASSWORD}
@@ -5783,10 +5873,10 @@ result:
location:
range:
end:
- character: 22
+ character: 12
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: templates2.robot
name: ${VALID USER}
@@ -5798,10 +5888,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 53
start:
- character: 19
+ character: 21
line: 53
uri: templates2.robot
name: ${a}
@@ -5813,10 +5903,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 53
start:
- character: 27
+ character: 29
line: 53
uri: templates2.robot
name: ${b}
@@ -5828,10 +5918,10 @@ result:
location:
range:
end:
- character: 19
+ character: 18
line: 22
start:
- character: 11
+ character: 13
line: 22
uri: templates2.robot
name: ${index}
@@ -5843,10 +5933,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 19
start:
- character: 11
+ character: 13
line: 19
uri: templates2.robot
name: ${item}
@@ -5858,10 +5948,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 28
start:
- character: 11
+ character: 13
line: 28
uri: templates2.robot
name: ${item}
@@ -5873,10 +5963,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 38
start:
- character: 11
+ character: 13
line: 38
uri: templates2.robot
name: ${item}
@@ -5888,10 +5978,10 @@ result:
location:
range:
end:
- character: 45
+ character: 44
line: 49
start:
- character: 34
+ character: 36
line: 49
uri: templates2.robot
name: ${password}
@@ -5903,10 +5993,10 @@ result:
location:
range:
end:
- character: 30
+ character: 29
line: 49
start:
- character: 19
+ character: 21
line: 49
uri: templates2.robot
name: ${username}
@@ -5918,10 +6008,10 @@ result:
location:
range:
end:
- character: 38
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: templates2.robot
name: '@{ITEMS}'
@@ -6092,89 +6182,539 @@ result:
name: Template with FOR loop
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 16
- line: 12
+ character: 19
+ line: 7
start:
- character: 0
- line: 12
- uri: variables.robot
- name: ${DD}
+ character: 2
+ line: 7
+ uri: variable_conversion.robot
+ name: '${DATES: list[date]}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 24
- line: 124
+ character: 28
+ line: 8
start:
- character: 0
- line: 124
- uri: variables.robot
- name: ${INFO_DATA}
+ character: 2
+ line: 8
+ uri: variable_conversion.robot
+ name: '${PRIORITIES: dict[int, str]}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 12
- line: 11
+ character: 40
+ line: 70
start:
- character: 0
- line: 11
- uri: variables.robot
- name: ${UU}
+ character: 21
+ line: 70
+ uri: variable_conversion.robot
+ name: '${a: int | str | None}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 24
- line: 123
+ character: 8
+ line: 1
start:
- character: 0
- line: 123
- uri: variables.robot
- name: ${VALUE}
+ character: 2
+ line: 1
+ uri: variable_conversion.robot
+ name: '${a: int}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
character: 12
- line: 10
+ line: 47
start:
- character: 0
- line: 10
- uri: variables.robot
- name: ${ZZ}
+ character: 6
+ line: 47
+ uri: variable_conversion.robot
+ name: '${a: int}'
tags: null
- !WorkspaceSymbol
- container_name: variables
+ container_name: variable_conversion
data: null
kind: 13
location:
range:
end:
- character: 25
- line: 167
+ character: 27
+ line: 57
+ start:
+ character: 21
+ line: 57
+ uri: variable_conversion.robot
+ name: '${a: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 65
+ start:
+ character: 21
+ line: 65
+ uri: variable_conversion.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 37
+ line: 65
+ start:
+ character: 31
+ line: 65
+ uri: variable_conversion.robot
+ name: '${b: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 57
+ start:
+ character: 34
+ line: 57
+ uri: variable_conversion.robot
+ name: '${c: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 59
+ line: 57
+ start:
+ character: 47
+ line: 57
+ uri: variable_conversion.robot
+ name: '${d: list[str]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 32
+ start:
+ character: 6
+ line: 32
+ uri: variable_conversion.robot
+ name: '${i: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 42
+ start:
+ character: 13
+ line: 42
+ uri: variable_conversion.robot
+ name: '${i: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: variable_conversion.robot
+ name: '${k: Literal["Yes", "No"]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 34
+ line: 83
+ start:
+ character: 2
+ line: 83
+ uri: variable_conversion.robot
+ name: ${keyword}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 38
+ start:
+ character: 13
+ line: 38
+ uri: variable_conversion.robot
+ name: '${l: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 8
+ line: 2
+ start:
+ character: 2
+ line: 2
+ uri: variable_conversion.robot
+ name: '${s: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 32
+ line: 42
+ start:
+ character: 26
+ line: 42
+ uri: variable_conversion.robot
+ name: '${s: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 16
+ line: 6
+ start:
+ character: 2
+ line: 6
+ uri: variable_conversion.robot
+ name: '${time: datetime}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 4
+ start:
+ character: 2
+ line: 4
+ uri: variable_conversion.robot
+ name: '@{numbers: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 5
+ start:
+ character: 2
+ line: 5
+ uri: variable_conversion.robot
+ name: '@{wrong_numbers: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 53
+ line: 83
+ start:
+ character: 0
+ line: 83
+ uri: variable_conversion.robot
+ name: 'a ${keyword: int:keyword|testcase} with embedded args'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: variable_conversion.robot
+ name: a simple keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 39
+ line: 64
+ start:
+ character: 0
+ line: 64
+ uri: variable_conversion.robot
+ name: a simple keyword with default arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 36
+ line: 69
+ start:
+ character: 0
+ line: 69
+ uri: variable_conversion.robot
+ name: a simple keyword with union argument
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 50
+ start:
+ character: 0
+ line: 50
+ uri: variable_conversion.robot
+ name: calling kws with embedded args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 9
+ line: 35
+ start:
+ character: 0
+ line: 35
+ uri: variable_conversion.robot
+ name: for loops
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 46
+ start:
+ character: 0
+ line: 46
+ uri: variable_conversion.robot
+ name: if assignment
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 19
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: variable_conversion.robot
+ name: keyword assignments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 25
+ start:
+ character: 0
+ line: 25
+ uri: variable_conversion.robot
+ name: local variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 12
+ start:
+ character: 0
+ line: 12
+ uri: variable_conversion.robot
+ name: suite variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 4
+ line: 12
+ start:
+ character: 2
+ line: 12
+ uri: variables.robot
+ name: ${DD}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 11
+ line: 124
+ start:
+ character: 2
+ line: 124
+ uri: variables.robot
+ name: ${INFO_DATA}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 4
+ line: 11
+ start:
+ character: 2
+ line: 11
+ uri: variables.robot
+ name: ${UU}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 123
+ start:
+ character: 2
+ line: 123
+ uri: variables.robot
+ name: ${VALUE}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 4
+ line: 10
+ start:
+ character: 2
+ line: 10
+ uri: variables.robot
+ name: ${ZZ}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 167
start:
character: 19
line: 167
@@ -6188,10 +6728,25 @@ result:
location:
range:
end:
- character: 10
+ character: 24
+ line: 167
+ start:
+ character: 21
+ line: 167
+ uri: variables.robot
+ name: ${aaa}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
line: 64
start:
- character: 4
+ character: 6
line: 64
uri: variables.robot
name: ${asd}
@@ -6203,10 +6758,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 75
start:
- character: 4
+ character: 6
line: 75
uri: variables.robot
name: ${a}
@@ -6218,10 +6773,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 83
start:
- character: 4
+ character: 6
line: 83
uri: variables.robot
name: ${a}
@@ -6233,10 +6788,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 99
start:
- character: 4
+ character: 6
line: 99
uri: variables.robot
name: ${a}
@@ -6263,10 +6818,10 @@ result:
location:
range:
end:
- character: 21
+ character: 20
line: 177
start:
- character: 17
+ character: 19
line: 177
uri: variables.robot
name: ${a}
@@ -6278,10 +6833,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 76
start:
- character: 4
+ character: 6
line: 76
uri: variables.robot
name: ${b}
@@ -6293,10 +6848,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 84
start:
- character: 4
+ character: 6
line: 84
uri: variables.robot
name: ${b}
@@ -6308,10 +6863,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 100
start:
- character: 4
+ character: 6
line: 100
uri: variables.robot
name: ${b}
@@ -6338,10 +6893,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 177
start:
- character: 23
+ character: 25
line: 177
uri: variables.robot
name: ${b}
@@ -6353,10 +6908,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 77
start:
- character: 4
+ character: 6
line: 77
uri: variables.robot
name: ${c}
@@ -6368,10 +6923,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 102
start:
- character: 4
+ character: 6
line: 102
uri: variables.robot
name: ${c}
@@ -6383,10 +6938,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 78
start:
- character: 4
+ character: 6
line: 78
uri: variables.robot
name: ${d}
@@ -6413,10 +6968,10 @@ result:
location:
range:
end:
- character: 40
+ character: 39
line: 177
start:
- character: 29
+ character: 31
line: 177
uri: variables.robot
name: ${expected}
@@ -6428,10 +6983,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 79
start:
- character: 4
+ character: 6
line: 79
uri: variables.robot
name: ${e}
@@ -6443,10 +6998,10 @@ result:
location:
range:
end:
- character: 43
+ character: 11
line: 9
start:
- character: 0
+ character: 2
line: 9
uri: variables.robot
name: ${full_name}
@@ -6458,10 +7013,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 80
start:
- character: 4
+ character: 6
line: 80
uri: variables.robot
name: ${f}
@@ -6473,10 +7028,10 @@ result:
location:
range:
end:
- character: 19
+ character: 18
line: 68
start:
- character: 4
+ character: 6
line: 68
uri: variables.robot
name: ${hello there1}
@@ -6488,10 +7043,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 52
start:
- character: 9
+ character: 11
line: 52
uri: variables.robot
name: ${i}
@@ -6503,14 +7058,29 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 169
start:
- character: 9
+ character: 11
line: 169
uri: variables.robot
name: ${i}
tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 83
+ line: 181
+ start:
+ character: 75
+ line: 181
+ uri: variables.robot
+ name: ${keywords}
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -6533,10 +7103,10 @@ result:
location:
range:
end:
- character: 99
+ character: 98
line: 181
start:
- character: 88
+ character: 90
line: 181
uri: variables.robot
name: ${listener}
@@ -6548,10 +7118,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 181
start:
- character: 19
+ character: 21
line: 181
uri: variables.robot
name: ${name}
@@ -6563,14 +7133,29 @@ result:
location:
range:
end:
- character: 57
+ character: 15
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: variables.robot
name: ${pre_full_name}
tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 68
+ line: 181
+ start:
+ character: 63
+ line: 181
+ uri: variables.robot
+ name: ${scope}
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -6593,10 +7178,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 181
start:
- character: 37
+ character: 39
line: 181
uri: variables.robot
name: ${version}
@@ -6608,10 +7193,10 @@ result:
location:
range:
end:
- character: 11
+ character: 4
line: 14
start:
- character: 0
+ character: 2
line: 14
uri: variables.robot
name: "${\U0001F9E8\U0001F9E8}"
@@ -6623,10 +7208,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 71
start:
- character: 4
+ character: 6
line: 71
uri: variables.robot
name: '&{a dict}'
@@ -6938,10 +7523,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 39
start:
- character: 32
+ character: 34
line: 39
uri: vartest.robot
name: ${a_second_arg}
@@ -6953,10 +7538,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 45
start:
- character: 32
+ character: 34
line: 45
uri: vartest.robot
name: ${a_second_arg}
@@ -6968,10 +7553,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 39
start:
- character: 19
+ character: 21
line: 39
uri: vartest.robot
name: ${an_arg}
@@ -6983,10 +7568,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 45
start:
- character: 19
+ character: 21
line: 45
uri: vartest.robot
name: ${an_arg}
@@ -7118,10 +7703,10 @@ result:
location:
range:
end:
- character: 35
+ character: 11
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: very_big_file.robot
name: ${city_name}
@@ -7148,10 +7733,10 @@ result:
location:
range:
end:
- character: 71
+ character: 16
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: very_big_file.robot
name: ${cryptic_answer}
@@ -7178,10 +7763,10 @@ result:
location:
range:
end:
- character: 34
+ character: 10
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: very_big_file.robot
name: ${location}
@@ -7298,10 +7883,10 @@ result:
location:
range:
end:
- character: 62
+ character: 10
line: 7
start:
- character: 0
+ character: 2
line: 7
uri: very_big_file.robot
name: ${question}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_workspace_symbols.test[as].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_workspace_symbols.test[as].out
index 90632af99..c023fdc0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_workspace_symbols.test[as].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_workspace_symbols.test[as].out
@@ -111,10 +111,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: code_action_show_documentation.robot
name: ${bananas}
@@ -216,10 +216,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 164
start:
- character: 32
+ character: 34
line: 164
uri: document_highlight.robot
name: ${a_second_arg}
@@ -231,10 +231,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 169
start:
- character: 32
+ character: 34
line: 169
uri: document_highlight.robot
name: ${a_second_arg}
@@ -411,10 +411,10 @@ result:
location:
range:
end:
- character: 47
+ character: 20
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: firstresource.resource
name: ${A_VAR_FROM_RESOURE}
@@ -426,10 +426,10 @@ result:
location:
range:
end:
- character: 61
+ character: 60
line: 23
start:
- character: 46
+ character: 48
line: 23
uri: firstresource.resource
name: ${a_short_name}
@@ -516,10 +516,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 213
start:
- character: 32
+ character: 34
line: 213
uri: goto.robot
name: ${a_second_arg}
@@ -531,10 +531,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 218
start:
- character: 32
+ character: 34
line: 218
uri: goto.robot
name: ${a_second_arg}
@@ -726,10 +726,25 @@ result:
location:
range:
end:
- character: 24
+ character: 17
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: indexed_variables.robot
+ name: ${A_LIST ${index}}
+ tags: null
+- !WorkspaceSymbol
+ container_name: indexed_variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 8
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: indexed_variables.robot
name: '@{A_LIST}'
@@ -741,10 +756,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 26
start:
- character: 0
+ character: 2
line: 26
uri: references.robot
name: ${bananas}
@@ -1071,10 +1086,10 @@ result:
location:
range:
end:
- character: 23
+ character: 16
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: templates2.robot
name: ${VALID PASSWORD}
@@ -1086,10 +1101,10 @@ result:
location:
range:
end:
- character: 22
+ character: 12
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: templates2.robot
name: ${VALID USER}
@@ -1101,10 +1116,10 @@ result:
location:
range:
end:
- character: 45
+ character: 44
line: 49
start:
- character: 34
+ character: 36
line: 49
uri: templates2.robot
name: ${password}
@@ -1199,6 +1214,186 @@ result:
uri: templates2.robot
name: Login with invalid credentials should fail
tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 7
+ start:
+ character: 2
+ line: 7
+ uri: variable_conversion.robot
+ name: '${DATES: list[date]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 70
+ start:
+ character: 21
+ line: 70
+ uri: variable_conversion.robot
+ name: '${a: int | str | None}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: variable_conversion.robot
+ name: '${k: Literal["Yes", "No"]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 53
+ line: 83
+ start:
+ character: 0
+ line: 83
+ uri: variable_conversion.robot
+ name: 'a ${keyword: int:keyword|testcase} with embedded args'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: variable_conversion.robot
+ name: a simple keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 39
+ line: 64
+ start:
+ character: 0
+ line: 64
+ uri: variable_conversion.robot
+ name: a simple keyword with default arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 36
+ line: 69
+ start:
+ character: 0
+ line: 69
+ uri: variable_conversion.robot
+ name: a simple keyword with union argument
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 50
+ start:
+ character: 0
+ line: 50
+ uri: variable_conversion.robot
+ name: calling kws with embedded args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 46
+ start:
+ character: 0
+ line: 46
+ uri: variable_conversion.robot
+ name: if assignment
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 19
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: variable_conversion.robot
+ name: keyword assignments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 25
+ start:
+ character: 0
+ line: 25
+ uri: variable_conversion.robot
+ name: local variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 12
+ start:
+ character: 0
+ line: 12
+ uri: variable_conversion.robot
+ name: suite variables
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -1206,10 +1401,10 @@ result:
location:
range:
end:
- character: 10
+ character: 9
line: 64
start:
- character: 4
+ character: 6
line: 64
uri: variables.robot
name: ${asd}
@@ -1281,10 +1476,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 39
start:
- character: 32
+ character: 34
line: 39
uri: vartest.robot
name: ${a_second_arg}
@@ -1296,10 +1491,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 45
start:
- character: 32
+ character: 34
line: 45
uri: vartest.robot
name: ${a_second_arg}
@@ -1371,10 +1566,10 @@ result:
location:
range:
end:
- character: 71
+ character: 16
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: very_big_file.robot
name: ${cryptic_answer}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_workspace_symbols.test[first].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_workspace_symbols.test[first].out
index e29fff18e..ab4c5c257 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_workspace_symbols.test[first].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf61/test_workspace_symbols.test[first].out
@@ -299,6 +299,21 @@ result:
uri: jsonvariables.robot
name: first
tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: old_for.robot
+ name: first
+ tags: null
- !WorkspaceSymbol
container_name: part1__suite
data: null
@@ -576,10 +591,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 41
start:
- character: 19
+ character: 21
line: 41
uri: symbols.robot
name: ${first}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
index 8239f353e..226df7e43 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
index a3ba6d93a..a8415375e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
index 524f60284..6eaa2e935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
index a049d2abd..7ca591687 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
index b2b3a6421..e5efffaa2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
index a513df80b..d54497f31 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
index 2f87ac00e..7efe9727c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
index b0e55bbd5..8f988fde6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
index 6842bfc3a..204e3a526 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
index b9e122bef..392d76d05 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
index 1f167bad1..595a25015 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
index 2d3d8bb53..ec8d67203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
index f4485a04e..2a4594d9d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
index a1f129203..931b651ca 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
index 8a5af0dd6..ca5f519ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
index 079bc90d9..db4eadd00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
index c04f7fc58..9fc8dc9da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
index c233ae926..96464fc0a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
index 870d7a36a..b1eff5801 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
index e82ef2b56..980598cd7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
index c592fc763..0c5b96935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
index a57aabeb3..e02339b62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
index 46e7c3340..ffe8f95ee 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
index 642884f51..67711a05f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
index 28cb91a72..8bb3347a7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
index 0dba1a415..79b0ab951 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
index d71c9d08b..e9fe50e25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
index 7b0d67047..cf3d34dea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
index 3c475dbed..62f4aceb1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
index 15d634e9c..107def919 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
index ade8b6d92..8d2ca8626 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
index 66fddf121..1feeeb40c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
index eb0b5fd54..f5ec1c457 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
index ba8a95794..bea1d3906 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
index 4e8e95194..a62d80df3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
index 90b42a565..e34b79a0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
index be66e20d1..17ec05e27 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
index cb8da7aba..04e70985b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
index f4d156da6..9e6dfd8d7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
index a7550e1f4..b7cf80414 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
index 5d424c505..3244fdcd1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
index becb9d7cb..a94d36226 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
index 5bd9fb55e..fece8b2aa 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
index 725193b37..b0235ca01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
index 5e034b72e..ac50687b3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
index 70d1c5b94..23bb8aaf3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
index ef1b3e404..3b0e98cec 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
index 07bd779f8..325e16336 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
index b3afde9c8..40a3bfb4b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
index b2b32b5a7..9dcf09b8d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
index e0d8907d6..a60432e01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
index ee5c1bb07..52e38c418 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
index 77b677467..afad4b22e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
index 545003425..79c6190d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
index 4a4ecc302..a1e856600 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
index 84362f8a9..b1cb2126a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
index 447bf4184..de0d59df6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
index 52d02c18e..23b9b8a1f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
index dcf7c04e6..17be9c684 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
index 0dfb5c023..7d355d48d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
index f1f42b950..e0c65040f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
index 78cea173c..e73a085ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
index c1fefa5a0..fe1822274 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
index d7f5004eb..7083c0456 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
@@ -13,10 +13,10 @@ result:
line: 113
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
index 5c887ad71..7805da4bc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
@@ -13,10 +13,10 @@ result:
line: 116
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
index ad2cb2b03..e2b4e3ec5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 121
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
index ffdb6f269..3053203b2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 124
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
index 005eccbe0..3aa98776d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
index 727f6e96d..1d82bbf19 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
index 11c936057..69ac841ce 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
index 16a81732f..89d2d8a9a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
index 4f87541d1..220538b57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
@@ -13,10 +13,10 @@ result:
line: 136
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
index 38e45adb1..c0d8cab53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
index 3d915b2f6..e5b45a749 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
index 999c93272..f5bd445a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
index 1be872de3..2ce131597 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
index 1bb226e02..9d51f1860 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
index 7bab735ea..452a44add 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
index 88b77dc89..865e4fe5a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
index 2ad7fcd5c..67501186c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
index 4660d8a0f..f0ad689e2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
index 36e560bc2..3b1f57c25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
index 1082011e2..868e40459 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
index 631d5be02..c6855781f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
index bb4183827..bc6603370 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
index f210370b5..f5299abab 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
index 58c0e52a0..4cf7f16da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
index 16692643a..ae530e453 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
index 85273368b..e48ac204d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
index 11982d4d9..67436f28b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
index 8ee8393a4..8489525fc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
index a9096c519..aeb46e115 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
index 31d58a50f..ff5922211 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
index 2c1d286e9..518933599 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
index 88bfebaf9..1389c2ae6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
index 107e0644a..91386967d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
index bcb425d10..ba3e6351b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
index 5ce584672..14c6de2b7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
index 8c637fba1..145813fd0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
index 84d9267dd..001e62bda 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
index 9c2bc61de..2f9ed615a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
index 877c4d3f7..8f60adbfe 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
index 352ed5354..e58d291f5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
index 7f2aaed0b..79b34a22b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
index 9f7ff9da3..6aafa0cf7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
index e62f70937..99b407107 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
index 26343b08f..a2d19cd1a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
index cb34057a6..b90b18f53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
index 66e1b72a2..5be0a2e62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
index 05a9f2878..44fda0315 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
index a13d64453..3499f3dc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
index edeb45042..800293ec2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 191
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
index f9f759774..e4a2311a1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 193
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
index 8f408d191..18898925e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
index fc63710ae..e00559044 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
index 99b3c42e7..e8255ec5f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
index 24291cbfc..4a85bbe85 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 208
target_range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
index 602cb6ab0..39faffbcf 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
index 6b1ce1d6a..4fd41dc65 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
index 6abc94c88..98f059f2a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
index 3951adaa1..3165c0fc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
index 397adb60c..c34433d9f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
index 38ad1c416..c15fef092 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
index c0de4a0d8..83529a203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 222
target_range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
index 23f059316..3cbc16c4f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
index cd700261d..1514a2e57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
index 6ef9cc6bf..99b72499e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
index 8239f353e..226df7e43 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
index a3ba6d93a..a8415375e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
index 524f60284..6eaa2e935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
index a049d2abd..7ca591687 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
index b2b3a6421..e5efffaa2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
index a513df80b..d54497f31 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
index 2f87ac00e..7efe9727c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
index b0e55bbd5..8f988fde6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
index 6842bfc3a..204e3a526 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
index b9e122bef..392d76d05 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
index 1f167bad1..595a25015 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
index 2d3d8bb53..ec8d67203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
index f4485a04e..2a4594d9d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
index a1f129203..931b651ca 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
index 8a5af0dd6..ca5f519ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
index 079bc90d9..db4eadd00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
index c04f7fc58..9fc8dc9da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
index c233ae926..96464fc0a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
index 870d7a36a..b1eff5801 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
index e82ef2b56..980598cd7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
index c592fc763..0c5b96935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
index a57aabeb3..e02339b62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
index 46e7c3340..ffe8f95ee 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
index 642884f51..67711a05f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
index 28cb91a72..8bb3347a7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
index 0dba1a415..79b0ab951 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
index d71c9d08b..e9fe50e25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
index 7b0d67047..cf3d34dea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
index 3c475dbed..62f4aceb1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
index 15d634e9c..107def919 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
index ade8b6d92..8d2ca8626 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
index 66fddf121..1feeeb40c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
index eb0b5fd54..f5ec1c457 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
index ba8a95794..bea1d3906 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
index 4e8e95194..a62d80df3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
index 90b42a565..e34b79a0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
index be66e20d1..17ec05e27 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
index cb8da7aba..04e70985b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
index f4d156da6..9e6dfd8d7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
index a7550e1f4..b7cf80414 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
index 5d424c505..3244fdcd1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
index becb9d7cb..a94d36226 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
index 5bd9fb55e..fece8b2aa 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
index 725193b37..b0235ca01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
index 5e034b72e..ac50687b3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
index 70d1c5b94..23bb8aaf3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
index ef1b3e404..3b0e98cec 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
index 07bd779f8..325e16336 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
index b3afde9c8..40a3bfb4b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
index b2b32b5a7..9dcf09b8d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
index e0d8907d6..a60432e01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
index ee5c1bb07..52e38c418 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
index 77b677467..afad4b22e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
index 545003425..79c6190d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
index 4a4ecc302..a1e856600 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
index 84362f8a9..b1cb2126a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
index 447bf4184..de0d59df6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
index 52d02c18e..23b9b8a1f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
index dcf7c04e6..17be9c684 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
index 0dfb5c023..7d355d48d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
index f1f42b950..e0c65040f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
index 78cea173c..e73a085ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
index c1fefa5a0..fe1822274 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
index d7f5004eb..7083c0456 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
@@ -13,10 +13,10 @@ result:
line: 113
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
index 5c887ad71..7805da4bc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
@@ -13,10 +13,10 @@ result:
line: 116
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
index ad2cb2b03..e2b4e3ec5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 121
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
index ffdb6f269..3053203b2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 124
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
index 005eccbe0..3aa98776d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
index 727f6e96d..1d82bbf19 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
index 11c936057..69ac841ce 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
index 16a81732f..89d2d8a9a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
index 4f87541d1..220538b57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
@@ -13,10 +13,10 @@ result:
line: 136
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
index 38e45adb1..c0d8cab53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
index 3d915b2f6..e5b45a749 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
index 999c93272..f5bd445a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
index 1be872de3..2ce131597 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
index 1bb226e02..9d51f1860 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
index 7bab735ea..452a44add 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
index 88b77dc89..865e4fe5a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
index 2ad7fcd5c..67501186c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
index 4660d8a0f..f0ad689e2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
index 36e560bc2..3b1f57c25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
index 1082011e2..868e40459 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
index 631d5be02..c6855781f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
index bb4183827..bc6603370 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
index f210370b5..f5299abab 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
index 58c0e52a0..4cf7f16da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
index 16692643a..ae530e453 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
index 85273368b..e48ac204d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
index 11982d4d9..67436f28b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
index 8ee8393a4..8489525fc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
index a9096c519..aeb46e115 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
index 31d58a50f..ff5922211 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
index 2c1d286e9..518933599 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
index 88bfebaf9..1389c2ae6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
index 107e0644a..91386967d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
index bcb425d10..ba3e6351b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
index 5ce584672..14c6de2b7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
index 8c637fba1..145813fd0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
index 84d9267dd..001e62bda 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
index 9c2bc61de..2f9ed615a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
index 877c4d3f7..8f60adbfe 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
index 352ed5354..e58d291f5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
index 7f2aaed0b..79b34a22b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
index 9f7ff9da3..6aafa0cf7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
index e62f70937..99b407107 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
index 26343b08f..a2d19cd1a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
index cb34057a6..b90b18f53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
index 66e1b72a2..5be0a2e62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
index 05a9f2878..44fda0315 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
index a13d64453..3499f3dc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
index edeb45042..800293ec2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 191
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
index f9f759774..e4a2311a1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 193
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
index 8f408d191..18898925e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
index fc63710ae..e00559044 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
index 99b3c42e7..e8255ec5f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
index 24291cbfc..4a85bbe85 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 208
target_range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
index 602cb6ab0..39faffbcf 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
index 6b1ce1d6a..4fd41dc65 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
index 6abc94c88..98f059f2a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
index 3951adaa1..3165c0fc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
index 397adb60c..c34433d9f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
index 38ad1c416..c15fef092 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
index c0de4a0d8..83529a203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 222
target_range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
index 23f059316..3cbc16c4f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
index cd700261d..1514a2e57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
index 6ef9cc6bf..99b72499e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out
index 444f042b1..e61ae5a48 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 2
line: 38
name: no hover for invalid variable
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out
index 487757a8e..28410e141 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 9
line: 38
name: no hover for invalid variable
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out
index ef7994f1d..52e5648d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 16
line: 38
name: no hover for invalid variable
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out
index 98a12e526..5238819ba 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 20
line: 72
name: no hover for invalid variable reference
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 28
+ line: 72
+ start:
+ character: 13
+ line: 72
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out
index 69dd1ee5c..1b0b0551b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 27
line: 72
name: no hover for invalid variable reference
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 28
+ line: 72
+ start:
+ character: 13
+ line: 72
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-036-004-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-036-004-simple_keyword_call].out
index 4f17aa59c..3cd4fea13 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-036-004-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-036-004-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-036-005-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-036-005-simple_keyword_call].out
index 5e136fdb8..20d62bd06 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-036-005-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-036-005-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-036-006-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-036-006-simple_keyword_call].out
index 4317aba57..8caf23c4d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-036-006-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-036-006-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-105-029-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-105-029-a_variable_with_emoji].out
new file mode 100644
index 000000000..70dec3898
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-105-029-a_variable_with_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 29
+ line: 105
+ name: a variable with emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-105-030-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-105-030-a_variable_with_emoji].out
new file mode 100644
index 000000000..1ba9d617a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-105-030-a_variable_with_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 30
+ line: 105
+ name: a variable with emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-105-031-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-105-031-a_variable_with_emoji].out
deleted file mode 100644
index c5cb6c5cd..000000000
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-105-031-a_variable_with_emoji].out
+++ /dev/null
@@ -1,5 +0,0 @@
-data: !GeneratedTestData
- character: 31
- line: 105
- name: a variable with emoji
-result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-105-033-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-105-033-a_variable_with_emoji].out
deleted file mode 100644
index 3afbe753a..000000000
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_references.test[references.robot-105-033-a_variable_with_emoji].out
+++ /dev/null
@@ -1,32 +0,0 @@
-data: !GeneratedTestData
- character: 33
- line: 105
- name: a variable with emoji
-result:
-- !Location
- range:
- end:
- character: 50
- line: 30
- start:
- character: 41
- line: 30
- uri: resources/firstresource.resource
-- !Location
- range:
- end:
- character: 49
- line: 31
- start:
- character: 40
- line: 31
- uri: resources/firstresource.resource
-- !Location
- range:
- end:
- character: 42
- line: 105
- start:
- character: 33
- line: 105
- uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[__init__.robot].out
index 617f8bd42..f17fc64b4 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[__init__.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 14
- 26
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[bddstyle.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[bddstyle.robot].out
index 2ffd4be56..abd63c2b8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[bddstyle.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[bddstyle.robot].out
@@ -3,57 +3,87 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 14
- - 34
+ - 33
- 1
- 0
- - 22
+ - 14
+ - 8
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 0
- 37
- - 34
+ - 33
- 1
- 0
- - 50
+ - 37
+ - 13
+ - 36
+ - 0
+ - 0
+ - 13
- 1
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 0
- 31
- - 34
+ - 33
- 1
- 0
- - 40
+ - 31
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 1
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 0
- 2
- - 34
+ - 33
- 1
- 0
- 6
@@ -63,7 +93,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -73,221 +103,246 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 13
- - 56
+ - 54
- 0
- 0
- 17
- 9
- - 56
+ - 54
- 0
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 0
- 0
- - 23
+ - 14
+ - 8
+ - 36
+ - 2048
+ - 0
+ - 9
- 11
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 37
- - 39
+ - 37
- 0
+ - 0
+ - 37
+ - 13
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 9
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 8
+ - 36
+ - 2048
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 0
- 0
- 14
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 37
- - 39
+ - 37
- 0
- 0
- 37
- 1
- - 36
+ - 35
- 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
- 0
- 31
- 10
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
- 0
- 31
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 4
+ - 36
+ - 2048
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[code_action_show_documentation.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[code_action_show_documentation.robot].out
index 693e7bbc6..63f49473f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[code_action_show_documentation.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[code_action_show_documentation.robot].out
@@ -3,82 +3,97 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 16
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -88,27 +103,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -116,24 +131,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 2
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -143,32 +163,47 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -178,7 +213,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -188,8 +223,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -198,7 +238,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -208,7 +248,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -218,22 +258,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 1
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -243,17 +298,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -263,7 +328,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -273,22 +338,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -298,7 +363,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -308,7 +373,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -318,27 +383,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
- 9
- - 53
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
- 0
- 0
- 9
@@ -348,17 +418,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -368,17 +448,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -388,7 +478,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -398,12 +488,12 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 2
- 4
@@ -413,7 +503,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -423,107 +513,112 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 17
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 5
- - 36
+ - 35
- 2048
- 0
- 6
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 14
- - 36
+ - 35
- 2048
- 0
- 15
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 2
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 18
+ - 7
+ - 10
+ - 36
+ - 2048
+ - 0
+ - 11
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 21
- - 39
+ - 37
- 0
- 2
- 4
- 21
- - 39
+ - 37
- 0
- 0
- 25
@@ -533,57 +628,67 @@ result: !SemanticTokens
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 2
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 17
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 2
- 4
@@ -593,7 +698,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -603,97 +708,192 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 3
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 22
- 4
- - 34
+ - 18
+ - 36
+ - 0
+ - 0
+ - 18
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 7
- - 34
+ - 33
- 1
- 0
- - 17
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 10
- 14
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -703,7 +903,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -720,20 +920,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -743,7 +958,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -753,7 +968,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -765,20 +980,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -788,7 +1018,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -798,7 +1028,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -810,14 +1040,29 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[document_highlight.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[document_highlight.robot].out
index 85e03cd1e..f92227379 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[document_highlight.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[document_highlight.robot].out
@@ -3,62 +3,77 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
+ - 0
+ - 0
+ - 16
+ - 9
+ - 36
- 0
- 0
- - 25
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
- 36
- - 53
+ - 0
+ - 0
+ - 9
+ - 36
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -68,27 +83,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -96,24 +111,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 4
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -123,32 +143,52 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 9
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,8 +208,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -178,7 +223,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -188,7 +233,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -198,22 +243,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -223,17 +283,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -243,7 +313,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,22 +323,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -278,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -288,7 +358,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -298,27 +368,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 9
- - 53
+ - 51
- 0
- 0
- 9
@@ -328,17 +403,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -348,37 +433,47 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 21
- - 39
+ - 37
- 0
- 1
- 4
- 27
- - 39
+ - 37
- 0
- 1
- 4
- 27
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -388,12 +483,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -403,7 +498,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -413,7 +508,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -423,7 +518,7 @@ result: !SemanticTokens
- 5
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -433,147 +528,167 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -583,7 +698,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -600,20 +715,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -623,7 +753,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -633,7 +763,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -645,20 +775,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -668,7 +813,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -678,7 +823,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -691,7 +836,12 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 9
+ - 1
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 4
- 7
- 0
@@ -700,92 +850,152 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- - 26
+ - 18
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 15
- - 40
+ - 38
- 1024
+ - 0
+ - 19
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 24
- 15
- - 40
+ - 38
- 1024
+ - 0
+ - 19
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- - 26
+ - 18
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 11
- - 40
+ - 38
- 1024
- 0
- 15
- 4
- - 40
+ - 38
+ - 0
+ - 0
+ - 8
+ - 7
+ - 36
- 0
- 3
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 4
- 0
- 49
- - 34
- - 1
+ - 33
- 1
- 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
- - 3
- 4
- 1
- 21
@@ -793,13 +1003,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -808,13 +1023,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -823,7 +1048,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -833,7 +1058,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -845,20 +1070,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
@@ -868,7 +1108,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -878,7 +1118,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -890,22 +1130,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -913,13 +1143,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -928,21 +1163,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[duplicated_resources.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[duplicated_resources.robot].out
index fb940fc64..413d2bcd8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[duplicated_resources.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[duplicated_resources.robot].out
@@ -3,107 +3,107 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 28
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 10
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 8
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 12
- 14
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 18
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -113,12 +113,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -128,12 +128,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -143,6 +143,6 @@ result: !SemanticTokens
- 0
- 1
- 18
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[external_libray.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[external_libray.robot].out
index deee32838..60f2a2488 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[external_libray.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[external_libray.robot].out
@@ -3,47 +3,47 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 17
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -53,6 +53,6 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[foldingrange.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[foldingrange.robot].out
index 5c07a2da1..4ffb0b878 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[foldingrange.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[foldingrange.robot].out
@@ -3,356 +3,396 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- - 2
- - 0
- - 13
- - 25
- - 256
- - 1
+ - 3
- 0
- 3
- - 43
+ - 41
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 9
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 15
+ - 8
- 2
- - 46
+ - 44
- 0
- 2
- 8
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 6
+ - 4
+ - 36
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 3
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 0
- 8
- - 33
+ - 32
- 1
- 3
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 3
- 0
- 9
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 16
- - 31
+ - 30
- 0
- 7
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 13
- - 33
+ - 32
- 1
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
- 1
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 2
- - 35
+ - 34
- 0
- 1
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 4
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 0
- 16
- - 33
+ - 32
- 1
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 6
+ - 36
+ - 0
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- - 16
+ - 8
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 12
- - 39
+ - 37
- 1024
- 3
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[goto.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[goto.robot].out
index 627361dcf..c53530ddb 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[goto.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[goto.robot].out
@@ -3,62 +3,82 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 11
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
- 36
- - 53
+ - 0
+ - 0
+ - 9
+ - 36
+ - 51
- 0
- 4
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 24
+ - 18
+ - 6
+ - 36
+ - 0
+ - 0
+ - 6
- 19
- - 53
+ - 51
- 0
- 0
- 23
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -66,24 +86,49 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 5
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
- 0
- - 3
- 18
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -93,7 +138,7 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -103,17 +148,37 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
- 1
- 21
- 0
- - 7
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 6
+ - 36
+ - 0
+ - 2
+ - 0
+ - 11
+ - 36
+ - 0
+ - 2
+ - 0
+ - 11
+ - 36
+ - 0
+ - 0
- 15
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -123,22 +188,52 @@ result: !SemanticTokens
- 0
- 6
- 6
- - 56
+ - 54
- 0
- 0
- 6
- 1
- 21
- 0
+ - 3
+ - 0
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
+ - 0
+ - 9
+ - 11
+ - 36
+ - 0
+ - 0
+ - 12
- 10
+ - 36
+ - 0
+ - 4
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -148,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -158,37 +253,67 @@ result: !SemanticTokens
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -198,12 +323,17 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
- 0
- 5
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -213,42 +343,77 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 29
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 0
+ - 12
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 9
+ - 36
- 0
- 3
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 3
- 4
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -258,22 +423,22 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 16
- - 39
+ - 37
- 0
- 2
- 4
- 18
- - 39
+ - 37
- 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -283,7 +448,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -298,7 +463,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -308,7 +473,7 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
- 2
- 4
@@ -318,7 +483,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -328,7 +493,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -338,12 +503,12 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 4
- 0
- 16
- - 33
+ - 32
- 1
- 1
- 4
@@ -353,7 +518,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -363,7 +528,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -373,177 +538,202 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 32
- - 39
+ - 37
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 3
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 3
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 7
- - 39
+ - 37
- 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -553,12 +743,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -568,7 +758,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -578,7 +768,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -588,22 +778,22 @@ result: !SemanticTokens
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 16
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 3
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -613,7 +803,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -630,20 +820,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -653,7 +858,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -663,7 +868,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -675,20 +880,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 32
- - 34
+ - 33
- 1
- 1
- 4
@@ -698,7 +918,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -708,7 +928,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -721,7 +941,12 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 10
+ - 1
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
- 5
- 7
- 0
@@ -730,20 +955,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 9
+ - 36
+ - 0
- 6
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 4
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -753,7 +993,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -763,7 +1003,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -775,25 +1015,40 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 0
- 7
- - 34
+ - 33
- 1
- 1
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -803,12 +1058,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -818,12 +1073,12 @@ result: !SemanticTokens
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 2
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -833,29 +1088,14 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 0
- 49
- - 34
- - 1
+ - 33
- 1
- 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
- - 3
- 4
- 1
- 21
@@ -863,13 +1103,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -878,13 +1123,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -893,7 +1148,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -903,7 +1158,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -915,20 +1170,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
@@ -938,7 +1208,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -948,7 +1218,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -960,22 +1230,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -983,13 +1243,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -998,21 +1263,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[hover.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[hover.robot].out
index 7df286095..b28ca4891 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[hover.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[hover.robot].out
@@ -3,32 +3,32 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -38,27 +38,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -66,134 +66,164 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 14
- - 53
+ - 51
- 0
- 0
- 18
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 17
- - 53
+ - 51
- 0
- 0
- 29
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 8
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 17
- - 53
+ - 51
- 0
- 0
- 30
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 10
- - 53
+ - 51
- 0
- 4
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 3
+ - 0
+ - 9
+ - 36
+ - 0
- 0
- - 4
- 18
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -203,7 +233,7 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -213,22 +243,87 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
- 1
- 21
- 0
- - 28
+ - 3
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 36
+ - 0
+ - 3
+ - 0
+ - 5
+ - 36
- 0
- 1
- 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 20
+ - 36
+ - 0
- 5
- - 33
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 25
+ - 36
+ - 0
+ - 0
+ - 26
+ - 4
+ - 36
+ - 0
+ - 8
+ - 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 6
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
- 1
- 1
- 4
@@ -238,7 +333,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -253,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -263,8 +358,13 @@ result: !SemanticTokens
- 0
- 3
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -273,7 +373,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -283,7 +383,7 @@ result: !SemanticTokens
- 0
- 3
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -293,37 +393,67 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 3
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -333,52 +463,97 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 29
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 0
+ - 12
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 9
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 3
- 4
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -388,12 +563,12 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
- 4
- 0
- 6
- - 33
+ - 32
- 1
- 2
- 4
@@ -403,7 +578,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -413,7 +588,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -423,27 +598,32 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
- 9
- - 53
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
- 0
- 0
- 9
@@ -453,17 +633,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -473,12 +663,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -488,17 +683,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
- 0
- 19
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -506,34 +701,49 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 13
+ - 1
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 56
+ - 54
- 0
- 0
- 6
- 1
- 21
- 0
+ - 0
+ - 1
+ - 10
+ - 36
+ - 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
- 0
- 28
@@ -543,22 +753,22 @@ result: !SemanticTokens
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 5
- 4
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 7
- 15
- - 40
+ - 38
- 0
- 0
- 21
@@ -568,122 +778,142 @@ result: !SemanticTokens
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- - 2
- - 35
+ - 2
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
@@ -693,7 +923,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -703,17 +933,17 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
@@ -723,7 +953,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -733,17 +963,17 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -753,97 +983,97 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -853,72 +1083,72 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 5
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 0
- 21
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 40
+ - 38
- 0
- 0
- 1
- 3
- - 40
+ - 38
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 12
- 3
- - 40
+ - 38
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 6
- 3
- - 40
+ - 38
- 1024
- 5
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -928,22 +1158,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 0
- - 27
+ - 16
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 40
+ - 38
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -953,12 +1188,12 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 40
+ - 38
- 1024
- 4
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
@@ -968,7 +1203,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -978,42 +1213,42 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -1023,32 +1258,32 @@ result: !SemanticTokens
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 4
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 18
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1058,12 +1293,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1073,12 +1308,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1088,27 +1323,27 @@ result: !SemanticTokens
- 0
- 1
- 18
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -1118,12 +1353,12 @@ result: !SemanticTokens
- 0
- 1
- 16
- - 39
+ - 37
- 0
- 3
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -1133,12 +1368,12 @@ result: !SemanticTokens
- 0
- 1
- 21
- - 39
+ - 37
- 0
- 3
- 4
- 8
- - 53
+ - 51
- 0
- 0
- 8
@@ -1148,12 +1383,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1163,12 +1398,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 19
- - 53
+ - 51
- 0
- 0
- 19
@@ -1178,17 +1413,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 4
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -1198,12 +1433,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -1213,7 +1448,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -1223,7 +1458,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -1233,92 +1468,92 @@ result: !SemanticTokens
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 9
- - 34
+ - 33
- 1
- 1
- 4
- 11
- - 39
+ - 37
- 1024
- 0
- 15
- 3
- - 40
+ - 38
- 1024
- 4
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 16
- - 40
+ - 38
- 0
- 0
- 20
- 20
- - 40
+ - 38
- 0
- 5
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- 9
- 3
- - 35
+ - 34
- 0
- 0
- 5
- 16
- - 40
+ - 38
- 0
- 0
- 18
- 3
- - 35
+ - 34
- 0
- 0
- 5
- 20
- - 40
+ - 38
- 0
- 7
- 0
- 16
- - 34
+ - 33
- 1
- 2
- 4
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 13
- - 34
+ - 33
- 1
- 1
- 4
- 9
- - 39
+ - 37
- 1024
- 3
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -1328,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1345,20 +1580,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -1368,7 +1618,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1378,7 +1628,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -1390,20 +1640,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -1413,7 +1678,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1423,7 +1688,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1435,49 +1700,74 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 0
- 25
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 4
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 8
- 2
- - 24
+ - 23
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[old_for.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[old_for.robot].out
new file mode 100644
index 000000000..7be4fa033
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[old_for.robot].out
@@ -0,0 +1,98 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 4
+ - 37
+ - 0
+ - 0
+ - 8
+ - 9
+ - 36
+ - 0
+ - 1
+ - 8
+ - 1
+ - 37
+ - 0
+ - 0
+ - 9
+ - 9
+ - 36
+ - 0
+ - 1
+ - 8
+ - 1
+ - 37
+ - 0
+ - 2
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 2
+ - 34
+ - 0
+ - 0
+ - 14
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 14
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 8
+ - 44
+ - 0
+ - 1
+ - 8
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 18
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[playground.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[playground.robot].out
index 5062f2aba..40dfae3ad 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[playground.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[playground.robot].out
@@ -3,87 +3,147 @@ result: !SemanticTokens
- 0
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 13
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 2
- - 35
+ - 34
- 0
- 0
- 11
- 8
- - 39
+ - 37
- 1024
- 0
- 17
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 8
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 4
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 8
- - 34
+ - 33
- 1
- 1
- 4
@@ -93,7 +153,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -103,26 +163,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[references.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[references.robot].out
index 95a866faf..d90a50ead 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[references.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[references.robot].out
@@ -3,62 +3,77 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -68,27 +83,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -96,24 +111,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 3
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -123,32 +143,52 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 9
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 1
+ - 0
+ - 7
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,8 +208,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -178,7 +223,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -188,7 +233,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -198,22 +243,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -223,17 +283,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -243,7 +313,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,22 +323,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -278,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -288,7 +358,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -298,27 +368,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 9
- - 53
+ - 51
- 0
- 0
- 9
@@ -328,17 +403,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -348,17 +433,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -368,7 +463,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -378,12 +473,12 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 2
- 4
@@ -393,7 +488,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -403,117 +498,127 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 17
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 5
- - 36
+ - 35
- 2048
- 0
- 6
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 14
- - 36
+ - 35
- 2048
- 0
- 15
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 18
+ - 7
+ - 10
+ - 36
+ - 2048
+ - 0
+ - 11
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 15
+ - 7
+ - 7
+ - 36
+ - 2048
+ - 0
+ - 8
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 21
- - 39
+ - 37
- 0
- 2
- 4
- 21
- - 39
+ - 37
- 0
- 0
- 25
@@ -523,57 +628,57 @@ result: !SemanticTokens
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 6
- 2
- - 56
+ - 54
- 0
- 0
- 2
@@ -583,7 +688,7 @@ result: !SemanticTokens
- 2
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -593,12 +698,12 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 39
+ - 37
- 0
- 0
- 6
- 2
- - 56
+ - 54
- 0
- 0
- 2
@@ -606,9 +711,14 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 12
+ - 1
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 15
- - 56
+ - 54
- 0
- 0
- 15
@@ -616,24 +726,34 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 18
- 1
- - 17
- - 0
+ - 7
+ - 36
- 0
- - 3
- - 4
- - 17
+ - 0
+ - 8
+ - 7
+ - 36
+ - 0
+ - 0
+ - 9
+ - 1
+ - 17
+ - 0
+ - 0
+ - 3
+ - 4
+ - 17
- 0
- 5
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -643,12 +763,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -658,7 +778,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -668,7 +788,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -678,12 +798,12 @@ result: !SemanticTokens
- 4
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- 7
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -693,22 +813,32 @@ result: !SemanticTokens
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 17
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -718,7 +848,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -728,97 +858,192 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 4
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 22
- 4
- - 34
+ - 18
+ - 36
+ - 0
+ - 0
+ - 18
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 7
- - 34
+ - 33
- 1
- 0
- - 17
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 10
- 14
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -828,7 +1053,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -845,20 +1070,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -868,7 +1108,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -878,7 +1118,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -890,20 +1130,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -913,7 +1168,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -923,7 +1178,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -935,37 +1190,37 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- - 3
- 0
- - 49
- - 34
- - 1
- - 1
+ - 7
- 4
- - 1
- - 21
- - 256
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
+ - 49
+ - 33
- 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -973,13 +1228,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
- 2
- 4
- 1
@@ -988,13 +1248,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -1003,7 +1273,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1013,7 +1283,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1025,25 +1295,45 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- - 10
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 12
- - 39
+ - 37
- 1024
- 1
- 4
@@ -1053,7 +1343,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1063,7 +1353,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1075,22 +1365,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -1098,13 +1378,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
- 2
- 4
- 1
@@ -1113,27 +1398,52 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 12
- - 39
+ - 37
- 1024
- 1
- 4
@@ -1143,7 +1453,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -1153,27 +1463,42 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 4
+ - 36
- 0
- 2
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 17
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1183,52 +1508,52 @@ result: !SemanticTokens
- 0
- 1
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 10
+ - 36
+ - 0
- 2
- 8
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 12
+ - 36
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 33
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 2
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
@@ -1238,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1248,44 +1573,54 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 35
+ - 36
- 0
- 3
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 39
+ - 36
- 0
- 2
- 4
- 6
- - 35
+ - 34
- 0
- - 3
- 0
- - 57
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
+ - 10
+ - 9
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
- - 1
- - 21
- - 256
+ - 57
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1293,7 +1628,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1303,17 +1638,22 @@ result: !SemanticTokens
- 0
- 5
- 10
- - 56
+ - 54
- 0
- 2
- 4
- 5
- - 35
+ - 34
+ - 0
+ - 0
+ - 9
+ - 7
+ - 36
- 0
- 0
- - 20
+ - 11
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1323,39 +1663,24 @@ result: !SemanticTokens
- 0
- 1
- 10
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 31
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1363,7 +1688,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1373,59 +1698,59 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 1
- 4
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 2
- 4
- 4
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- - 3
- 0
- - 44
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
+ - 10
+ - 9
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
- - 1
- - 21
- - 256
+ - 44
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1433,7 +1758,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1443,27 +1768,37 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 10
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
+ - 4
+ - 36
- 0
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 24
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1473,52 +1808,67 @@ result: !SemanticTokens
- 0
- 1
- 10
- - 35
+ - 34
- 0
- 4
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 23
- - 34
+ - 33
- 1
- 1
- - 21
+ - 4
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
- 12
- - 39
+ - 37
- 1024
- 1
- - 22
+ - 4
+ - 13
+ - 36
+ - 0
+ - 0
+ - 18
- 12
- - 39
+ - 37
- 1024
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- - 41
+ - 25
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1528,37 +1878,37 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 35
+ - 34
- 0
- 2
- 8
- 13
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 28
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1568,22 +1918,22 @@ result: !SemanticTokens
- 0
- 1
- 13
- - 35
+ - 34
- 0
- 2
- 8
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 36
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1593,16 +1943,16 @@ result: !SemanticTokens
- 0
- 1
- 6
- - 35
+ - 34
- 0
- 1
- 8
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[remotetest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[remotetest.robot].out
index 91f1a4bce..539e5d2db 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[remotetest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[remotetest.robot].out
@@ -3,21 +3,21 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 4
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 30
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[reserved.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[reserved.robot].out
index 6afe4658d..ef17f9962 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[reserved.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[reserved.robot].out
@@ -3,47 +3,47 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 14
- - 39
+ - 37
- 0
- 1
- 4
- 5
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 39
+ - 37
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 7
@@ -53,17 +53,17 @@ result: !SemanticTokens
- 1
- 4
- 7
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 1
- 4
- 2
- - 39
+ - 37
- 0
- 0
- 6
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[sematic_tokenizing.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[sematic_tokenizing.robot].out
index 3dafc108f..a0933c3eb 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[sematic_tokenizing.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[sematic_tokenizing.robot].out
@@ -3,37 +3,37 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 40
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 17
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -43,12 +43,12 @@ result: !SemanticTokens
- 0
- 1
- 1
- - 35
+ - 34
- 0
- 0
- 5
- 8
- - 38
+ - 36
- 0
- 0
- 8
@@ -58,37 +58,37 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 17
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -98,12 +98,12 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 16
- - 38
+ - 36
- 0
- 0
- 16
@@ -113,22 +113,22 @@ result: !SemanticTokens
- 0
- 1
- 31
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
@@ -138,7 +138,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -148,62 +148,67 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 13
- 36
- 0
- 0
- - 22
+ - 17
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 27
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -213,32 +218,32 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -248,7 +253,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -258,17 +263,17 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 2
- - 39
+ - 37
- 0
- 3
- 0
- 8
- - 34
+ - 33
- 1
- 1
- 4
@@ -278,7 +283,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -288,21 +293,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 2
- 4
- 2
- - 39
+ - 37
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[setup_teardown.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[setup_teardown.robot].out
index 311584076..75cf1183e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[setup_teardown.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[setup_teardown.robot].out
@@ -3,92 +3,92 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 11
- - 36
+ - 35
- 2048
- 1
- 0
- 14
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 14
- - 36
+ - 35
- 2048
- 1
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 10
- - 36
+ - 35
- 2048
- 2
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 20
- 5
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 25
+ - 24
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -98,7 +98,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -108,17 +108,17 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -128,7 +128,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -138,17 +138,17 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +158,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,12 +168,12 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -183,7 +183,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -198,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -208,22 +208,32 @@ result: !SemanticTokens
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 16
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -233,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -243,21 +253,26 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 2
- 0
- 5
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[signature_help.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[signature_help.robot].out
index e7478c3f3..44c7241a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[signature_help.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[signature_help.robot].out
@@ -3,27 +3,27 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 12
- 10
- - 53
+ - 51
- 0
- 0
- 21
@@ -33,27 +33,27 @@ result: !SemanticTokens
- 3
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 12
- - 39
+ - 37
- 0
- 4
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 26
- - 39
+ - 37
- 0
- 0
- 73
@@ -63,7 +63,7 @@ result: !SemanticTokens
- 5
- 4
- 12
- - 39
+ - 37
- 0
- 0
- 20
@@ -71,9 +71,19 @@ result: !SemanticTokens
- 17
- 0
- 2
- - 20
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 39
+ - 37
- 0
- 0
- 38
@@ -83,7 +93,7 @@ result: !SemanticTokens
- 5
- 4
- 22
- - 39
+ - 37
- 0
- 0
- 44
@@ -93,12 +103,12 @@ result: !SemanticTokens
- 6
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 26
- - 34
+ - 33
- 1
- 1
- 4
@@ -108,7 +118,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -118,7 +128,7 @@ result: !SemanticTokens
- 0
- 5
- 10
- - 56
+ - 54
- 0
- 0
- 14
@@ -140,10 +150,15 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 17
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[symbols.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[symbols.robot].out
index f34821543..e13362ffe 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[symbols.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[symbols.robot].out
@@ -3,117 +3,167 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 2
+ - 0
+ - 8
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 2
- - 20
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
- 8
- - 39
+ - 37
- 1024
- 3
- - 37
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
- 8
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 5
+ - 12
+ - 36
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 5
+ - 11
+ - 36
+ - 0
+ - 0
+ - 13
- 2
- - 46
+ - 44
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 4
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 19
- 2
- - 24
+ - 23
+ - 0
+ - 0
+ - 6
+ - 6
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 31
+ - 30
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 2
- 0
- 10
- - 34
+ - 33
- 1
- 2
- 4
@@ -123,7 +173,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -133,86 +183,86 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 9
- - 56
+ - 54
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 2
- 0
- 15
- - 34
- - 1
- - 2
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 3
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 3
- 4
- 11
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 4
- 4
- 11
- - 39
+ - 37
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 20
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 5
+ - 9
+ - 36
- 0
- 2
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 5
+ - 10
+ - 36
- 0
- 2
- - 15
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 11
- 8
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[templates.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[templates.robot].out
index 745afa1e7..25cc698d3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[templates.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[templates.robot].out
@@ -3,37 +3,47 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 20
- 22
- - 39
+ - 37
- 0
- 2
- 0
- 13
- - 54
+ - 52
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 4
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -43,7 +53,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -58,7 +68,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -68,62 +78,92 @@ result: !SemanticTokens
- 0
- 5
- 16
- - 39
+ - 37
- 0
- 1
- 4
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 8
- 36
- 0
- 0
- - 17
+ - 12
- 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 11
- 36
- 0
- - 2
+ - 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- - 23
- - 1
+ - 5
+ - 14
- 36
- 0
+ - 0
+ - 18
- 1
- - 19
+ - 35
+ - 0
- 1
+ - 4
+ - 11
- 36
- 0
+ - 0
+ - 15
+ - 1
+ - 35
+ - 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 8
- 36
- 0
- 0
- - 17
+ - 12
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
+ - 35
+ - 0
+ - 0
+ - 7
+ - 14
- 36
- 0
- 0
- - 25
+ - 18
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -133,7 +173,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -143,57 +183,57 @@ result: !SemanticTokens
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 36
+ - 35
- 0
- 0
- 7
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -203,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -213,17 +253,17 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 9
- - 33
+ - 32
- 1
- 1
- 4
@@ -233,7 +273,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -243,72 +283,72 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -318,7 +358,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -328,52 +368,62 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
- 0
+ - 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -383,7 +433,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -393,47 +443,57 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 4
+ - 36
+ - 2048
- 0
- - 10
+ - 5
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -443,7 +503,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -453,42 +513,47 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 35
- - 33
+ - 32
- 1
- 1
- 4
@@ -498,7 +563,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -508,47 +573,47 @@ result: !SemanticTokens
- 0
- 5
- 41
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 22
- - 34
+ - 33
- 1
- 1
- 4
@@ -558,7 +623,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -568,42 +633,57 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 16
- - 34
+ - 33
- 1
- 1
- 4
@@ -613,7 +693,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -623,47 +703,62 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -673,7 +768,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -683,27 +778,37 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 28
+ - 7
+ - 17
+ - 36
+ - 0
+ - 0
+ - 21
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 2
- 0
- 19
- - 34
+ - 33
- 1
- 1
- 4
@@ -713,7 +818,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -723,52 +828,97 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 35
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 15
- 8
- - 46
+ - 8
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 11
- - 34
+ - 33
- 1
- 0
- - 15
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 4
- 6
- - 34
+ - 33
- 1
- 0
- - 17
+ - 6
+ - 11
+ - 36
+ - 0
+ - 0
+ - 11
- 4
- - 34
+ - 33
- 1
+ - 0
+ - 4
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -778,7 +928,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -788,21 +938,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[templates2.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[templates2.robot].out
index decfe09ce..a7484130f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[templates2.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[templates2.robot].out
@@ -3,97 +3,152 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 17
- 42
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 13
+ - 36
+ - 0
+ - 1
+ - 0
+ - 17
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 0
- 34
- 8
- - 29
+ - 28
- 0
- 0
- 17
- 8
- - 29
+ - 28
- 0
- 1
- 0
- 17
- - 33
+ - 32
- 1
- 0
- 34
- 7
+ - 35
+ - 0
+ - 0
+ - 17
+ - 17
- 36
- 0
- 1
- 0
- 16
- - 33
+ - 32
- 1
- 0
- - 51
- - 7
+ - 34
+ - 13
- 36
- 0
+ - 0
+ - 17
+ - 7
+ - 35
+ - 0
- 1
- 0
- 30
- - 33
+ - 32
- 1
- 0
- 34
- 7
- - 36
+ - 35
- 0
- 0
- 17
- 7
- - 36
+ - 35
- 0
- 1
- 0
- 15
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 8
+ - 36
+ - 0
+ - 0
+ - 17
+ - 17
+ - 36
+ - 0
- 1
- 0
- 14
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 1
- 0
- 28
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 8
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 22
- - 33
+ - 32
- 1
- 1
- 4
@@ -103,7 +158,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -113,52 +168,77 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- - 19
+ - 8
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 19
+ - 7
- 8
- - 46
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 44
- 0
- 1
- 8
- 7
+ - 35
+ - 0
+ - 0
+ - 11
+ - 8
- 36
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -168,7 +248,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -178,52 +258,77 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- 8
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 7
+ - 36
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 32
- - 33
+ - 32
- 1
- 1
- 4
@@ -233,7 +338,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -243,67 +348,97 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- 8
- 2
- - 35
+ - 34
- 0
- - 1
- - 23
+ - 0
+ - 4
- 7
- 36
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
- 0
- 11
+ - 7
+ - 35
+ - 0
- 1
+ - 12
+ - 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
+ - 0
+ - 11
+ - 1
+ - 35
+ - 0
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 42
- - 34
+ - 33
- 1
- 1
- 4
@@ -313,7 +448,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -323,22 +458,32 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 56
+ - 54
- 0
- 0
- 15
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 15
+ - 11
+ - 36
+ - 0
- 2
- 0
- 15
- - 34
+ - 33
- 1
- 1
- 4
@@ -348,7 +493,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -358,16 +503,26 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[variables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[variables.robot].out
index 04efdca20..d5e87872d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[variables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[variables.robot].out
@@ -3,237 +3,462 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 14
- - 25
+ - 24
- 0
- 0
- 20
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 26
+ - 7
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
- 0
- - 39
+ - 7
+ - 16
+ - 36
+ - 0
+ - 0
+ - 17
+ - 12
+ - 36
+ - 0
+ - 0
+ - 15
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 13
- - 40
+ - 38
- 1024
- 1
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 14
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 12
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 16
+ - 36
+ - 0
+ - 0
+ - 20
+ - 17
+ - 36
+ - 0
+ - 0
+ - 18
+ - 19
+ - 36
+ - 0
+ - 1
+ - 0
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
+ - 12
+ - 36
+ - 0
+ - 0
+ - 13
+ - 14
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
+ - 3
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
- 0
- 9
+ - 3
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
+ - 7
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 7
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 20
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 22
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
@@ -243,7 +468,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,367 +478,527 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
+ - 0
+ - 15
+ - 15
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 11
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 2
- - 46
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 19
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
+ - 1
- 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 24
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
- 1
- 4
- - 3
- - 39
- - 1024
- - 1
- - 14
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
- 12
- - 39
+ - 37
- 1024
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 24
+ - 36
+ - 0
- 1
- - 23
+ - 4
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- - 35
+ - 7
+ - 24
+ - 36
+ - 0
+ - 0
+ - 28
- 20
- 17
- 0
- 2
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 5
- - 35
+ - 34
- 0
- 1
- 8
- 5
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 16
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 2
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 39
+ - 37
- 1024
- 1
- 4
- 20
- - 39
+ - 37
- 1024
- 1
- 4
- 16
- - 39
+ - 37
- 1024
- 1
- 4
- 22
- - 39
+ - 37
- 1024
- 1
- 4
- 25
- - 39
+ - 37
- 1024
- 0
- 36
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 17
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 27
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 18
- - 39
+ - 37
- 1024
- 0
- 29
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 27
- 8
- - 40
+ - 38
- 1024
- 2
- 0
- 7
- - 33
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 32
- 1
+ - 2
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 2
- 4
- 9
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 4
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 13
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 2
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 2
- 0
- 9
- - 33
+ - 32
- 1
- 1
- 4
@@ -623,7 +1008,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -633,42 +1018,42 @@ result: !SemanticTokens
- 0
- 3
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
@@ -678,7 +1063,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -688,52 +1073,67 @@ result: !SemanticTokens
- 0
- 3
- 11
- - 39
+ - 37
- 0
- 0
- - 16
+ - 11
+ - 4
+ - 36
+ - 2048
+ - 0
- 5
- - 39
+ - 5
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
@@ -743,7 +1143,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -753,62 +1153,82 @@ result: !SemanticTokens
- 0
- 3
- 11
- - 39
+ - 37
- 0
- 0
- - 16
+ - 11
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 5
- - 39
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
- 0
+ - 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- - 14
- - 1
+ - 4
+ - 8
- 36
- 0
- 0
+ - 10
+ - 1
+ - 35
+ - 0
+ - 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 35
- - 33
+ - 32
- 1
- 1
- 4
@@ -818,7 +1238,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -828,67 +1248,77 @@ result: !SemanticTokens
- 0
- 3
- 41
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 15
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- - 62
+ - 5
+ - 23
+ - 36
+ - 0
+ - 0
+ - 30
+ - 25
+ - 36
+ - 0
+ - 0
+ - 27
- 6
- 17
- 0
- 2
- 0
- 15
- - 33
+ - 32
- 1
- 1
- 4
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 3
- - 56
+ - 54
- 0
- 0
- 3
@@ -898,17 +1328,17 @@ result: !SemanticTokens
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -918,7 +1348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -928,27 +1358,37 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 28
+ - 7
+ - 17
+ - 36
+ - 0
+ - 0
+ - 21
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 2
- 0
- 19
- - 34
+ - 33
- 1
- 1
- 4
@@ -958,7 +1398,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -968,52 +1408,97 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 11
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 8
- - 46
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 11
- - 34
+ - 33
- 1
- 0
- - 24
+ - 11
+ - 13
+ - 36
+ - 0
+ - 0
+ - 13
- 6
- - 34
+ - 33
- 1
- 0
- - 10
+ - 6
- 4
- - 34
+ - 36
+ - 0
+ - 0
+ - 4
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -1023,7 +1508,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1033,27 +1518,42 @@ result: !SemanticTokens
- 0
- 3
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 31
- - 34
+ - 33
- 1
- 1
- 4
@@ -1063,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1073,12 +1573,12 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 0
- 11
- 3
- - 56
+ - 54
- 0
- 0
- 7
@@ -1093,12 +1593,12 @@ result: !SemanticTokens
- 0
- 14
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 11
- - 56
+ - 54
- 0
- 0
- 15
@@ -1113,22 +1613,22 @@ result: !SemanticTokens
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 5
- - 34
+ - 33
- 1
- 1
- 4
- 31
- - 39
+ - 37
- 0
- 0
- 37
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -1138,7 +1638,7 @@ result: !SemanticTokens
- 0
- 4
- 8
- - 56
+ - 54
- 0
- 0
- 8
@@ -1148,6 +1648,6 @@ result: !SemanticTokens
- 2
- 0
- 18
- - 29
+ - 28
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-__init__.robot].out
index df8fc7278..e0e9f51af 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-__init__.robot].out
@@ -3,6 +3,6 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
index 8461ce14c..fb00afb00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
@@ -3,92 +3,122 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 9
- - 36
+ - 35
- 2048
- 0
- 10
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 9
- - 36
+ - 35
- 2048
- 0
- 10
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 0
- 6
- 13
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 3
- - 34
+ - 33
- 1
- 0
- - 15
+ - 3
+ - 12
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 34
+ - 33
- 1
+ - 0
+ - 6
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
+ - 0
+ - 18
+ - 8
+ - 36
+ - 0
- 2
- 0
- 3
- - 34
+ - 33
- 1
- 0
- - 15
+ - 3
+ - 12
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 34
+ - 33
- 1
- 0
+ - 6
+ - 8
+ - 36
+ - 0
+ - 0
+ - 8
- 14
- - 14
- - 34
+ - 33
- 1
- 1
- 4
@@ -98,7 +128,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -108,11 +138,26 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
+ - 0
+ - 18
+ - 8
+ - 36
+ - 0
+ - 0
+ - 23
+ - 7
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
index 3b0d75a71..eaf8038f2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
@@ -3,31 +3,56 @@ result: !SemanticTokens
- 0
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
- 0
- 18
- - 29
+ - 36
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 20
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
- 8
- - 39
+ - 37
- 1024
- 1
- - 27
+ - 4
+ - 19
+ - 36
+ - 0
+ - 0
+ - 23
- 8
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
index 827c4b670..9bc959b6c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
@@ -3,36 +3,46 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 16
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 16
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-sometasks.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
index 26fe2075d..3bcc51825 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 13
- - 30
+ - 29
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
index b41aa9750..6fa23318f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
@@ -3,11 +3,11 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 4
- - 25
+ - 24
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
index 8ef46bca6..6d97c1255 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
@@ -3,21 +3,21 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
index 89c5d5f77..00fda5828 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 4
- - 25
+ - 24
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf70-vartest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf70-vartest.robot].out
index e55ae5ef2..851e64d25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf70-vartest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf70-vartest.robot].out
@@ -3,169 +3,254 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 2
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 20
+ - 13
- 12
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 20
+ - 13
- 11
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 3
- 0
- 22
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
- 0
- 0
- - 20
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 13
- 6
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 57
+ - 55
- 0
- 0
- - 20
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 13
- 13
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 2
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 4
+ - 36
+ - 0
- 2
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
- 0
- 0
- - 30
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 23
- 11
- - 35
+ - 34
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 4
+ - 36
+ - 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 49
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 57
+ - 55
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- - 1
- - 13
- - 25
- - 256
+ - 7
+ - 9
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -173,13 +258,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -188,13 +278,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -203,7 +303,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -213,7 +313,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -225,25 +325,45 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
@@ -253,7 +373,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -263,7 +383,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -275,22 +395,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -298,13 +408,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -313,21 +428,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf72-grouptest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
index 816876a41..06694b6e5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
@@ -3,56 +3,56 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 39
+ - 37
- 0
- 1
- 8
- 5
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 54
+ - 52
- 0
- 2
- 4
- 5
- - 39
+ - 37
- 0
- 1
- 8
- 6
- - 39
+ - 37
- 0
- 1
- 8
- 5
- - 39
+ - 37
- 0
- 1
- 12
- 6
- - 39
+ - 37
- 0
- 2
- 8
- 3
- - 54
+ - 52
- 0
- 2
- 4
- 3
- - 54
+ - 52
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out
new file mode 100644
index 000000000..a6ca89433
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out
@@ -0,0 +1,588 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 26
+ - 36
+ - 0
+ - 1
+ - 0
+ - 15
+ - 36
+ - 0
+ - 1
+ - 0
+ - 21
+ - 36
+ - 0
+ - 1
+ - 0
+ - 17
+ - 36
+ - 0
+ - 1
+ - 0
+ - 20
+ - 36
+ - 0
+ - 1
+ - 0
+ - 29
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 15
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 13
+ - 20
+ - 36
+ - 0
+ - 1
+ - 4
+ - 26
+ - 37
+ - 0
+ - 1
+ - 4
+ - 39
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 0
+ - 40
+ - 7
+ - 36
+ - 0
+ - 2
+ - 0
+ - 15
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 19
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 9
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 8
+ - 44
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 12
+ - 44
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 0
+ - 13
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 2
+ - 34
+ - 0
+ - 0
+ - 12
+ - 8
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 4
+ - 34
+ - 0
+ - 0
+ - 8
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 30
+ - 32
+ - 1
+ - 1
+ - 4
+ - 28
+ - 37
+ - 0
+ - 1
+ - 4
+ - 2
+ - 37
+ - 0
+ - 0
+ - 2
+ - 8
+ - 35
+ - 2048
+ - 0
+ - 9
+ - 18
+ - 37
+ - 0
+ - 3
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 26
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 15
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 13
+ - 10
+ - 34
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 3
+ - 36
+ - 0
+ - 2
+ - 0
+ - 39
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 7
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 6
+ - 9
+ - 7
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 36
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 22
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 12
+ - 0
+ - 2
+ - 33
+ - 1
+ - 0
+ - 2
+ - 32
+ - 36
+ - 0
+ - 0
+ - 32
+ - 19
+ - 33
+ - 1
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[very_big_file.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[very_big_file.robot].out
index d4bc0b145..15e147ff0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[very_big_file.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_semantic_tokens.test[very_big_file.robot].out
@@ -3,92346 +3,100801 @@ result: !SemanticTokens
- 0
- 0
- 16
+ - 26
+ - 0
+ - 4
+ - 0
+ - 17
- 27
- 0
- 1
- 0
- - 13
- - 25
- - 256
- - 3
+ - 12
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 1
- 0
- 17
- - 28
+ - 36
- 0
- - 7
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 17
- - 34
+ - 33
- 1
- 0
- - 24
+ - 17
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 51
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 0
- - 19
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 32
- - 34
+ - 33
- 1
+ - 0
+ - 32
+ - 12
+ - 36
+ - 0
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 40
- - 34
+ - 33
- 1
- 0
- - 47
+ - 40
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 6
- - 34
+ - 33
- 1
+ - 0
+ - 6
+ - 11
+ - 36
+ - 0
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 62
- - 34
+ - 33
- 1
- 0
- - 73
+ - 62
+ - 11
+ - 36
+ - 0
+ - 0
+ - 11
- 1
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 0
- - 19
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
+ - 33
- 33
- - 34
- 1
- 0
- - 50
+ - 33
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
- 1
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 50
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 28
- - 34
+ - 33
- 1
- 0
- - 35
+ - 28
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 20
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 34
+ - 33
- 1
- 0
- - 24
+ - 17
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 21
- - 34
+ - 33
- 1
- 0
- - 30
+ - 21
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 13
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 30
- - 34
+ - 33
- 1
- 0
- - 37
+ - 30
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 13
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_workspace_symbols.test[].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_workspace_symbols.test[].out
index c43b56db4..9c15a4617 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_workspace_symbols.test[].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_workspace_symbols.test[].out
@@ -81,10 +81,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 9
start:
- character: 21
+ character: 23
line: 9
uri: bddstyle.robot
name: ${input}
@@ -111,10 +111,10 @@ result:
location:
range:
end:
- character: 46
+ character: 45
line: 9
start:
- character: 33
+ character: 35
line: 9
uri: bddstyle.robot
name: ${multiplier}
@@ -141,10 +141,10 @@ result:
location:
range:
end:
- character: 59
+ character: 58
line: 9
start:
- character: 50
+ character: 52
line: 9
uri: bddstyle.robot
name: ${result}
@@ -276,10 +276,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 119
start:
- character: 19
+ character: 21
line: 119
uri: code_action_show_documentation.robot
name: ${A VAR}
@@ -291,10 +291,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 124
start:
- character: 28
+ character: 30
line: 124
uri: code_action_show_documentation.robot
name: ${A VAR}
@@ -306,10 +306,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
uri: code_action_show_documentation.robot
name: ${LIB_ARG}
@@ -321,10 +321,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: code_action_show_documentation.robot
name: ${a var}
@@ -336,10 +336,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 129
start:
- character: 19
+ character: 21
line: 129
uri: code_action_show_documentation.robot
name: ${a}
@@ -351,10 +351,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: code_action_show_documentation.robot
name: ${bananas}
@@ -381,10 +381,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 129
start:
- character: 27
+ character: 29
line: 129
uri: code_action_show_documentation.robot
name: ${b}
@@ -411,10 +411,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 52
start:
- character: 4
+ character: 6
line: 52
uri: code_action_show_documentation.robot
name: ${result}
@@ -486,10 +486,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 124
start:
- character: 19
+ character: 21
line: 124
uri: code_action_show_documentation.robot
name: ${tt}
@@ -516,10 +516,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 97
start:
- character: 19
+ character: 21
line: 97
uri: code_action_show_documentation.robot
name: ${type}
@@ -846,10 +846,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 113
start:
- character: 19
+ character: 21
line: 113
uri: document_highlight.robot
name: ${A VAR}
@@ -861,10 +861,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 122
start:
- character: 28
+ character: 30
line: 122
uri: document_highlight.robot
name: ${A VAR}
@@ -876,10 +876,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: document_highlight.robot
name: ${A}
@@ -891,10 +891,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 25
start:
- character: 0
+ character: 2
line: 25
uri: document_highlight.robot
name: ${B}
@@ -906,10 +906,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: document_highlight.robot
name: ${LIB_ARG}
@@ -921,10 +921,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 20
start:
- character: 0
+ character: 2
line: 20
uri: document_highlight.robot
name: ${a var}
@@ -936,10 +936,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 164
start:
- character: 32
+ character: 34
line: 164
uri: document_highlight.robot
name: ${a_second_arg}
@@ -951,10 +951,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 169
start:
- character: 32
+ character: 34
line: 169
uri: document_highlight.robot
name: ${a_second_arg}
@@ -966,10 +966,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 164
start:
- character: 19
+ character: 21
line: 164
uri: document_highlight.robot
name: ${an_arg}
@@ -981,10 +981,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 169
start:
- character: 19
+ character: 21
line: 169
uri: document_highlight.robot
name: ${an_arg}
@@ -996,10 +996,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 132
start:
- character: 19
+ character: 21
line: 132
uri: document_highlight.robot
name: ${a}
@@ -1011,10 +1011,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 132
start:
- character: 27
+ character: 29
line: 132
uri: document_highlight.robot
name: ${b}
@@ -1026,10 +1026,10 @@ result:
location:
range:
end:
- character: 44
+ character: 43
line: 132
start:
- character: 40
+ character: 42
line: 132
uri: document_highlight.robot
name: ${c}
@@ -1056,10 +1056,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 57
start:
- character: 4
+ character: 6
line: 57
uri: document_highlight.robot
name: ${result}
@@ -1086,10 +1086,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 122
start:
- character: 19
+ character: 21
line: 122
uri: document_highlight.robot
name: ${tt}
@@ -1431,10 +1431,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 10
start:
- character: 19
+ character: 21
line: 10
uri: embedded_keywords.robot
name: ${data}
@@ -1566,10 +1566,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 2
start:
- character: 4
+ character: 6
line: 2
uri: fibonaci.robot
name: ${a}
@@ -1581,10 +1581,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 36
start:
- character: 4
+ character: 6
line: 36
uri: fibonaci.robot
name: ${a}
@@ -1596,10 +1596,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 27
start:
- character: 8
+ character: 10
line: 27
uri: fibonaci.robot
name: ${n1}
@@ -1611,10 +1611,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 28
start:
- character: 8
+ character: 10
line: 28
uri: fibonaci.robot
name: ${n2}
@@ -1626,10 +1626,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 22
start:
- character: 19
+ character: 21
line: 22
uri: fibonaci.robot
name: ${n}
@@ -1641,10 +1641,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 35
start:
- character: 19
+ character: 21
line: 35
uri: fibonaci.robot
name: ${n}
@@ -1656,10 +1656,10 @@ result:
location:
range:
end:
- character: 12
+ character: 11
line: 25
start:
- character: 8
+ character: 10
line: 25
uri: fibonaci.robot
name: ${r}
@@ -1821,10 +1821,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 32
start:
- character: 19
+ character: 21
line: 32
uri: first.robot
name: ${b}
@@ -1956,10 +1956,10 @@ result:
location:
range:
end:
- character: 47
+ character: 20
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: firstresource.resource
name: ${A_VAR_FROM_RESOURE}
@@ -1971,10 +1971,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 23
start:
- character: 27
+ character: 29
line: 23
uri: firstresource.resource
name: ${a long name}
@@ -1986,10 +1986,10 @@ result:
location:
range:
end:
- character: 61
+ character: 60
line: 23
start:
- character: 46
+ character: 48
line: 23
uri: firstresource.resource
name: ${a_short_name}
@@ -2001,10 +2001,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 23
start:
- character: 19
+ character: 21
line: 23
uri: firstresource.resource
name: ${a}
@@ -2016,10 +2016,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 30
start:
- character: 19
+ character: 21
line: 30
uri: firstresource.resource
name: "${\U0001F413}"
@@ -2031,10 +2031,10 @@ result:
location:
range:
end:
- character: 34
+ character: 33
line: 30
start:
- character: 27
+ character: 29
line: 30
uri: firstresource.resource
name: "${\U0001F60E\U0001F60B\U0001F619\U0001F619}"
@@ -2046,10 +2046,10 @@ result:
location:
range:
end:
- character: 51
+ character: 50
line: 30
start:
- character: 39
+ character: 41
line: 30
uri: firstresource.resource
name: "${\U0001F9DF\u200D\u2642\uFE0F\U0001F6C3\U0001FAC5\U0001F3FF\U0001F478\U0001F3FF\
@@ -2137,10 +2137,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 53
start:
- character: 4
+ character: 6
line: 53
uri: foldingrange.robot
name: ${a}
@@ -2152,10 +2152,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 81
start:
- character: 4
+ character: 6
line: 81
uri: foldingrange.robot
name: ${a}
@@ -2167,10 +2167,10 @@ result:
location:
range:
end:
- character: 15
+ character: 14
line: 12
start:
- character: 11
+ character: 13
line: 12
uri: foldingrange.robot
name: ${i}
@@ -2272,10 +2272,10 @@ result:
location:
range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
uri: goto.robot
name: ${A VAR1}
@@ -2287,10 +2287,10 @@ result:
location:
range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
uri: goto.robot
name: ${A VAR}
@@ -2302,10 +2302,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
uri: goto.robot
name: ${A VAR}
@@ -2317,10 +2317,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
uri: goto.robot
name: ${A VAR}
@@ -2332,10 +2332,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
uri: goto.robot
name: ${A}
@@ -2347,10 +2347,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
uri: goto.robot
name: ${B}
@@ -2362,10 +2362,10 @@ result:
location:
range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
uri: goto.robot
name: ${DOT}
@@ -2377,10 +2377,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
uri: goto.robot
name: ${LIB_ARG}
@@ -2392,10 +2392,10 @@ result:
location:
range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
uri: goto.robot
name: ${MY_DIR}
@@ -2407,10 +2407,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 213
start:
- character: 32
+ character: 34
line: 213
uri: goto.robot
name: ${a_second_arg}
@@ -2422,10 +2422,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 218
start:
- character: 32
+ character: 34
line: 218
uri: goto.robot
name: ${a_second_arg}
@@ -2437,10 +2437,10 @@ result:
location:
range:
end:
- character: 50
+ character: 14
line: 32
start:
- character: 0
+ character: 2
line: 32
uri: goto.robot
name: ${all together}
@@ -2452,10 +2452,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
uri: goto.robot
name: ${an_arg}
@@ -2467,10 +2467,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
uri: goto.robot
name: ${an_arg}
@@ -2482,10 +2482,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 136
start:
- character: 4
+ character: 6
line: 136
uri: goto.robot
name: ${a}
@@ -2497,10 +2497,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
uri: goto.robot
name: ${a}
@@ -2512,10 +2512,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
uri: goto.robot
name: ${b}
@@ -2527,10 +2527,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
uri: goto.robot
name: ${key}
@@ -2542,10 +2542,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
uri: goto.robot
name: ${tt}
@@ -2557,10 +2557,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
uri: goto.robot
name: ${tt}
@@ -2572,10 +2572,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
uri: goto.robot
name: ${value}
@@ -2587,10 +2587,10 @@ result:
location:
range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: goto.robot
name: '&{A DICT}'
@@ -2602,10 +2602,10 @@ result:
location:
range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
uri: goto.robot
name: '&{dict_var}'
@@ -2617,10 +2617,10 @@ result:
location:
range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
uri: goto.robot
name: '@{list_var}'
@@ -2887,10 +2887,10 @@ result:
location:
range:
end:
- character: 28
+ character: 7
line: 30
start:
- character: 0
+ character: 2
line: 30
uri: hover.robot
name: ${A VAR}
@@ -2902,10 +2902,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 267
start:
- character: 19
+ character: 21
line: 267
uri: hover.robot
name: ${A VAR}
@@ -2917,10 +2917,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 276
start:
- character: 28
+ character: 30
line: 276
uri: hover.robot
name: ${A VAR}
@@ -2932,10 +2932,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 41
start:
- character: 0
+ character: 2
line: 41
uri: hover.robot
name: ${A}
@@ -2947,10 +2947,10 @@ result:
location:
range:
end:
- character: 9
+ character: 3
line: 42
start:
- character: 0
+ character: 2
line: 42
uri: hover.robot
name: ${B}
@@ -2962,10 +2962,10 @@ result:
location:
range:
end:
- character: 28
+ character: 3
line: 43
start:
- character: 0
+ character: 2
line: 43
uri: hover.robot
name: ${C}
@@ -2977,10 +2977,10 @@ result:
location:
range:
end:
- character: 9
+ character: 3
line: 56
start:
- character: 0
+ character: 2
line: 56
uri: hover.robot
name: ${D}
@@ -2992,10 +2992,10 @@ result:
location:
range:
end:
- character: 41
+ character: 3
line: 57
start:
- character: 0
+ character: 2
line: 57
uri: hover.robot
name: ${E}
@@ -3007,10 +3007,10 @@ result:
location:
range:
end:
- character: 14
+ character: 3
line: 58
start:
- character: 0
+ character: 2
line: 58
uri: hover.robot
name: ${F}
@@ -3022,10 +3022,25 @@ result:
location:
range:
end:
- character: 38
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
+ uri: hover.robot
+ name: ${INVALID VAR ${}}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
line: 48
start:
- character: 0
+ character: 2
line: 48
uri: hover.robot
name: ${K}
@@ -3037,10 +3052,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 36
start:
- character: 0
+ character: 2
line: 36
uri: hover.robot
name: ${LIB_ARG}
@@ -3052,10 +3067,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 286
start:
- character: 19
+ character: 21
line: 286
uri: hover.robot
name: ${a}
@@ -3067,10 +3082,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 286
start:
- character: 27
+ character: 29
line: 286
uri: hover.robot
name: ${b}
@@ -3097,10 +3112,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 81
start:
- character: 11
+ character: 13
line: 81
uri: hover.robot
name: ${key}
@@ -3112,10 +3127,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 111
start:
- character: 4
+ character: 6
line: 111
uri: hover.robot
name: ${result}
@@ -3127,10 +3142,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 276
start:
- character: 19
+ character: 21
line: 276
uri: hover.robot
name: ${tt}
@@ -3142,10 +3157,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 81
start:
- character: 21
+ character: 23
line: 81
uri: hover.robot
name: ${value}
@@ -3157,10 +3172,10 @@ result:
location:
range:
end:
- character: 35
+ character: 8
line: 33
start:
- character: 0
+ character: 2
line: 33
uri: hover.robot
name: '&{A DICT}'
@@ -3457,10 +3472,25 @@ result:
location:
range:
end:
- character: 13
+ character: 17
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: indexed_variables.robot
+ name: ${A_LIST ${index}}
+ tags: null
+- !WorkspaceSymbol
+ container_name: indexed_variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
line: 2
start:
- character: 0
+ character: 2
line: 2
uri: indexed_variables.robot
name: ${index}
@@ -3472,10 +3502,10 @@ result:
location:
range:
end:
- character: 24
+ character: 8
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: indexed_variables.robot
name: '@{A_LIST}'
@@ -3510,6 +3540,66 @@ result:
uri: jsonvariables.robot
name: first
tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 10
+ start:
+ character: 13
+ line: 10
+ uri: old_for.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: old_for.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 6
+ start:
+ character: 0
+ line: 6
+ uri: old_for.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: old_for.robot
+ name: third
+ tags: null
- !WorkspaceSymbol
container_name: part1__suite
data: null
@@ -3562,10 +3652,10 @@ result:
location:
range:
end:
- character: 21
+ character: 3
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: playground.robot
name: ${2}
@@ -3577,10 +3667,10 @@ result:
location:
range:
end:
- character: 12
+ character: 3
line: 2
start:
- character: 0
+ character: 2
line: 2
uri: playground.robot
name: ${a}
@@ -3592,10 +3682,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 22
start:
- character: 19
+ character: 21
line: 22
uri: playground.robot
name: ${a}
@@ -3607,10 +3697,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 22
start:
- character: 27
+ character: 29
line: 22
uri: playground.robot
name: ${b}
@@ -3622,10 +3712,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 15
start:
- character: 4
+ character: 6
line: 15
uri: playground.robot
name: ${v}
@@ -3667,10 +3757,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 150
start:
- character: 19
+ character: 21
line: 150
uri: references.robot
name: ${A VAR}
@@ -3682,10 +3772,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 159
start:
- character: 28
+ character: 30
line: 159
uri: references.robot
name: ${A VAR}
@@ -3697,10 +3787,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: references.robot
name: ${LIB_ARG}
@@ -3712,10 +3802,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 270
start:
- character: 4
+ character: 6
line: 270
uri: references.robot
name: ${MATCH TYPE}
@@ -3727,10 +3817,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: references.robot
name: ${a var}
@@ -3742,10 +3832,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 245
start:
- character: 19
+ character: 21
line: 245
uri: references.robot
name: ${arg}
@@ -3757,10 +3847,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 169
start:
- character: 19
+ character: 21
line: 169
uri: references.robot
name: ${a}
@@ -3772,10 +3862,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
uri: references.robot
name: ${a}
@@ -3787,10 +3877,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 193
start:
- character: 19
+ character: 21
line: 193
uri: references.robot
name: ${a}
@@ -3802,10 +3892,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 26
start:
- character: 0
+ character: 2
line: 26
uri: references.robot
name: ${bananas}
@@ -3832,10 +3922,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 269
start:
- character: 4
+ character: 6
line: 269
uri: references.robot
name: ${beginning}
@@ -3847,10 +3937,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 169
start:
- character: 27
+ character: 29
line: 169
uri: references.robot
name: ${b}
@@ -3862,10 +3952,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
uri: references.robot
name: ${b}
@@ -3877,10 +3967,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 193
start:
- character: 27
+ character: 29
line: 193
uri: references.robot
name: ${b}
@@ -3907,10 +3997,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 258
start:
- character: 19
+ character: 21
line: 258
uri: references.robot
name: ${count}
@@ -3982,10 +4072,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 59
start:
- character: 4
+ character: 6
line: 59
uri: references.robot
name: ${result}
@@ -3997,10 +4087,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 205
start:
- character: 4
+ character: 6
line: 205
uri: references.robot
name: ${result}
@@ -4012,10 +4102,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 236
start:
- character: 19
+ character: 21
line: 236
uri: references.robot
name: ${retries}
@@ -4027,10 +4117,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 258
start:
- character: 31
+ character: 33
line: 258
uri: references.robot
name: ${retries}
@@ -4102,10 +4192,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 159
start:
- character: 19
+ character: 21
line: 159
uri: references.robot
name: ${tt}
@@ -4132,10 +4222,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 122
start:
- character: 19
+ character: 21
line: 122
uri: references.robot
name: ${type}
@@ -4147,10 +4237,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 224
start:
- character: 19
+ character: 21
line: 224
uri: references.robot
name: ${val}
@@ -4207,10 +4297,10 @@ result:
location:
range:
end:
- character: 11
+ character: 4
line: 27
start:
- character: 0
+ character: 2
line: 27
uri: references.robot
name: "${\U0001F9E8\U0001F9E8}"
@@ -4657,10 +4747,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 31
start:
- character: 19
+ character: 21
line: 31
uri: sematic_tokenizing.robot
name: ${a}
@@ -4672,10 +4762,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 31
start:
- character: 27
+ character: 29
line: 31
uri: sematic_tokenizing.robot
name: ${b}
@@ -4687,10 +4777,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 31
start:
- character: 35
+ character: 37
line: 31
uri: sematic_tokenizing.robot
name: ${c}
@@ -4702,10 +4792,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 26
start:
- character: 19
+ character: 21
line: 26
uri: sematic_tokenizing.robot
name: ${type}
@@ -4822,10 +4912,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 30
start:
- character: 19
+ character: 21
line: 30
uri: setup_teardown.robot
name: ${type}
@@ -4927,10 +5017,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 19
start:
- character: 4
+ character: 6
line: 19
uri: signature_help.robot
name: ${a}
@@ -4942,10 +5032,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 19
start:
- character: 12
+ character: 14
line: 19
uri: signature_help.robot
name: ${b}
@@ -4957,10 +5047,10 @@ result:
location:
range:
end:
- character: 57
+ character: 56
line: 32
start:
- character: 50
+ character: 52
line: 32
uri: signature_help.robot
name: ${html}
@@ -4972,10 +5062,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 32
start:
- character: 33
+ character: 35
line: 32
uri: signature_help.robot
name: ${level}
@@ -4987,10 +5077,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 32
start:
- character: 19
+ character: 21
line: 32
uri: signature_help.robot
name: ${message}
@@ -5182,10 +5272,10 @@ result:
location:
range:
end:
- character: 13
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: symbols.robot
name: ${A_VAR}
@@ -5212,10 +5302,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 41
start:
- character: 19
+ character: 21
line: 41
uri: symbols.robot
name: ${first}
@@ -5227,10 +5317,10 @@ result:
location:
range:
end:
- character: 33
+ character: 32
line: 16
start:
- character: 20
+ character: 22
line: 16
uri: symbols.robot
name: ${kw_result1}
@@ -5242,10 +5332,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 13
start:
- character: 4
+ character: 6
line: 13
uri: symbols.robot
name: ${kw_result}
@@ -5272,10 +5362,10 @@ result:
location:
range:
end:
- character: 20
+ character: 19
line: 21
start:
- character: 9
+ character: 11
line: 21
uri: symbols.robot
name: ${loop_var}
@@ -5287,10 +5377,10 @@ result:
location:
range:
end:
- character: 40
+ character: 39
line: 41
start:
- character: 31
+ character: 33
line: 41
uri: symbols.robot
name: ${second}
@@ -5393,10 +5483,10 @@ result:
location:
range:
end:
- character: 13
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: templates.robot
name: ${A VAR}
@@ -5408,10 +5498,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 79
start:
- character: 19
+ character: 21
line: 79
uri: templates.robot
name: ${aaa}
@@ -5423,10 +5513,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 61
start:
- character: 19
+ character: 21
line: 61
uri: templates.robot
name: ${a}
@@ -5438,10 +5528,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 68
start:
- character: 19
+ character: 21
line: 68
uri: templates.robot
name: ${a}
@@ -5468,10 +5558,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 89
start:
- character: 19
+ character: 21
line: 89
uri: templates.robot
name: ${a}
@@ -5483,10 +5573,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 61
start:
- character: 27
+ character: 29
line: 61
uri: templates.robot
name: ${b}
@@ -5498,10 +5588,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 68
start:
- character: 27
+ character: 29
line: 68
uri: templates.robot
name: ${b}
@@ -5528,10 +5618,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 89
start:
- character: 27
+ character: 29
line: 89
uri: templates.robot
name: ${b}
@@ -5543,10 +5633,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 61
start:
- character: 35
+ character: 37
line: 61
uri: templates.robot
name: ${c}
@@ -5558,10 +5648,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 68
start:
- character: 35
+ character: 37
line: 68
uri: templates.robot
name: ${c}
@@ -5588,10 +5678,10 @@ result:
location:
range:
end:
- character: 46
+ character: 45
line: 89
start:
- character: 35
+ character: 37
line: 89
uri: templates.robot
name: ${expected}
@@ -5603,10 +5693,10 @@ result:
location:
range:
end:
- character: 15
+ character: 14
line: 81
start:
- character: 11
+ character: 13
line: 81
uri: templates.robot
name: ${i}
@@ -5618,10 +5708,10 @@ result:
location:
range:
end:
- character: 26
+ character: 10
line: 7
start:
- character: 0
+ character: 2
line: 7
uri: templates.robot
name: '@{LIST VAR}'
@@ -5858,10 +5948,10 @@ result:
location:
range:
end:
- character: 23
+ character: 16
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: templates2.robot
name: ${VALID PASSWORD}
@@ -5873,10 +5963,10 @@ result:
location:
range:
end:
- character: 22
+ character: 12
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: templates2.robot
name: ${VALID USER}
@@ -5888,10 +5978,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 53
start:
- character: 19
+ character: 21
line: 53
uri: templates2.robot
name: ${a}
@@ -5903,10 +5993,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 53
start:
- character: 27
+ character: 29
line: 53
uri: templates2.robot
name: ${b}
@@ -5918,10 +6008,10 @@ result:
location:
range:
end:
- character: 19
+ character: 18
line: 22
start:
- character: 11
+ character: 13
line: 22
uri: templates2.robot
name: ${index}
@@ -5933,10 +6023,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 19
start:
- character: 11
+ character: 13
line: 19
uri: templates2.robot
name: ${item}
@@ -5948,10 +6038,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 28
start:
- character: 11
+ character: 13
line: 28
uri: templates2.robot
name: ${item}
@@ -5963,10 +6053,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 38
start:
- character: 11
+ character: 13
line: 38
uri: templates2.robot
name: ${item}
@@ -5978,10 +6068,10 @@ result:
location:
range:
end:
- character: 45
+ character: 44
line: 49
start:
- character: 34
+ character: 36
line: 49
uri: templates2.robot
name: ${password}
@@ -5993,10 +6083,10 @@ result:
location:
range:
end:
- character: 30
+ character: 29
line: 49
start:
- character: 19
+ character: 21
line: 49
uri: templates2.robot
name: ${username}
@@ -6008,10 +6098,10 @@ result:
location:
range:
end:
- character: 38
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: templates2.robot
name: '@{ITEMS}'
@@ -6077,109 +6167,619 @@ result:
name: Example keyword
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 16
+ line: 10
+ start:
+ character: 0
+ line: 10
+ uri: templates2.robot
+ name: Invalid Password
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 17
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: templates2.robot
+ name: Invalid User Name
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 11
+ start:
+ character: 0
+ line: 11
+ uri: templates2.robot
+ name: Invalid User Name and Password
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 42
+ line: 48
+ start:
+ character: 0
+ line: 48
+ uri: templates2.robot
+ name: Login with invalid credentials should fail
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 24
+ line: 26
+ start:
+ character: 0
+ line: 26
+ uri: templates2.robot
+ name: Template with FOR and IF
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 0
+ line: 36
+ uri: templates2.robot
+ name: Template with FOR and IF invalid
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 22
+ line: 17
+ start:
+ character: 0
+ line: 17
+ uri: templates2.robot
+ name: Template with FOR loop
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 7
+ start:
+ character: 2
+ line: 7
+ uri: variable_conversion.robot
+ name: '${DATES: list[date]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 28
+ line: 8
+ start:
+ character: 2
+ line: 8
+ uri: variable_conversion.robot
+ name: '${PRIORITIES: dict[int, str]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 70
+ start:
+ character: 21
+ line: 70
+ uri: variable_conversion.robot
+ name: '${a: int | str | None}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 8
+ line: 1
+ start:
+ character: 2
+ line: 1
+ uri: variable_conversion.robot
+ name: '${a: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 47
+ start:
+ character: 6
+ line: 47
+ uri: variable_conversion.robot
+ name: '${a: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 27
+ line: 57
+ start:
+ character: 21
+ line: 57
+ uri: variable_conversion.robot
+ name: '${a: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 58
+ start:
+ character: 13
+ line: 58
+ uri: variable_conversion.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 65
+ start:
+ character: 21
+ line: 65
+ uri: variable_conversion.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 37
+ line: 65
+ start:
+ character: 31
+ line: 65
+ uri: variable_conversion.robot
+ name: '${b: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 57
+ start:
+ character: 34
+ line: 57
+ uri: variable_conversion.robot
+ name: '${c: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 59
+ line: 57
+ start:
+ character: 47
+ line: 57
+ uri: variable_conversion.robot
+ name: '${d: list[str]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 26
+ start:
+ character: 13
+ line: 26
+ uri: variable_conversion.robot
+ name: '${i: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 32
+ start:
+ character: 6
+ line: 32
+ uri: variable_conversion.robot
+ name: '${i: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 42
+ start:
+ character: 13
+ line: 42
+ uri: variable_conversion.robot
+ name: '${i: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 36
+ start:
+ character: 13
+ line: 36
+ uri: variable_conversion.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: variable_conversion.robot
+ name: '${k: Literal["Yes", "No"]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 34
+ line: 83
+ start:
+ character: 2
+ line: 83
+ uri: variable_conversion.robot
+ name: ${keyword}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 38
+ start:
+ character: 13
+ line: 38
+ uri: variable_conversion.robot
+ name: '${l: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 8
+ line: 2
+ start:
+ character: 2
+ line: 2
+ uri: variable_conversion.robot
+ name: '${s: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 32
+ line: 42
+ start:
+ character: 26
+ line: 42
+ uri: variable_conversion.robot
+ name: '${s: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 16
+ line: 6
+ start:
+ character: 2
+ line: 6
+ uri: variable_conversion.robot
+ name: '${time: datetime}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 27
+ start:
+ character: 13
+ line: 27
+ uri: variable_conversion.robot
+ name: '${u: int | str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 4
+ start:
+ character: 2
+ line: 4
+ uri: variable_conversion.robot
+ name: '@{numbers: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 5
+ start:
+ character: 2
+ line: 5
+ uri: variable_conversion.robot
+ name: '@{wrong_numbers: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 53
+ line: 83
+ start:
+ character: 0
+ line: 83
+ uri: variable_conversion.robot
+ name: 'a ${keyword: int:keyword|testcase} with embedded args'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: variable_conversion.robot
+ name: a simple keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 39
+ line: 64
+ start:
+ character: 0
+ line: 64
+ uri: variable_conversion.robot
+ name: a simple keyword with default arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
data: null
- kind: 5
+ kind: 12
location:
range:
end:
- character: 16
- line: 10
+ character: 36
+ line: 69
start:
character: 0
- line: 10
- uri: templates2.robot
- name: Invalid Password
+ line: 69
+ uri: variable_conversion.robot
+ name: a simple keyword with union argument
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
kind: 5
location:
range:
end:
- character: 17
- line: 9
+ character: 30
+ line: 50
start:
character: 0
- line: 9
- uri: templates2.robot
- name: Invalid User Name
+ line: 50
+ uri: variable_conversion.robot
+ name: calling kws with embedded args
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
kind: 5
location:
range:
end:
- character: 30
- line: 11
+ character: 9
+ line: 35
start:
character: 0
- line: 11
- uri: templates2.robot
- name: Invalid User Name and Password
+ line: 35
+ uri: variable_conversion.robot
+ name: for loops
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
- kind: 12
+ kind: 5
location:
range:
end:
- character: 42
- line: 48
+ character: 13
+ line: 46
start:
character: 0
- line: 48
- uri: templates2.robot
- name: Login with invalid credentials should fail
+ line: 46
+ uri: variable_conversion.robot
+ name: if assignment
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
kind: 5
location:
range:
end:
- character: 24
- line: 26
+ character: 19
+ line: 31
start:
character: 0
- line: 26
- uri: templates2.robot
- name: Template with FOR and IF
+ line: 31
+ uri: variable_conversion.robot
+ name: keyword assignments
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
kind: 5
location:
range:
end:
- character: 32
- line: 36
+ character: 15
+ line: 25
start:
character: 0
- line: 36
- uri: templates2.robot
- name: Template with FOR and IF invalid
+ line: 25
+ uri: variable_conversion.robot
+ name: local variables
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
kind: 5
location:
range:
end:
- character: 22
- line: 17
+ character: 15
+ line: 12
start:
character: 0
- line: 17
- uri: templates2.robot
- name: Template with FOR loop
+ line: 12
+ uri: variable_conversion.robot
+ name: suite variables
tags: null
- !WorkspaceSymbol
container_name: variables
@@ -6188,10 +6788,10 @@ result:
location:
range:
end:
- character: 16
+ character: 4
line: 12
start:
- character: 0
+ character: 2
line: 12
uri: variables.robot
name: ${DD}
@@ -6203,10 +6803,10 @@ result:
location:
range:
end:
- character: 24
+ character: 11
line: 124
start:
- character: 0
+ character: 2
line: 124
uri: variables.robot
name: ${INFO_DATA}
@@ -6218,10 +6818,10 @@ result:
location:
range:
end:
- character: 12
+ character: 4
line: 11
start:
- character: 0
+ character: 2
line: 11
uri: variables.robot
name: ${UU}
@@ -6233,10 +6833,10 @@ result:
location:
range:
end:
- character: 24
+ character: 7
line: 123
start:
- character: 0
+ character: 2
line: 123
uri: variables.robot
name: ${VALUE}
@@ -6248,10 +6848,10 @@ result:
location:
range:
end:
- character: 12
+ character: 4
line: 10
start:
- character: 0
+ character: 2
line: 10
uri: variables.robot
name: ${ZZ}
@@ -6278,10 +6878,25 @@ result:
location:
range:
end:
- character: 10
+ character: 24
+ line: 167
+ start:
+ character: 21
+ line: 167
+ uri: variables.robot
+ name: ${aaa}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
line: 64
start:
- character: 4
+ character: 6
line: 64
uri: variables.robot
name: ${asd}
@@ -6293,10 +6908,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 75
start:
- character: 4
+ character: 6
line: 75
uri: variables.robot
name: ${a}
@@ -6308,10 +6923,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 83
start:
- character: 4
+ character: 6
line: 83
uri: variables.robot
name: ${a}
@@ -6323,10 +6938,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 99
start:
- character: 4
+ character: 6
line: 99
uri: variables.robot
name: ${a}
@@ -6353,10 +6968,10 @@ result:
location:
range:
end:
- character: 21
+ character: 20
line: 177
start:
- character: 17
+ character: 19
line: 177
uri: variables.robot
name: ${a}
@@ -6368,10 +6983,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 76
start:
- character: 4
+ character: 6
line: 76
uri: variables.robot
name: ${b}
@@ -6383,10 +6998,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 84
start:
- character: 4
+ character: 6
line: 84
uri: variables.robot
name: ${b}
@@ -6398,10 +7013,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 100
start:
- character: 4
+ character: 6
line: 100
uri: variables.robot
name: ${b}
@@ -6428,10 +7043,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 177
start:
- character: 23
+ character: 25
line: 177
uri: variables.robot
name: ${b}
@@ -6443,10 +7058,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 77
start:
- character: 4
+ character: 6
line: 77
uri: variables.robot
name: ${c}
@@ -6458,10 +7073,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 102
start:
- character: 4
+ character: 6
line: 102
uri: variables.robot
name: ${c}
@@ -6473,10 +7088,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 78
start:
- character: 4
+ character: 6
line: 78
uri: variables.robot
name: ${d}
@@ -6503,10 +7118,10 @@ result:
location:
range:
end:
- character: 40
+ character: 39
line: 177
start:
- character: 29
+ character: 31
line: 177
uri: variables.robot
name: ${expected}
@@ -6518,10 +7133,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 79
start:
- character: 4
+ character: 6
line: 79
uri: variables.robot
name: ${e}
@@ -6533,10 +7148,10 @@ result:
location:
range:
end:
- character: 43
+ character: 11
line: 9
start:
- character: 0
+ character: 2
line: 9
uri: variables.robot
name: ${full_name}
@@ -6548,10 +7163,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 80
start:
- character: 4
+ character: 6
line: 80
uri: variables.robot
name: ${f}
@@ -6563,10 +7178,10 @@ result:
location:
range:
end:
- character: 19
+ character: 18
line: 68
start:
- character: 4
+ character: 6
line: 68
uri: variables.robot
name: ${hello there1}
@@ -6578,10 +7193,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 52
start:
- character: 9
+ character: 11
line: 52
uri: variables.robot
name: ${i}
@@ -6593,14 +7208,29 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 169
start:
- character: 9
+ character: 11
line: 169
uri: variables.robot
name: ${i}
tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 83
+ line: 181
+ start:
+ character: 75
+ line: 181
+ uri: variables.robot
+ name: ${keywords}
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -6623,10 +7253,10 @@ result:
location:
range:
end:
- character: 99
+ character: 98
line: 181
start:
- character: 88
+ character: 90
line: 181
uri: variables.robot
name: ${listener}
@@ -6638,10 +7268,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 181
start:
- character: 19
+ character: 21
line: 181
uri: variables.robot
name: ${name}
@@ -6653,14 +7283,29 @@ result:
location:
range:
end:
- character: 57
+ character: 15
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: variables.robot
name: ${pre_full_name}
tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 68
+ line: 181
+ start:
+ character: 63
+ line: 181
+ uri: variables.robot
+ name: ${scope}
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -6683,10 +7328,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 181
start:
- character: 37
+ character: 39
line: 181
uri: variables.robot
name: ${version}
@@ -6698,10 +7343,10 @@ result:
location:
range:
end:
- character: 11
+ character: 4
line: 14
start:
- character: 0
+ character: 2
line: 14
uri: variables.robot
name: "${\U0001F9E8\U0001F9E8}"
@@ -6713,10 +7358,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 71
start:
- character: 4
+ character: 6
line: 71
uri: variables.robot
name: '&{a dict}'
@@ -7073,10 +7718,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 39
start:
- character: 32
+ character: 34
line: 39
uri: vartest.robot
name: ${a_second_arg}
@@ -7088,10 +7733,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 45
start:
- character: 32
+ character: 34
line: 45
uri: vartest.robot
name: ${a_second_arg}
@@ -7103,10 +7748,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 39
start:
- character: 19
+ character: 21
line: 39
uri: vartest.robot
name: ${an_arg}
@@ -7118,10 +7763,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 45
start:
- character: 19
+ character: 21
line: 45
uri: vartest.robot
name: ${an_arg}
@@ -7373,10 +8018,10 @@ result:
location:
range:
end:
- character: 35
+ character: 11
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: very_big_file.robot
name: ${city_name}
@@ -7403,10 +8048,10 @@ result:
location:
range:
end:
- character: 71
+ character: 16
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: very_big_file.robot
name: ${cryptic_answer}
@@ -7433,10 +8078,10 @@ result:
location:
range:
end:
- character: 34
+ character: 10
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: very_big_file.robot
name: ${location}
@@ -7553,10 +8198,10 @@ result:
location:
range:
end:
- character: 62
+ character: 10
line: 7
start:
- character: 0
+ character: 2
line: 7
uri: very_big_file.robot
name: ${question}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_workspace_symbols.test[as].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_workspace_symbols.test[as].out
index 90632af99..c023fdc0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_workspace_symbols.test[as].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_workspace_symbols.test[as].out
@@ -111,10 +111,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: code_action_show_documentation.robot
name: ${bananas}
@@ -216,10 +216,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 164
start:
- character: 32
+ character: 34
line: 164
uri: document_highlight.robot
name: ${a_second_arg}
@@ -231,10 +231,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 169
start:
- character: 32
+ character: 34
line: 169
uri: document_highlight.robot
name: ${a_second_arg}
@@ -411,10 +411,10 @@ result:
location:
range:
end:
- character: 47
+ character: 20
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: firstresource.resource
name: ${A_VAR_FROM_RESOURE}
@@ -426,10 +426,10 @@ result:
location:
range:
end:
- character: 61
+ character: 60
line: 23
start:
- character: 46
+ character: 48
line: 23
uri: firstresource.resource
name: ${a_short_name}
@@ -516,10 +516,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 213
start:
- character: 32
+ character: 34
line: 213
uri: goto.robot
name: ${a_second_arg}
@@ -531,10 +531,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 218
start:
- character: 32
+ character: 34
line: 218
uri: goto.robot
name: ${a_second_arg}
@@ -726,10 +726,25 @@ result:
location:
range:
end:
- character: 24
+ character: 17
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: indexed_variables.robot
+ name: ${A_LIST ${index}}
+ tags: null
+- !WorkspaceSymbol
+ container_name: indexed_variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 8
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: indexed_variables.robot
name: '@{A_LIST}'
@@ -741,10 +756,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 26
start:
- character: 0
+ character: 2
line: 26
uri: references.robot
name: ${bananas}
@@ -1071,10 +1086,10 @@ result:
location:
range:
end:
- character: 23
+ character: 16
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: templates2.robot
name: ${VALID PASSWORD}
@@ -1086,10 +1101,10 @@ result:
location:
range:
end:
- character: 22
+ character: 12
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: templates2.robot
name: ${VALID USER}
@@ -1101,10 +1116,10 @@ result:
location:
range:
end:
- character: 45
+ character: 44
line: 49
start:
- character: 34
+ character: 36
line: 49
uri: templates2.robot
name: ${password}
@@ -1199,6 +1214,186 @@ result:
uri: templates2.robot
name: Login with invalid credentials should fail
tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 7
+ start:
+ character: 2
+ line: 7
+ uri: variable_conversion.robot
+ name: '${DATES: list[date]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 70
+ start:
+ character: 21
+ line: 70
+ uri: variable_conversion.robot
+ name: '${a: int | str | None}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: variable_conversion.robot
+ name: '${k: Literal["Yes", "No"]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 53
+ line: 83
+ start:
+ character: 0
+ line: 83
+ uri: variable_conversion.robot
+ name: 'a ${keyword: int:keyword|testcase} with embedded args'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: variable_conversion.robot
+ name: a simple keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 39
+ line: 64
+ start:
+ character: 0
+ line: 64
+ uri: variable_conversion.robot
+ name: a simple keyword with default arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 36
+ line: 69
+ start:
+ character: 0
+ line: 69
+ uri: variable_conversion.robot
+ name: a simple keyword with union argument
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 50
+ start:
+ character: 0
+ line: 50
+ uri: variable_conversion.robot
+ name: calling kws with embedded args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 46
+ start:
+ character: 0
+ line: 46
+ uri: variable_conversion.robot
+ name: if assignment
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 19
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: variable_conversion.robot
+ name: keyword assignments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 25
+ start:
+ character: 0
+ line: 25
+ uri: variable_conversion.robot
+ name: local variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 12
+ start:
+ character: 0
+ line: 12
+ uri: variable_conversion.robot
+ name: suite variables
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -1206,10 +1401,10 @@ result:
location:
range:
end:
- character: 10
+ character: 9
line: 64
start:
- character: 4
+ character: 6
line: 64
uri: variables.robot
name: ${asd}
@@ -1281,10 +1476,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 39
start:
- character: 32
+ character: 34
line: 39
uri: vartest.robot
name: ${a_second_arg}
@@ -1296,10 +1491,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 45
start:
- character: 32
+ character: 34
line: 45
uri: vartest.robot
name: ${a_second_arg}
@@ -1371,10 +1566,10 @@ result:
location:
range:
end:
- character: 71
+ character: 16
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: very_big_file.robot
name: ${cryptic_answer}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_workspace_symbols.test[first].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_workspace_symbols.test[first].out
index e29fff18e..ab4c5c257 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_workspace_symbols.test[first].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf70/test_workspace_symbols.test[first].out
@@ -299,6 +299,21 @@ result:
uri: jsonvariables.robot
name: first
tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: old_for.robot
+ name: first
+ tags: null
- !WorkspaceSymbol
container_name: part1__suite
data: null
@@ -576,10 +591,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 41
start:
- character: 19
+ character: 21
line: 41
uri: symbols.robot
name: ${first}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
index 8239f353e..226df7e43 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
index a3ba6d93a..a8415375e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
index 524f60284..6eaa2e935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
index a049d2abd..7ca591687 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
index b2b3a6421..e5efffaa2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
index a513df80b..d54497f31 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
index 2f87ac00e..7efe9727c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
index b0e55bbd5..8f988fde6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
index 6842bfc3a..204e3a526 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
index b9e122bef..392d76d05 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
index 1f167bad1..595a25015 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
index 2d3d8bb53..ec8d67203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
index f4485a04e..2a4594d9d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
index a1f129203..931b651ca 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
index 8a5af0dd6..ca5f519ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
index 079bc90d9..db4eadd00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
index c04f7fc58..9fc8dc9da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
index c233ae926..96464fc0a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
index 870d7a36a..b1eff5801 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
index e82ef2b56..980598cd7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
index c592fc763..0c5b96935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
index a57aabeb3..e02339b62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
index 46e7c3340..ffe8f95ee 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
index 642884f51..67711a05f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
index 28cb91a72..8bb3347a7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
index 0dba1a415..79b0ab951 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
index d71c9d08b..e9fe50e25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
index 7b0d67047..cf3d34dea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
index 3c475dbed..62f4aceb1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
index 15d634e9c..107def919 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
index ade8b6d92..8d2ca8626 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
index 66fddf121..1feeeb40c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
index eb0b5fd54..f5ec1c457 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
index ba8a95794..bea1d3906 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
index 4e8e95194..a62d80df3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
index 90b42a565..e34b79a0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
index be66e20d1..17ec05e27 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
index cb8da7aba..04e70985b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
index f4d156da6..9e6dfd8d7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
index a7550e1f4..b7cf80414 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
index 5d424c505..3244fdcd1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
index becb9d7cb..a94d36226 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
index 5bd9fb55e..fece8b2aa 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
index 725193b37..b0235ca01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
index 5e034b72e..ac50687b3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
index 70d1c5b94..23bb8aaf3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
index ef1b3e404..3b0e98cec 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
index 07bd779f8..325e16336 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
index b3afde9c8..40a3bfb4b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
index b2b32b5a7..9dcf09b8d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
index e0d8907d6..a60432e01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
index ee5c1bb07..52e38c418 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
index 77b677467..afad4b22e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
index 545003425..79c6190d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
index 4a4ecc302..a1e856600 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
index 84362f8a9..b1cb2126a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
index 447bf4184..de0d59df6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
index 52d02c18e..23b9b8a1f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
index dcf7c04e6..17be9c684 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
index 0dfb5c023..7d355d48d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
index f1f42b950..e0c65040f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
index 78cea173c..e73a085ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
index c1fefa5a0..fe1822274 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
index d7f5004eb..7083c0456 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
@@ -13,10 +13,10 @@ result:
line: 113
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
index 5c887ad71..7805da4bc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
@@ -13,10 +13,10 @@ result:
line: 116
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
index ad2cb2b03..e2b4e3ec5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 121
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
index ffdb6f269..3053203b2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 124
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
index 005eccbe0..3aa98776d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
index 727f6e96d..1d82bbf19 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
index 11c936057..69ac841ce 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
index 16a81732f..89d2d8a9a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
index 4f87541d1..220538b57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
@@ -13,10 +13,10 @@ result:
line: 136
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
index 38e45adb1..c0d8cab53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
index 3d915b2f6..e5b45a749 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
index 999c93272..f5bd445a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
index 1be872de3..2ce131597 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
index 1bb226e02..9d51f1860 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
index 7bab735ea..452a44add 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
index 88b77dc89..865e4fe5a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
index 2ad7fcd5c..67501186c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
index 4660d8a0f..f0ad689e2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
index 36e560bc2..3b1f57c25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
index 1082011e2..868e40459 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
index 631d5be02..c6855781f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
index bb4183827..bc6603370 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
index f210370b5..f5299abab 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
index 58c0e52a0..4cf7f16da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
index 16692643a..ae530e453 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
index 85273368b..e48ac204d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
index 11982d4d9..67436f28b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
index 8ee8393a4..8489525fc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
index a9096c519..aeb46e115 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
index 31d58a50f..ff5922211 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
index 2c1d286e9..518933599 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
index 88bfebaf9..1389c2ae6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
index 107e0644a..91386967d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
index bcb425d10..ba3e6351b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
index 5ce584672..14c6de2b7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
index 8c637fba1..145813fd0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
index 84d9267dd..001e62bda 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
index 9c2bc61de..2f9ed615a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
index 877c4d3f7..8f60adbfe 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
index 352ed5354..e58d291f5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
index 7f2aaed0b..79b34a22b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
index 9f7ff9da3..6aafa0cf7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
index e62f70937..99b407107 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
index 26343b08f..a2d19cd1a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
index cb34057a6..b90b18f53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
index 66e1b72a2..5be0a2e62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
index 05a9f2878..44fda0315 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
index a13d64453..3499f3dc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
index edeb45042..800293ec2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 191
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
index f9f759774..e4a2311a1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 193
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
index 8f408d191..18898925e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
index fc63710ae..e00559044 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
index 99b3c42e7..e8255ec5f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
index 24291cbfc..4a85bbe85 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 208
target_range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
index 602cb6ab0..39faffbcf 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
index 6b1ce1d6a..4fd41dc65 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
index 6abc94c88..98f059f2a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
index 3951adaa1..3165c0fc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
index 397adb60c..c34433d9f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
index 38ad1c416..c15fef092 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
index c0de4a0d8..83529a203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 222
target_range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
index 23f059316..3cbc16c4f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
index cd700261d..1514a2e57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
index 6ef9cc6bf..99b72499e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
index 8239f353e..226df7e43 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
index a3ba6d93a..a8415375e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
index 524f60284..6eaa2e935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
index a049d2abd..7ca591687 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
index b2b3a6421..e5efffaa2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
index a513df80b..d54497f31 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
index 2f87ac00e..7efe9727c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
index b0e55bbd5..8f988fde6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
index 6842bfc3a..204e3a526 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
index b9e122bef..392d76d05 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
index 1f167bad1..595a25015 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
index 2d3d8bb53..ec8d67203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
index f4485a04e..2a4594d9d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
index a1f129203..931b651ca 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
index 8a5af0dd6..ca5f519ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
index 079bc90d9..db4eadd00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
index c04f7fc58..9fc8dc9da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
index c233ae926..96464fc0a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
index 870d7a36a..b1eff5801 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
index e82ef2b56..980598cd7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
index c592fc763..0c5b96935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
index a57aabeb3..e02339b62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
index 46e7c3340..ffe8f95ee 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
index 642884f51..67711a05f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
index 28cb91a72..8bb3347a7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
index 0dba1a415..79b0ab951 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
index d71c9d08b..e9fe50e25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
index 7b0d67047..cf3d34dea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
index 3c475dbed..62f4aceb1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
index 15d634e9c..107def919 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
index ade8b6d92..8d2ca8626 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
index 66fddf121..1feeeb40c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
index eb0b5fd54..f5ec1c457 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
index ba8a95794..bea1d3906 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
index 4e8e95194..a62d80df3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
index 90b42a565..e34b79a0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
index be66e20d1..17ec05e27 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
index cb8da7aba..04e70985b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
index f4d156da6..9e6dfd8d7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
index a7550e1f4..b7cf80414 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
index 5d424c505..3244fdcd1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
index becb9d7cb..a94d36226 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
index 5bd9fb55e..fece8b2aa 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
index 725193b37..b0235ca01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
index 5e034b72e..ac50687b3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
index 70d1c5b94..23bb8aaf3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
index ef1b3e404..3b0e98cec 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
index 07bd779f8..325e16336 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
index b3afde9c8..40a3bfb4b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
index b2b32b5a7..9dcf09b8d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
index e0d8907d6..a60432e01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
index ee5c1bb07..52e38c418 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
index 77b677467..afad4b22e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
index 545003425..79c6190d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
index 4a4ecc302..a1e856600 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
index 84362f8a9..b1cb2126a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
index 447bf4184..de0d59df6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
index 52d02c18e..23b9b8a1f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
index dcf7c04e6..17be9c684 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
index 0dfb5c023..7d355d48d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
index f1f42b950..e0c65040f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
index 78cea173c..e73a085ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
index c1fefa5a0..fe1822274 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
index d7f5004eb..7083c0456 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
@@ -13,10 +13,10 @@ result:
line: 113
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
index 5c887ad71..7805da4bc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
@@ -13,10 +13,10 @@ result:
line: 116
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
index ad2cb2b03..e2b4e3ec5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 121
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
index ffdb6f269..3053203b2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 124
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
index 005eccbe0..3aa98776d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
index 727f6e96d..1d82bbf19 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
index 11c936057..69ac841ce 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
index 16a81732f..89d2d8a9a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
index 4f87541d1..220538b57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
@@ -13,10 +13,10 @@ result:
line: 136
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
index 38e45adb1..c0d8cab53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
index 3d915b2f6..e5b45a749 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
index 999c93272..f5bd445a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
index 1be872de3..2ce131597 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
index 1bb226e02..9d51f1860 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
index 7bab735ea..452a44add 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
index 88b77dc89..865e4fe5a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
index 2ad7fcd5c..67501186c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
index 4660d8a0f..f0ad689e2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
index 36e560bc2..3b1f57c25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
index 1082011e2..868e40459 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
index 631d5be02..c6855781f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
index bb4183827..bc6603370 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
index f210370b5..f5299abab 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
index 58c0e52a0..4cf7f16da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
index 16692643a..ae530e453 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
index 85273368b..e48ac204d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
index 11982d4d9..67436f28b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
index 8ee8393a4..8489525fc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
index a9096c519..aeb46e115 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
index 31d58a50f..ff5922211 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
index 2c1d286e9..518933599 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
index 88bfebaf9..1389c2ae6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
index 107e0644a..91386967d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
index bcb425d10..ba3e6351b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
index 5ce584672..14c6de2b7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
index 8c637fba1..145813fd0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
index 84d9267dd..001e62bda 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
index 9c2bc61de..2f9ed615a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
index 877c4d3f7..8f60adbfe 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
index 352ed5354..e58d291f5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
index 7f2aaed0b..79b34a22b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
index 9f7ff9da3..6aafa0cf7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
index e62f70937..99b407107 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
index 26343b08f..a2d19cd1a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
index cb34057a6..b90b18f53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
index 66e1b72a2..5be0a2e62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
index 05a9f2878..44fda0315 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
index a13d64453..3499f3dc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
index edeb45042..800293ec2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 191
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
index f9f759774..e4a2311a1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 193
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
index 8f408d191..18898925e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
index fc63710ae..e00559044 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
index 99b3c42e7..e8255ec5f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
index 24291cbfc..4a85bbe85 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 208
target_range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
index 602cb6ab0..39faffbcf 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
index 6b1ce1d6a..4fd41dc65 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
index 6abc94c88..98f059f2a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
index 3951adaa1..3165c0fc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
index 397adb60c..c34433d9f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
index 38ad1c416..c15fef092 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
index c0de4a0d8..83529a203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 222
target_range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
index 23f059316..3cbc16c4f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
index cd700261d..1514a2e57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
index 6ef9cc6bf..99b72499e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out
index 444f042b1..e61ae5a48 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 2
line: 38
name: no hover for invalid variable
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out
index 487757a8e..28410e141 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 9
line: 38
name: no hover for invalid variable
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out
index ef7994f1d..52e5648d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 16
line: 38
name: no hover for invalid variable
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out
index 98a12e526..5238819ba 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 20
line: 72
name: no hover for invalid variable reference
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 28
+ line: 72
+ start:
+ character: 13
+ line: 72
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out
index 69dd1ee5c..1b0b0551b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 27
line: 72
name: no hover for invalid variable reference
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 28
+ line: 72
+ start:
+ character: 13
+ line: 72
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-036-004-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-036-004-simple_keyword_call].out
index 767f3d2fd..97f99a4be 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-036-004-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-036-004-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-036-005-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-036-005-simple_keyword_call].out
index 905287ed6..982f264d6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-036-005-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-036-005-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-036-006-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-036-006-simple_keyword_call].out
index 8116a9ef3..24bdcc13f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-036-006-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-036-006-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-105-029-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-105-029-a_variable_with_emoji].out
new file mode 100644
index 000000000..70dec3898
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-105-029-a_variable_with_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 29
+ line: 105
+ name: a variable with emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-105-030-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-105-030-a_variable_with_emoji].out
new file mode 100644
index 000000000..1ba9d617a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-105-030-a_variable_with_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 30
+ line: 105
+ name: a variable with emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-105-031-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-105-031-a_variable_with_emoji].out
deleted file mode 100644
index c5cb6c5cd..000000000
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-105-031-a_variable_with_emoji].out
+++ /dev/null
@@ -1,5 +0,0 @@
-data: !GeneratedTestData
- character: 31
- line: 105
- name: a variable with emoji
-result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-105-033-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-105-033-a_variable_with_emoji].out
deleted file mode 100644
index 3afbe753a..000000000
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_references.test[references.robot-105-033-a_variable_with_emoji].out
+++ /dev/null
@@ -1,32 +0,0 @@
-data: !GeneratedTestData
- character: 33
- line: 105
- name: a variable with emoji
-result:
-- !Location
- range:
- end:
- character: 50
- line: 30
- start:
- character: 41
- line: 30
- uri: resources/firstresource.resource
-- !Location
- range:
- end:
- character: 49
- line: 31
- start:
- character: 40
- line: 31
- uri: resources/firstresource.resource
-- !Location
- range:
- end:
- character: 42
- line: 105
- start:
- character: 33
- line: 105
- uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[__init__.robot].out
index 617f8bd42..f17fc64b4 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[__init__.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 14
- 26
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[bddstyle.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[bddstyle.robot].out
index 2ffd4be56..abd63c2b8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[bddstyle.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[bddstyle.robot].out
@@ -3,57 +3,87 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 14
- - 34
+ - 33
- 1
- 0
- - 22
+ - 14
+ - 8
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 0
- 37
- - 34
+ - 33
- 1
- 0
- - 50
+ - 37
+ - 13
+ - 36
+ - 0
+ - 0
+ - 13
- 1
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 0
- 31
- - 34
+ - 33
- 1
- 0
- - 40
+ - 31
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 1
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 0
- 2
- - 34
+ - 33
- 1
- 0
- 6
@@ -63,7 +93,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -73,221 +103,246 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 13
- - 56
+ - 54
- 0
- 0
- 17
- 9
- - 56
+ - 54
- 0
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 0
- 0
- - 23
+ - 14
+ - 8
+ - 36
+ - 2048
+ - 0
+ - 9
- 11
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 37
- - 39
+ - 37
- 0
+ - 0
+ - 37
+ - 13
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 9
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 8
+ - 36
+ - 2048
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 0
- 0
- 14
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 37
- - 39
+ - 37
- 0
- 0
- 37
- 1
- - 36
+ - 35
- 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
- 0
- 31
- 10
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
- 0
- 31
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 4
+ - 36
+ - 2048
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[code_action_show_documentation.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[code_action_show_documentation.robot].out
index 693e7bbc6..63f49473f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[code_action_show_documentation.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[code_action_show_documentation.robot].out
@@ -3,82 +3,97 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 16
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -88,27 +103,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -116,24 +131,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 2
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -143,32 +163,47 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -178,7 +213,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -188,8 +223,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -198,7 +238,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -208,7 +248,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -218,22 +258,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 1
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -243,17 +298,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -263,7 +328,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -273,22 +338,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -298,7 +363,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -308,7 +373,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -318,27 +383,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
- 9
- - 53
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
- 0
- 0
- 9
@@ -348,17 +418,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -368,17 +448,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -388,7 +478,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -398,12 +488,12 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 2
- 4
@@ -413,7 +503,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -423,107 +513,112 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 17
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 5
- - 36
+ - 35
- 2048
- 0
- 6
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 14
- - 36
+ - 35
- 2048
- 0
- 15
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 2
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 18
+ - 7
+ - 10
+ - 36
+ - 2048
+ - 0
+ - 11
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 21
- - 39
+ - 37
- 0
- 2
- 4
- 21
- - 39
+ - 37
- 0
- 0
- 25
@@ -533,57 +628,67 @@ result: !SemanticTokens
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 2
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 17
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 2
- 4
@@ -593,7 +698,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -603,97 +708,192 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 3
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 22
- 4
- - 34
+ - 18
+ - 36
+ - 0
+ - 0
+ - 18
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 7
- - 34
+ - 33
- 1
- 0
- - 17
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 10
- 14
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -703,7 +903,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -720,20 +920,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -743,7 +958,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -753,7 +968,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -765,20 +980,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -788,7 +1018,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -798,7 +1028,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -810,14 +1040,29 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[document_highlight.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[document_highlight.robot].out
index 85e03cd1e..f92227379 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[document_highlight.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[document_highlight.robot].out
@@ -3,62 +3,77 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
+ - 0
+ - 0
+ - 16
+ - 9
+ - 36
- 0
- 0
- - 25
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
- 36
- - 53
+ - 0
+ - 0
+ - 9
+ - 36
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -68,27 +83,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -96,24 +111,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 4
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -123,32 +143,52 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 9
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,8 +208,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -178,7 +223,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -188,7 +233,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -198,22 +243,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -223,17 +283,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -243,7 +313,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,22 +323,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -278,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -288,7 +358,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -298,27 +368,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 9
- - 53
+ - 51
- 0
- 0
- 9
@@ -328,17 +403,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -348,37 +433,47 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 21
- - 39
+ - 37
- 0
- 1
- 4
- 27
- - 39
+ - 37
- 0
- 1
- 4
- 27
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -388,12 +483,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -403,7 +498,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -413,7 +508,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -423,7 +518,7 @@ result: !SemanticTokens
- 5
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -433,147 +528,167 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -583,7 +698,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -600,20 +715,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -623,7 +753,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -633,7 +763,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -645,20 +775,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -668,7 +813,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -678,7 +823,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -691,7 +836,12 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 9
+ - 1
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 4
- 7
- 0
@@ -700,92 +850,152 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- - 26
+ - 18
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 15
- - 40
+ - 38
- 1024
+ - 0
+ - 19
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 24
- 15
- - 40
+ - 38
- 1024
+ - 0
+ - 19
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- - 26
+ - 18
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 11
- - 40
+ - 38
- 1024
- 0
- 15
- 4
- - 40
+ - 38
+ - 0
+ - 0
+ - 8
+ - 7
+ - 36
- 0
- 3
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 4
- 0
- 49
- - 34
- - 1
+ - 33
- 1
- 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
- - 3
- 4
- 1
- 21
@@ -793,13 +1003,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -808,13 +1023,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -823,7 +1048,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -833,7 +1058,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -845,20 +1070,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
@@ -868,7 +1108,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -878,7 +1118,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -890,22 +1130,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -913,13 +1143,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -928,21 +1163,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[duplicated_resources.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[duplicated_resources.robot].out
index fb940fc64..413d2bcd8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[duplicated_resources.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[duplicated_resources.robot].out
@@ -3,107 +3,107 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 28
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 10
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 8
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 12
- 14
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 18
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -113,12 +113,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -128,12 +128,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -143,6 +143,6 @@ result: !SemanticTokens
- 0
- 1
- 18
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[external_libray.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[external_libray.robot].out
index deee32838..60f2a2488 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[external_libray.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[external_libray.robot].out
@@ -3,47 +3,47 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 17
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -53,6 +53,6 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[foldingrange.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[foldingrange.robot].out
index 5c07a2da1..4ffb0b878 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[foldingrange.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[foldingrange.robot].out
@@ -3,356 +3,396 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- - 2
- - 0
- - 13
- - 25
- - 256
- - 1
+ - 3
- 0
- 3
- - 43
+ - 41
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 9
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 15
+ - 8
- 2
- - 46
+ - 44
- 0
- 2
- 8
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 6
+ - 4
+ - 36
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 3
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 0
- 8
- - 33
+ - 32
- 1
- 3
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 3
- 0
- 9
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 16
- - 31
+ - 30
- 0
- 7
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 13
- - 33
+ - 32
- 1
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
- 1
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 2
- - 35
+ - 34
- 0
- 1
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 4
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 0
- 16
- - 33
+ - 32
- 1
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 6
+ - 36
+ - 0
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- - 16
+ - 8
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 12
- - 39
+ - 37
- 1024
- 3
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[goto.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[goto.robot].out
index 627361dcf..c53530ddb 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[goto.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[goto.robot].out
@@ -3,62 +3,82 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 11
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
- 36
- - 53
+ - 0
+ - 0
+ - 9
+ - 36
+ - 51
- 0
- 4
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 24
+ - 18
+ - 6
+ - 36
+ - 0
+ - 0
+ - 6
- 19
- - 53
+ - 51
- 0
- 0
- 23
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -66,24 +86,49 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 5
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
- 0
- - 3
- 18
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -93,7 +138,7 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -103,17 +148,37 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
- 1
- 21
- 0
- - 7
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 6
+ - 36
+ - 0
+ - 2
+ - 0
+ - 11
+ - 36
+ - 0
+ - 2
+ - 0
+ - 11
+ - 36
+ - 0
+ - 0
- 15
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -123,22 +188,52 @@ result: !SemanticTokens
- 0
- 6
- 6
- - 56
+ - 54
- 0
- 0
- 6
- 1
- 21
- 0
+ - 3
+ - 0
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
+ - 0
+ - 9
+ - 11
+ - 36
+ - 0
+ - 0
+ - 12
- 10
+ - 36
+ - 0
+ - 4
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -148,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -158,37 +253,67 @@ result: !SemanticTokens
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -198,12 +323,17 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
- 0
- 5
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -213,42 +343,77 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 29
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 0
+ - 12
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 9
+ - 36
- 0
- 3
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 3
- 4
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -258,22 +423,22 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 16
- - 39
+ - 37
- 0
- 2
- 4
- 18
- - 39
+ - 37
- 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -283,7 +448,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -298,7 +463,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -308,7 +473,7 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
- 2
- 4
@@ -318,7 +483,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -328,7 +493,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -338,12 +503,12 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 4
- 0
- 16
- - 33
+ - 32
- 1
- 1
- 4
@@ -353,7 +518,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -363,7 +528,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -373,177 +538,202 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 32
- - 39
+ - 37
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 3
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 3
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 7
- - 39
+ - 37
- 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -553,12 +743,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -568,7 +758,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -578,7 +768,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -588,22 +778,22 @@ result: !SemanticTokens
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 16
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 3
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -613,7 +803,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -630,20 +820,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -653,7 +858,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -663,7 +868,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -675,20 +880,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 32
- - 34
+ - 33
- 1
- 1
- 4
@@ -698,7 +918,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -708,7 +928,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -721,7 +941,12 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 10
+ - 1
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
- 5
- 7
- 0
@@ -730,20 +955,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 9
+ - 36
+ - 0
- 6
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 4
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -753,7 +993,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -763,7 +1003,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -775,25 +1015,40 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 0
- 7
- - 34
+ - 33
- 1
- 1
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -803,12 +1058,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -818,12 +1073,12 @@ result: !SemanticTokens
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 2
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -833,29 +1088,14 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 0
- 49
- - 34
- - 1
+ - 33
- 1
- 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
- - 3
- 4
- 1
- 21
@@ -863,13 +1103,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -878,13 +1123,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -893,7 +1148,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -903,7 +1158,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -915,20 +1170,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
@@ -938,7 +1208,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -948,7 +1218,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -960,22 +1230,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -983,13 +1243,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -998,21 +1263,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[hover.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[hover.robot].out
index 7df286095..b28ca4891 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[hover.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[hover.robot].out
@@ -3,32 +3,32 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -38,27 +38,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -66,134 +66,164 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 14
- - 53
+ - 51
- 0
- 0
- 18
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 17
- - 53
+ - 51
- 0
- 0
- 29
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 8
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 17
- - 53
+ - 51
- 0
- 0
- 30
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 10
- - 53
+ - 51
- 0
- 4
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 3
+ - 0
+ - 9
+ - 36
+ - 0
- 0
- - 4
- 18
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -203,7 +233,7 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -213,22 +243,87 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
- 1
- 21
- 0
- - 28
+ - 3
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 36
+ - 0
+ - 3
+ - 0
+ - 5
+ - 36
- 0
- 1
- 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 20
+ - 36
+ - 0
- 5
- - 33
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 25
+ - 36
+ - 0
+ - 0
+ - 26
+ - 4
+ - 36
+ - 0
+ - 8
+ - 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 6
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
- 1
- 1
- 4
@@ -238,7 +333,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -253,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -263,8 +358,13 @@ result: !SemanticTokens
- 0
- 3
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -273,7 +373,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -283,7 +383,7 @@ result: !SemanticTokens
- 0
- 3
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -293,37 +393,67 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 3
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -333,52 +463,97 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 29
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 0
+ - 12
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 9
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 3
- 4
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -388,12 +563,12 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
- 4
- 0
- 6
- - 33
+ - 32
- 1
- 2
- 4
@@ -403,7 +578,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -413,7 +588,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -423,27 +598,32 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
- 9
- - 53
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
- 0
- 0
- 9
@@ -453,17 +633,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -473,12 +663,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -488,17 +683,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
- 0
- 19
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -506,34 +701,49 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 13
+ - 1
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 56
+ - 54
- 0
- 0
- 6
- 1
- 21
- 0
+ - 0
+ - 1
+ - 10
+ - 36
+ - 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
- 0
- 28
@@ -543,22 +753,22 @@ result: !SemanticTokens
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 5
- 4
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 7
- 15
- - 40
+ - 38
- 0
- 0
- 21
@@ -568,122 +778,142 @@ result: !SemanticTokens
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- - 2
- - 35
+ - 2
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
@@ -693,7 +923,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -703,17 +933,17 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
@@ -723,7 +953,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -733,17 +963,17 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -753,97 +983,97 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -853,72 +1083,72 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 5
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 0
- 21
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 40
+ - 38
- 0
- 0
- 1
- 3
- - 40
+ - 38
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 12
- 3
- - 40
+ - 38
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 6
- 3
- - 40
+ - 38
- 1024
- 5
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -928,22 +1158,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 0
- - 27
+ - 16
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 40
+ - 38
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -953,12 +1188,12 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 40
+ - 38
- 1024
- 4
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
@@ -968,7 +1203,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -978,42 +1213,42 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -1023,32 +1258,32 @@ result: !SemanticTokens
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 4
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 18
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1058,12 +1293,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1073,12 +1308,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1088,27 +1323,27 @@ result: !SemanticTokens
- 0
- 1
- 18
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -1118,12 +1353,12 @@ result: !SemanticTokens
- 0
- 1
- 16
- - 39
+ - 37
- 0
- 3
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -1133,12 +1368,12 @@ result: !SemanticTokens
- 0
- 1
- 21
- - 39
+ - 37
- 0
- 3
- 4
- 8
- - 53
+ - 51
- 0
- 0
- 8
@@ -1148,12 +1383,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1163,12 +1398,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 19
- - 53
+ - 51
- 0
- 0
- 19
@@ -1178,17 +1413,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 4
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -1198,12 +1433,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -1213,7 +1448,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -1223,7 +1458,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -1233,92 +1468,92 @@ result: !SemanticTokens
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 9
- - 34
+ - 33
- 1
- 1
- 4
- 11
- - 39
+ - 37
- 1024
- 0
- 15
- 3
- - 40
+ - 38
- 1024
- 4
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 16
- - 40
+ - 38
- 0
- 0
- 20
- 20
- - 40
+ - 38
- 0
- 5
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- 9
- 3
- - 35
+ - 34
- 0
- 0
- 5
- 16
- - 40
+ - 38
- 0
- 0
- 18
- 3
- - 35
+ - 34
- 0
- 0
- 5
- 20
- - 40
+ - 38
- 0
- 7
- 0
- 16
- - 34
+ - 33
- 1
- 2
- 4
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 13
- - 34
+ - 33
- 1
- 1
- 4
- 9
- - 39
+ - 37
- 1024
- 3
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -1328,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1345,20 +1580,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -1368,7 +1618,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1378,7 +1628,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -1390,20 +1640,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -1413,7 +1678,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1423,7 +1688,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1435,49 +1700,74 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 0
- 25
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 4
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 8
- 2
- - 24
+ - 23
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[old_for.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[old_for.robot].out
new file mode 100644
index 000000000..7be4fa033
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[old_for.robot].out
@@ -0,0 +1,98 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 4
+ - 37
+ - 0
+ - 0
+ - 8
+ - 9
+ - 36
+ - 0
+ - 1
+ - 8
+ - 1
+ - 37
+ - 0
+ - 0
+ - 9
+ - 9
+ - 36
+ - 0
+ - 1
+ - 8
+ - 1
+ - 37
+ - 0
+ - 2
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 2
+ - 34
+ - 0
+ - 0
+ - 14
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 14
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 8
+ - 44
+ - 0
+ - 1
+ - 8
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 18
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[playground.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[playground.robot].out
index 5062f2aba..40dfae3ad 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[playground.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[playground.robot].out
@@ -3,87 +3,147 @@ result: !SemanticTokens
- 0
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 13
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 2
- - 35
+ - 34
- 0
- 0
- 11
- 8
- - 39
+ - 37
- 1024
- 0
- 17
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 8
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 4
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 8
- - 34
+ - 33
- 1
- 1
- 4
@@ -93,7 +153,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -103,26 +163,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[references.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[references.robot].out
index 95a866faf..d90a50ead 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[references.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[references.robot].out
@@ -3,62 +3,77 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -68,27 +83,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -96,24 +111,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 3
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -123,32 +143,52 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 9
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 1
+ - 0
+ - 7
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,8 +208,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -178,7 +223,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -188,7 +233,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -198,22 +243,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -223,17 +283,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -243,7 +313,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,22 +323,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -278,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -288,7 +358,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -298,27 +368,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 9
- - 53
+ - 51
- 0
- 0
- 9
@@ -328,17 +403,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -348,17 +433,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -368,7 +463,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -378,12 +473,12 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 2
- 4
@@ -393,7 +488,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -403,117 +498,127 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 17
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 5
- - 36
+ - 35
- 2048
- 0
- 6
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 14
- - 36
+ - 35
- 2048
- 0
- 15
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 18
+ - 7
+ - 10
+ - 36
+ - 2048
+ - 0
+ - 11
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 15
+ - 7
+ - 7
+ - 36
+ - 2048
+ - 0
+ - 8
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 21
- - 39
+ - 37
- 0
- 2
- 4
- 21
- - 39
+ - 37
- 0
- 0
- 25
@@ -523,57 +628,57 @@ result: !SemanticTokens
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 6
- 2
- - 56
+ - 54
- 0
- 0
- 2
@@ -583,7 +688,7 @@ result: !SemanticTokens
- 2
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -593,12 +698,12 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 39
+ - 37
- 0
- 0
- 6
- 2
- - 56
+ - 54
- 0
- 0
- 2
@@ -606,9 +711,14 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 12
+ - 1
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 15
- - 56
+ - 54
- 0
- 0
- 15
@@ -616,24 +726,34 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 18
- 1
- - 17
- - 0
+ - 7
+ - 36
- 0
- - 3
- - 4
- - 17
+ - 0
+ - 8
+ - 7
+ - 36
+ - 0
+ - 0
+ - 9
+ - 1
+ - 17
+ - 0
+ - 0
+ - 3
+ - 4
+ - 17
- 0
- 5
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -643,12 +763,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -658,7 +778,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -668,7 +788,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -678,12 +798,12 @@ result: !SemanticTokens
- 4
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- 7
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -693,22 +813,32 @@ result: !SemanticTokens
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 17
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -718,7 +848,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -728,97 +858,192 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 4
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 22
- 4
- - 34
+ - 18
+ - 36
+ - 0
+ - 0
+ - 18
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 7
- - 34
+ - 33
- 1
- 0
- - 17
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 10
- 14
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -828,7 +1053,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -845,20 +1070,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -868,7 +1108,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -878,7 +1118,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -890,20 +1130,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -913,7 +1168,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -923,7 +1178,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -935,37 +1190,37 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- - 3
- 0
- - 49
- - 34
- - 1
- - 1
+ - 7
- 4
- - 1
- - 21
- - 256
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
+ - 49
+ - 33
- 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -973,13 +1228,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
- 2
- 4
- 1
@@ -988,13 +1248,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -1003,7 +1273,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1013,7 +1283,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1025,25 +1295,45 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- - 10
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 12
- - 39
+ - 37
- 1024
- 1
- 4
@@ -1053,7 +1343,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1063,7 +1353,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1075,22 +1365,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -1098,13 +1378,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
- 2
- 4
- 1
@@ -1113,27 +1398,52 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 12
- - 39
+ - 37
- 1024
- 1
- 4
@@ -1143,7 +1453,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -1153,27 +1463,42 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 4
+ - 36
- 0
- 2
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 17
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1183,52 +1508,52 @@ result: !SemanticTokens
- 0
- 1
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 10
+ - 36
+ - 0
- 2
- 8
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 12
+ - 36
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 33
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 2
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
@@ -1238,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1248,44 +1573,54 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 35
+ - 36
- 0
- 3
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 39
+ - 36
- 0
- 2
- 4
- 6
- - 35
+ - 34
- 0
- - 3
- 0
- - 57
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
+ - 10
+ - 9
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
- - 1
- - 21
- - 256
+ - 57
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1293,7 +1628,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1303,17 +1638,22 @@ result: !SemanticTokens
- 0
- 5
- 10
- - 56
+ - 54
- 0
- 2
- 4
- 5
- - 35
+ - 34
+ - 0
+ - 0
+ - 9
+ - 7
+ - 36
- 0
- 0
- - 20
+ - 11
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1323,39 +1663,24 @@ result: !SemanticTokens
- 0
- 1
- 10
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 31
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1363,7 +1688,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1373,59 +1698,59 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 1
- 4
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 2
- 4
- 4
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- - 3
- 0
- - 44
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
+ - 10
+ - 9
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
- - 1
- - 21
- - 256
+ - 44
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1433,7 +1758,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1443,27 +1768,37 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 10
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
+ - 4
+ - 36
- 0
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 24
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1473,52 +1808,67 @@ result: !SemanticTokens
- 0
- 1
- 10
- - 35
+ - 34
- 0
- 4
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 23
- - 34
+ - 33
- 1
- 1
- - 21
+ - 4
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
- 12
- - 39
+ - 37
- 1024
- 1
- - 22
+ - 4
+ - 13
+ - 36
+ - 0
+ - 0
+ - 18
- 12
- - 39
+ - 37
- 1024
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- - 41
+ - 25
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1528,37 +1878,37 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 35
+ - 34
- 0
- 2
- 8
- 13
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 28
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1568,22 +1918,22 @@ result: !SemanticTokens
- 0
- 1
- 13
- - 35
+ - 34
- 0
- 2
- 8
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 36
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1593,16 +1943,16 @@ result: !SemanticTokens
- 0
- 1
- 6
- - 35
+ - 34
- 0
- 1
- 8
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[remotetest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[remotetest.robot].out
index 91f1a4bce..539e5d2db 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[remotetest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[remotetest.robot].out
@@ -3,21 +3,21 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 4
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 30
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[reserved.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[reserved.robot].out
index 6afe4658d..ef17f9962 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[reserved.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[reserved.robot].out
@@ -3,47 +3,47 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 14
- - 39
+ - 37
- 0
- 1
- 4
- 5
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 39
+ - 37
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 7
@@ -53,17 +53,17 @@ result: !SemanticTokens
- 1
- 4
- 7
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 1
- 4
- 2
- - 39
+ - 37
- 0
- 0
- 6
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[sematic_tokenizing.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[sematic_tokenizing.robot].out
index 3dafc108f..a0933c3eb 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[sematic_tokenizing.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[sematic_tokenizing.robot].out
@@ -3,37 +3,37 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 40
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 17
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -43,12 +43,12 @@ result: !SemanticTokens
- 0
- 1
- 1
- - 35
+ - 34
- 0
- 0
- 5
- 8
- - 38
+ - 36
- 0
- 0
- 8
@@ -58,37 +58,37 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 17
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -98,12 +98,12 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 16
- - 38
+ - 36
- 0
- 0
- 16
@@ -113,22 +113,22 @@ result: !SemanticTokens
- 0
- 1
- 31
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
@@ -138,7 +138,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -148,62 +148,67 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 13
- 36
- 0
- 0
- - 22
+ - 17
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 27
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -213,32 +218,32 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -248,7 +253,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -258,17 +263,17 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 2
- - 39
+ - 37
- 0
- 3
- 0
- 8
- - 34
+ - 33
- 1
- 1
- 4
@@ -278,7 +283,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -288,21 +293,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 2
- 4
- 2
- - 39
+ - 37
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[setup_teardown.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[setup_teardown.robot].out
index 311584076..75cf1183e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[setup_teardown.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[setup_teardown.robot].out
@@ -3,92 +3,92 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 11
- - 36
+ - 35
- 2048
- 1
- 0
- 14
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 14
- - 36
+ - 35
- 2048
- 1
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 10
- - 36
+ - 35
- 2048
- 2
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 20
- 5
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 25
+ - 24
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -98,7 +98,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -108,17 +108,17 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -128,7 +128,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -138,17 +138,17 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +158,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,12 +168,12 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -183,7 +183,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -198,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -208,22 +208,32 @@ result: !SemanticTokens
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 16
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -233,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -243,21 +253,26 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 2
- 0
- 5
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[signature_help.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[signature_help.robot].out
index e7478c3f3..44c7241a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[signature_help.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[signature_help.robot].out
@@ -3,27 +3,27 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 12
- 10
- - 53
+ - 51
- 0
- 0
- 21
@@ -33,27 +33,27 @@ result: !SemanticTokens
- 3
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 12
- - 39
+ - 37
- 0
- 4
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 26
- - 39
+ - 37
- 0
- 0
- 73
@@ -63,7 +63,7 @@ result: !SemanticTokens
- 5
- 4
- 12
- - 39
+ - 37
- 0
- 0
- 20
@@ -71,9 +71,19 @@ result: !SemanticTokens
- 17
- 0
- 2
- - 20
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 39
+ - 37
- 0
- 0
- 38
@@ -83,7 +93,7 @@ result: !SemanticTokens
- 5
- 4
- 22
- - 39
+ - 37
- 0
- 0
- 44
@@ -93,12 +103,12 @@ result: !SemanticTokens
- 6
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 26
- - 34
+ - 33
- 1
- 1
- 4
@@ -108,7 +118,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -118,7 +128,7 @@ result: !SemanticTokens
- 0
- 5
- 10
- - 56
+ - 54
- 0
- 0
- 14
@@ -140,10 +150,15 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 17
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[symbols.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[symbols.robot].out
index f34821543..e13362ffe 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[symbols.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[symbols.robot].out
@@ -3,117 +3,167 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 2
+ - 0
+ - 8
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 2
- - 20
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
- 8
- - 39
+ - 37
- 1024
- 3
- - 37
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
- 8
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 5
+ - 12
+ - 36
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 5
+ - 11
+ - 36
+ - 0
+ - 0
+ - 13
- 2
- - 46
+ - 44
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 4
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 19
- 2
- - 24
+ - 23
+ - 0
+ - 0
+ - 6
+ - 6
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 31
+ - 30
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 2
- 0
- 10
- - 34
+ - 33
- 1
- 2
- 4
@@ -123,7 +173,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -133,86 +183,86 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 9
- - 56
+ - 54
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 2
- 0
- 15
- - 34
- - 1
- - 2
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 3
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 3
- 4
- 11
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 4
- 4
- 11
- - 39
+ - 37
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 20
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 5
+ - 9
+ - 36
- 0
- 2
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 5
+ - 10
+ - 36
- 0
- 2
- - 15
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 11
- 8
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[templates.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[templates.robot].out
index 745afa1e7..25cc698d3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[templates.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[templates.robot].out
@@ -3,37 +3,47 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 20
- 22
- - 39
+ - 37
- 0
- 2
- 0
- 13
- - 54
+ - 52
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 4
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -43,7 +53,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -58,7 +68,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -68,62 +78,92 @@ result: !SemanticTokens
- 0
- 5
- 16
- - 39
+ - 37
- 0
- 1
- 4
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 8
- 36
- 0
- 0
- - 17
+ - 12
- 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 11
- 36
- 0
- - 2
+ - 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- - 23
- - 1
+ - 5
+ - 14
- 36
- 0
+ - 0
+ - 18
- 1
- - 19
+ - 35
+ - 0
- 1
+ - 4
+ - 11
- 36
- 0
+ - 0
+ - 15
+ - 1
+ - 35
+ - 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 8
- 36
- 0
- 0
- - 17
+ - 12
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
+ - 35
+ - 0
+ - 0
+ - 7
+ - 14
- 36
- 0
- 0
- - 25
+ - 18
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -133,7 +173,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -143,57 +183,57 @@ result: !SemanticTokens
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 36
+ - 35
- 0
- 0
- 7
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -203,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -213,17 +253,17 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 9
- - 33
+ - 32
- 1
- 1
- 4
@@ -233,7 +273,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -243,72 +283,72 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -318,7 +358,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -328,52 +368,62 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
- 0
+ - 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -383,7 +433,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -393,47 +443,57 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 4
+ - 36
+ - 2048
- 0
- - 10
+ - 5
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -443,7 +503,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -453,42 +513,47 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 35
- - 33
+ - 32
- 1
- 1
- 4
@@ -498,7 +563,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -508,47 +573,47 @@ result: !SemanticTokens
- 0
- 5
- 41
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 22
- - 34
+ - 33
- 1
- 1
- 4
@@ -558,7 +623,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -568,42 +633,57 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 16
- - 34
+ - 33
- 1
- 1
- 4
@@ -613,7 +693,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -623,47 +703,62 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -673,7 +768,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -683,27 +778,37 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 28
+ - 7
+ - 17
+ - 36
+ - 0
+ - 0
+ - 21
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 2
- 0
- 19
- - 34
+ - 33
- 1
- 1
- 4
@@ -713,7 +818,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -723,52 +828,97 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 35
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 15
- 8
- - 46
+ - 8
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 11
- - 34
+ - 33
- 1
- 0
- - 15
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 4
- 6
- - 34
+ - 33
- 1
- 0
- - 17
+ - 6
+ - 11
+ - 36
+ - 0
+ - 0
+ - 11
- 4
- - 34
+ - 33
- 1
+ - 0
+ - 4
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -778,7 +928,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -788,21 +938,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[templates2.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[templates2.robot].out
index decfe09ce..a7484130f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[templates2.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[templates2.robot].out
@@ -3,97 +3,152 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 17
- 42
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 13
+ - 36
+ - 0
+ - 1
+ - 0
+ - 17
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 0
- 34
- 8
- - 29
+ - 28
- 0
- 0
- 17
- 8
- - 29
+ - 28
- 0
- 1
- 0
- 17
- - 33
+ - 32
- 1
- 0
- 34
- 7
+ - 35
+ - 0
+ - 0
+ - 17
+ - 17
- 36
- 0
- 1
- 0
- 16
- - 33
+ - 32
- 1
- 0
- - 51
- - 7
+ - 34
+ - 13
- 36
- 0
+ - 0
+ - 17
+ - 7
+ - 35
+ - 0
- 1
- 0
- 30
- - 33
+ - 32
- 1
- 0
- 34
- 7
- - 36
+ - 35
- 0
- 0
- 17
- 7
- - 36
+ - 35
- 0
- 1
- 0
- 15
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 8
+ - 36
+ - 0
+ - 0
+ - 17
+ - 17
+ - 36
+ - 0
- 1
- 0
- 14
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 1
- 0
- 28
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 8
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 22
- - 33
+ - 32
- 1
- 1
- 4
@@ -103,7 +158,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -113,52 +168,77 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- - 19
+ - 8
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 19
+ - 7
- 8
- - 46
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 44
- 0
- 1
- 8
- 7
+ - 35
+ - 0
+ - 0
+ - 11
+ - 8
- 36
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -168,7 +248,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -178,52 +258,77 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- 8
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 7
+ - 36
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 32
- - 33
+ - 32
- 1
- 1
- 4
@@ -233,7 +338,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -243,67 +348,97 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- 8
- 2
- - 35
+ - 34
- 0
- - 1
- - 23
+ - 0
+ - 4
- 7
- 36
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
- 0
- 11
+ - 7
+ - 35
+ - 0
- 1
+ - 12
+ - 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
+ - 0
+ - 11
+ - 1
+ - 35
+ - 0
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 42
- - 34
+ - 33
- 1
- 1
- 4
@@ -313,7 +448,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -323,22 +458,32 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 56
+ - 54
- 0
- 0
- 15
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 15
+ - 11
+ - 36
+ - 0
- 2
- 0
- 15
- - 34
+ - 33
- 1
- 1
- 4
@@ -348,7 +493,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -358,16 +503,26 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[variables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[variables.robot].out
index 04efdca20..d5e87872d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[variables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[variables.robot].out
@@ -3,237 +3,462 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 14
- - 25
+ - 24
- 0
- 0
- 20
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 26
+ - 7
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
- 0
- - 39
+ - 7
+ - 16
+ - 36
+ - 0
+ - 0
+ - 17
+ - 12
+ - 36
+ - 0
+ - 0
+ - 15
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 13
- - 40
+ - 38
- 1024
- 1
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 14
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 12
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 16
+ - 36
+ - 0
+ - 0
+ - 20
+ - 17
+ - 36
+ - 0
+ - 0
+ - 18
+ - 19
+ - 36
+ - 0
+ - 1
+ - 0
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
+ - 12
+ - 36
+ - 0
+ - 0
+ - 13
+ - 14
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
+ - 3
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
- 0
- 9
+ - 3
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
+ - 7
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 7
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 20
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 22
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
@@ -243,7 +468,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,367 +478,527 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
+ - 0
+ - 15
+ - 15
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 11
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 2
- - 46
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 19
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
+ - 1
- 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 24
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
- 1
- 4
- - 3
- - 39
- - 1024
- - 1
- - 14
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
- 12
- - 39
+ - 37
- 1024
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 24
+ - 36
+ - 0
- 1
- - 23
+ - 4
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- - 35
+ - 7
+ - 24
+ - 36
+ - 0
+ - 0
+ - 28
- 20
- 17
- 0
- 2
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 5
- - 35
+ - 34
- 0
- 1
- 8
- 5
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 16
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 2
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 39
+ - 37
- 1024
- 1
- 4
- 20
- - 39
+ - 37
- 1024
- 1
- 4
- 16
- - 39
+ - 37
- 1024
- 1
- 4
- 22
- - 39
+ - 37
- 1024
- 1
- 4
- 25
- - 39
+ - 37
- 1024
- 0
- 36
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 17
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 27
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 18
- - 39
+ - 37
- 1024
- 0
- 29
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 27
- 8
- - 40
+ - 38
- 1024
- 2
- 0
- 7
- - 33
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 32
- 1
+ - 2
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 2
- 4
- 9
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 4
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 13
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 2
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 2
- 0
- 9
- - 33
+ - 32
- 1
- 1
- 4
@@ -623,7 +1008,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -633,42 +1018,42 @@ result: !SemanticTokens
- 0
- 3
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
@@ -678,7 +1063,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -688,52 +1073,67 @@ result: !SemanticTokens
- 0
- 3
- 11
- - 39
+ - 37
- 0
- 0
- - 16
+ - 11
+ - 4
+ - 36
+ - 2048
+ - 0
- 5
- - 39
+ - 5
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
@@ -743,7 +1143,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -753,62 +1153,82 @@ result: !SemanticTokens
- 0
- 3
- 11
- - 39
+ - 37
- 0
- 0
- - 16
+ - 11
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 5
- - 39
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
- 0
+ - 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- - 14
- - 1
+ - 4
+ - 8
- 36
- 0
- 0
+ - 10
+ - 1
+ - 35
+ - 0
+ - 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 35
- - 33
+ - 32
- 1
- 1
- 4
@@ -818,7 +1238,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -828,67 +1248,77 @@ result: !SemanticTokens
- 0
- 3
- 41
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 15
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- - 62
+ - 5
+ - 23
+ - 36
+ - 0
+ - 0
+ - 30
+ - 25
+ - 36
+ - 0
+ - 0
+ - 27
- 6
- 17
- 0
- 2
- 0
- 15
- - 33
+ - 32
- 1
- 1
- 4
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 3
- - 56
+ - 54
- 0
- 0
- 3
@@ -898,17 +1328,17 @@ result: !SemanticTokens
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -918,7 +1348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -928,27 +1358,37 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 28
+ - 7
+ - 17
+ - 36
+ - 0
+ - 0
+ - 21
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 2
- 0
- 19
- - 34
+ - 33
- 1
- 1
- 4
@@ -958,7 +1398,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -968,52 +1408,97 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 11
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 8
- - 46
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 11
- - 34
+ - 33
- 1
- 0
- - 24
+ - 11
+ - 13
+ - 36
+ - 0
+ - 0
+ - 13
- 6
- - 34
+ - 33
- 1
- 0
- - 10
+ - 6
- 4
- - 34
+ - 36
+ - 0
+ - 0
+ - 4
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -1023,7 +1508,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1033,27 +1518,42 @@ result: !SemanticTokens
- 0
- 3
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 31
- - 34
+ - 33
- 1
- 1
- 4
@@ -1063,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1073,12 +1573,12 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 0
- 11
- 3
- - 56
+ - 54
- 0
- 0
- 7
@@ -1093,12 +1593,12 @@ result: !SemanticTokens
- 0
- 14
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 11
- - 56
+ - 54
- 0
- 0
- 15
@@ -1113,22 +1613,22 @@ result: !SemanticTokens
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 5
- - 34
+ - 33
- 1
- 1
- 4
- 31
- - 39
+ - 37
- 0
- 0
- 37
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -1138,7 +1638,7 @@ result: !SemanticTokens
- 0
- 4
- 8
- - 56
+ - 54
- 0
- 0
- 8
@@ -1148,6 +1648,6 @@ result: !SemanticTokens
- 2
- 0
- 18
- - 29
+ - 28
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-__init__.robot].out
index df8fc7278..e0e9f51af 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-__init__.robot].out
@@ -3,6 +3,6 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
index 8461ce14c..fb00afb00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
@@ -3,92 +3,122 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 9
- - 36
+ - 35
- 2048
- 0
- 10
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 9
- - 36
+ - 35
- 2048
- 0
- 10
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 0
- 6
- 13
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 3
- - 34
+ - 33
- 1
- 0
- - 15
+ - 3
+ - 12
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 34
+ - 33
- 1
+ - 0
+ - 6
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
+ - 0
+ - 18
+ - 8
+ - 36
+ - 0
- 2
- 0
- 3
- - 34
+ - 33
- 1
- 0
- - 15
+ - 3
+ - 12
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 34
+ - 33
- 1
- 0
+ - 6
+ - 8
+ - 36
+ - 0
+ - 0
+ - 8
- 14
- - 14
- - 34
+ - 33
- 1
- 1
- 4
@@ -98,7 +128,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -108,11 +138,26 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
+ - 0
+ - 18
+ - 8
+ - 36
+ - 0
+ - 0
+ - 23
+ - 7
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
index 3b0d75a71..eaf8038f2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
@@ -3,31 +3,56 @@ result: !SemanticTokens
- 0
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
- 0
- 18
- - 29
+ - 36
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 20
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
- 8
- - 39
+ - 37
- 1024
- 1
- - 27
+ - 4
+ - 19
+ - 36
+ - 0
+ - 0
+ - 23
- 8
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
index 827c4b670..9bc959b6c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
@@ -3,36 +3,46 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 16
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 16
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-sometasks.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
index 26fe2075d..3bcc51825 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 13
- - 30
+ - 29
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
index b41aa9750..6fa23318f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
@@ -3,11 +3,11 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 4
- - 25
+ - 24
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
index 8ef46bca6..6d97c1255 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
@@ -3,21 +3,21 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
index 89c5d5f77..00fda5828 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 4
- - 25
+ - 24
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf70-vartest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf70-vartest.robot].out
index e55ae5ef2..851e64d25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf70-vartest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf70-vartest.robot].out
@@ -3,169 +3,254 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 2
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 20
+ - 13
- 12
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 20
+ - 13
- 11
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 3
- 0
- 22
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
- 0
- 0
- - 20
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 13
- 6
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 57
+ - 55
- 0
- 0
- - 20
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 13
- 13
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 2
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 4
+ - 36
+ - 0
- 2
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
- 0
- 0
- - 30
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 23
- 11
- - 35
+ - 34
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 4
+ - 36
+ - 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 49
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 57
+ - 55
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- - 1
- - 13
- - 25
- - 256
+ - 7
+ - 9
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -173,13 +258,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -188,13 +278,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -203,7 +303,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -213,7 +313,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -225,25 +325,45 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
@@ -253,7 +373,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -263,7 +383,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -275,22 +395,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -298,13 +408,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -313,21 +428,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf72-grouptest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
index 816876a41..06694b6e5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
@@ -3,56 +3,56 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 39
+ - 37
- 0
- 1
- 8
- 5
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 54
+ - 52
- 0
- 2
- 4
- 5
- - 39
+ - 37
- 0
- 1
- 8
- 6
- - 39
+ - 37
- 0
- 1
- 8
- 5
- - 39
+ - 37
- 0
- 1
- 12
- 6
- - 39
+ - 37
- 0
- 2
- 8
- 3
- - 54
+ - 52
- 0
- 2
- 4
- 3
- - 54
+ - 52
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out
new file mode 100644
index 000000000..a6ca89433
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out
@@ -0,0 +1,588 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 26
+ - 36
+ - 0
+ - 1
+ - 0
+ - 15
+ - 36
+ - 0
+ - 1
+ - 0
+ - 21
+ - 36
+ - 0
+ - 1
+ - 0
+ - 17
+ - 36
+ - 0
+ - 1
+ - 0
+ - 20
+ - 36
+ - 0
+ - 1
+ - 0
+ - 29
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 15
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 13
+ - 20
+ - 36
+ - 0
+ - 1
+ - 4
+ - 26
+ - 37
+ - 0
+ - 1
+ - 4
+ - 39
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 0
+ - 40
+ - 7
+ - 36
+ - 0
+ - 2
+ - 0
+ - 15
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 19
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 9
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 8
+ - 44
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 12
+ - 44
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 0
+ - 13
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 2
+ - 34
+ - 0
+ - 0
+ - 12
+ - 8
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 4
+ - 34
+ - 0
+ - 0
+ - 8
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 30
+ - 32
+ - 1
+ - 1
+ - 4
+ - 28
+ - 37
+ - 0
+ - 1
+ - 4
+ - 2
+ - 37
+ - 0
+ - 0
+ - 2
+ - 8
+ - 35
+ - 2048
+ - 0
+ - 9
+ - 18
+ - 37
+ - 0
+ - 3
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 26
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 15
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 13
+ - 10
+ - 34
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 3
+ - 36
+ - 0
+ - 2
+ - 0
+ - 39
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 7
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 6
+ - 9
+ - 7
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 36
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 22
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 12
+ - 0
+ - 2
+ - 33
+ - 1
+ - 0
+ - 2
+ - 32
+ - 36
+ - 0
+ - 0
+ - 32
+ - 19
+ - 33
+ - 1
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[very_big_file.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[very_big_file.robot].out
index d4bc0b145..15e147ff0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[very_big_file.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_semantic_tokens.test[very_big_file.robot].out
@@ -3,92346 +3,100801 @@ result: !SemanticTokens
- 0
- 0
- 16
+ - 26
+ - 0
+ - 4
+ - 0
+ - 17
- 27
- 0
- 1
- 0
- - 13
- - 25
- - 256
- - 3
+ - 12
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 1
- 0
- 17
- - 28
+ - 36
- 0
- - 7
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 17
- - 34
+ - 33
- 1
- 0
- - 24
+ - 17
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 51
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 0
- - 19
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 32
- - 34
+ - 33
- 1
+ - 0
+ - 32
+ - 12
+ - 36
+ - 0
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 40
- - 34
+ - 33
- 1
- 0
- - 47
+ - 40
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 6
- - 34
+ - 33
- 1
+ - 0
+ - 6
+ - 11
+ - 36
+ - 0
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 62
- - 34
+ - 33
- 1
- 0
- - 73
+ - 62
+ - 11
+ - 36
+ - 0
+ - 0
+ - 11
- 1
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 0
- - 19
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
+ - 33
- 33
- - 34
- 1
- 0
- - 50
+ - 33
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
- 1
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 50
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 28
- - 34
+ - 33
- 1
- 0
- - 35
+ - 28
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 20
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 34
+ - 33
- 1
- 0
- - 24
+ - 17
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 21
- - 34
+ - 33
- 1
- 0
- - 30
+ - 21
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 13
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 30
- - 34
+ - 33
- 1
- 0
- - 37
+ - 30
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 13
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_workspace_symbols.test[].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_workspace_symbols.test[].out
index c43b56db4..9c15a4617 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_workspace_symbols.test[].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_workspace_symbols.test[].out
@@ -81,10 +81,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 9
start:
- character: 21
+ character: 23
line: 9
uri: bddstyle.robot
name: ${input}
@@ -111,10 +111,10 @@ result:
location:
range:
end:
- character: 46
+ character: 45
line: 9
start:
- character: 33
+ character: 35
line: 9
uri: bddstyle.robot
name: ${multiplier}
@@ -141,10 +141,10 @@ result:
location:
range:
end:
- character: 59
+ character: 58
line: 9
start:
- character: 50
+ character: 52
line: 9
uri: bddstyle.robot
name: ${result}
@@ -276,10 +276,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 119
start:
- character: 19
+ character: 21
line: 119
uri: code_action_show_documentation.robot
name: ${A VAR}
@@ -291,10 +291,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 124
start:
- character: 28
+ character: 30
line: 124
uri: code_action_show_documentation.robot
name: ${A VAR}
@@ -306,10 +306,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
uri: code_action_show_documentation.robot
name: ${LIB_ARG}
@@ -321,10 +321,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: code_action_show_documentation.robot
name: ${a var}
@@ -336,10 +336,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 129
start:
- character: 19
+ character: 21
line: 129
uri: code_action_show_documentation.robot
name: ${a}
@@ -351,10 +351,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: code_action_show_documentation.robot
name: ${bananas}
@@ -381,10 +381,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 129
start:
- character: 27
+ character: 29
line: 129
uri: code_action_show_documentation.robot
name: ${b}
@@ -411,10 +411,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 52
start:
- character: 4
+ character: 6
line: 52
uri: code_action_show_documentation.robot
name: ${result}
@@ -486,10 +486,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 124
start:
- character: 19
+ character: 21
line: 124
uri: code_action_show_documentation.robot
name: ${tt}
@@ -516,10 +516,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 97
start:
- character: 19
+ character: 21
line: 97
uri: code_action_show_documentation.robot
name: ${type}
@@ -846,10 +846,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 113
start:
- character: 19
+ character: 21
line: 113
uri: document_highlight.robot
name: ${A VAR}
@@ -861,10 +861,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 122
start:
- character: 28
+ character: 30
line: 122
uri: document_highlight.robot
name: ${A VAR}
@@ -876,10 +876,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: document_highlight.robot
name: ${A}
@@ -891,10 +891,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 25
start:
- character: 0
+ character: 2
line: 25
uri: document_highlight.robot
name: ${B}
@@ -906,10 +906,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: document_highlight.robot
name: ${LIB_ARG}
@@ -921,10 +921,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 20
start:
- character: 0
+ character: 2
line: 20
uri: document_highlight.robot
name: ${a var}
@@ -936,10 +936,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 164
start:
- character: 32
+ character: 34
line: 164
uri: document_highlight.robot
name: ${a_second_arg}
@@ -951,10 +951,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 169
start:
- character: 32
+ character: 34
line: 169
uri: document_highlight.robot
name: ${a_second_arg}
@@ -966,10 +966,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 164
start:
- character: 19
+ character: 21
line: 164
uri: document_highlight.robot
name: ${an_arg}
@@ -981,10 +981,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 169
start:
- character: 19
+ character: 21
line: 169
uri: document_highlight.robot
name: ${an_arg}
@@ -996,10 +996,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 132
start:
- character: 19
+ character: 21
line: 132
uri: document_highlight.robot
name: ${a}
@@ -1011,10 +1011,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 132
start:
- character: 27
+ character: 29
line: 132
uri: document_highlight.robot
name: ${b}
@@ -1026,10 +1026,10 @@ result:
location:
range:
end:
- character: 44
+ character: 43
line: 132
start:
- character: 40
+ character: 42
line: 132
uri: document_highlight.robot
name: ${c}
@@ -1056,10 +1056,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 57
start:
- character: 4
+ character: 6
line: 57
uri: document_highlight.robot
name: ${result}
@@ -1086,10 +1086,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 122
start:
- character: 19
+ character: 21
line: 122
uri: document_highlight.robot
name: ${tt}
@@ -1431,10 +1431,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 10
start:
- character: 19
+ character: 21
line: 10
uri: embedded_keywords.robot
name: ${data}
@@ -1566,10 +1566,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 2
start:
- character: 4
+ character: 6
line: 2
uri: fibonaci.robot
name: ${a}
@@ -1581,10 +1581,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 36
start:
- character: 4
+ character: 6
line: 36
uri: fibonaci.robot
name: ${a}
@@ -1596,10 +1596,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 27
start:
- character: 8
+ character: 10
line: 27
uri: fibonaci.robot
name: ${n1}
@@ -1611,10 +1611,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 28
start:
- character: 8
+ character: 10
line: 28
uri: fibonaci.robot
name: ${n2}
@@ -1626,10 +1626,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 22
start:
- character: 19
+ character: 21
line: 22
uri: fibonaci.robot
name: ${n}
@@ -1641,10 +1641,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 35
start:
- character: 19
+ character: 21
line: 35
uri: fibonaci.robot
name: ${n}
@@ -1656,10 +1656,10 @@ result:
location:
range:
end:
- character: 12
+ character: 11
line: 25
start:
- character: 8
+ character: 10
line: 25
uri: fibonaci.robot
name: ${r}
@@ -1821,10 +1821,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 32
start:
- character: 19
+ character: 21
line: 32
uri: first.robot
name: ${b}
@@ -1956,10 +1956,10 @@ result:
location:
range:
end:
- character: 47
+ character: 20
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: firstresource.resource
name: ${A_VAR_FROM_RESOURE}
@@ -1971,10 +1971,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 23
start:
- character: 27
+ character: 29
line: 23
uri: firstresource.resource
name: ${a long name}
@@ -1986,10 +1986,10 @@ result:
location:
range:
end:
- character: 61
+ character: 60
line: 23
start:
- character: 46
+ character: 48
line: 23
uri: firstresource.resource
name: ${a_short_name}
@@ -2001,10 +2001,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 23
start:
- character: 19
+ character: 21
line: 23
uri: firstresource.resource
name: ${a}
@@ -2016,10 +2016,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 30
start:
- character: 19
+ character: 21
line: 30
uri: firstresource.resource
name: "${\U0001F413}"
@@ -2031,10 +2031,10 @@ result:
location:
range:
end:
- character: 34
+ character: 33
line: 30
start:
- character: 27
+ character: 29
line: 30
uri: firstresource.resource
name: "${\U0001F60E\U0001F60B\U0001F619\U0001F619}"
@@ -2046,10 +2046,10 @@ result:
location:
range:
end:
- character: 51
+ character: 50
line: 30
start:
- character: 39
+ character: 41
line: 30
uri: firstresource.resource
name: "${\U0001F9DF\u200D\u2642\uFE0F\U0001F6C3\U0001FAC5\U0001F3FF\U0001F478\U0001F3FF\
@@ -2137,10 +2137,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 53
start:
- character: 4
+ character: 6
line: 53
uri: foldingrange.robot
name: ${a}
@@ -2152,10 +2152,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 81
start:
- character: 4
+ character: 6
line: 81
uri: foldingrange.robot
name: ${a}
@@ -2167,10 +2167,10 @@ result:
location:
range:
end:
- character: 15
+ character: 14
line: 12
start:
- character: 11
+ character: 13
line: 12
uri: foldingrange.robot
name: ${i}
@@ -2272,10 +2272,10 @@ result:
location:
range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
uri: goto.robot
name: ${A VAR1}
@@ -2287,10 +2287,10 @@ result:
location:
range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
uri: goto.robot
name: ${A VAR}
@@ -2302,10 +2302,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
uri: goto.robot
name: ${A VAR}
@@ -2317,10 +2317,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
uri: goto.robot
name: ${A VAR}
@@ -2332,10 +2332,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
uri: goto.robot
name: ${A}
@@ -2347,10 +2347,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
uri: goto.robot
name: ${B}
@@ -2362,10 +2362,10 @@ result:
location:
range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
uri: goto.robot
name: ${DOT}
@@ -2377,10 +2377,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
uri: goto.robot
name: ${LIB_ARG}
@@ -2392,10 +2392,10 @@ result:
location:
range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
uri: goto.robot
name: ${MY_DIR}
@@ -2407,10 +2407,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 213
start:
- character: 32
+ character: 34
line: 213
uri: goto.robot
name: ${a_second_arg}
@@ -2422,10 +2422,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 218
start:
- character: 32
+ character: 34
line: 218
uri: goto.robot
name: ${a_second_arg}
@@ -2437,10 +2437,10 @@ result:
location:
range:
end:
- character: 50
+ character: 14
line: 32
start:
- character: 0
+ character: 2
line: 32
uri: goto.robot
name: ${all together}
@@ -2452,10 +2452,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
uri: goto.robot
name: ${an_arg}
@@ -2467,10 +2467,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
uri: goto.robot
name: ${an_arg}
@@ -2482,10 +2482,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 136
start:
- character: 4
+ character: 6
line: 136
uri: goto.robot
name: ${a}
@@ -2497,10 +2497,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
uri: goto.robot
name: ${a}
@@ -2512,10 +2512,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
uri: goto.robot
name: ${b}
@@ -2527,10 +2527,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
uri: goto.robot
name: ${key}
@@ -2542,10 +2542,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
uri: goto.robot
name: ${tt}
@@ -2557,10 +2557,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
uri: goto.robot
name: ${tt}
@@ -2572,10 +2572,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
uri: goto.robot
name: ${value}
@@ -2587,10 +2587,10 @@ result:
location:
range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: goto.robot
name: '&{A DICT}'
@@ -2602,10 +2602,10 @@ result:
location:
range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
uri: goto.robot
name: '&{dict_var}'
@@ -2617,10 +2617,10 @@ result:
location:
range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
uri: goto.robot
name: '@{list_var}'
@@ -2887,10 +2887,10 @@ result:
location:
range:
end:
- character: 28
+ character: 7
line: 30
start:
- character: 0
+ character: 2
line: 30
uri: hover.robot
name: ${A VAR}
@@ -2902,10 +2902,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 267
start:
- character: 19
+ character: 21
line: 267
uri: hover.robot
name: ${A VAR}
@@ -2917,10 +2917,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 276
start:
- character: 28
+ character: 30
line: 276
uri: hover.robot
name: ${A VAR}
@@ -2932,10 +2932,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 41
start:
- character: 0
+ character: 2
line: 41
uri: hover.robot
name: ${A}
@@ -2947,10 +2947,10 @@ result:
location:
range:
end:
- character: 9
+ character: 3
line: 42
start:
- character: 0
+ character: 2
line: 42
uri: hover.robot
name: ${B}
@@ -2962,10 +2962,10 @@ result:
location:
range:
end:
- character: 28
+ character: 3
line: 43
start:
- character: 0
+ character: 2
line: 43
uri: hover.robot
name: ${C}
@@ -2977,10 +2977,10 @@ result:
location:
range:
end:
- character: 9
+ character: 3
line: 56
start:
- character: 0
+ character: 2
line: 56
uri: hover.robot
name: ${D}
@@ -2992,10 +2992,10 @@ result:
location:
range:
end:
- character: 41
+ character: 3
line: 57
start:
- character: 0
+ character: 2
line: 57
uri: hover.robot
name: ${E}
@@ -3007,10 +3007,10 @@ result:
location:
range:
end:
- character: 14
+ character: 3
line: 58
start:
- character: 0
+ character: 2
line: 58
uri: hover.robot
name: ${F}
@@ -3022,10 +3022,25 @@ result:
location:
range:
end:
- character: 38
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
+ uri: hover.robot
+ name: ${INVALID VAR ${}}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
line: 48
start:
- character: 0
+ character: 2
line: 48
uri: hover.robot
name: ${K}
@@ -3037,10 +3052,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 36
start:
- character: 0
+ character: 2
line: 36
uri: hover.robot
name: ${LIB_ARG}
@@ -3052,10 +3067,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 286
start:
- character: 19
+ character: 21
line: 286
uri: hover.robot
name: ${a}
@@ -3067,10 +3082,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 286
start:
- character: 27
+ character: 29
line: 286
uri: hover.robot
name: ${b}
@@ -3097,10 +3112,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 81
start:
- character: 11
+ character: 13
line: 81
uri: hover.robot
name: ${key}
@@ -3112,10 +3127,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 111
start:
- character: 4
+ character: 6
line: 111
uri: hover.robot
name: ${result}
@@ -3127,10 +3142,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 276
start:
- character: 19
+ character: 21
line: 276
uri: hover.robot
name: ${tt}
@@ -3142,10 +3157,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 81
start:
- character: 21
+ character: 23
line: 81
uri: hover.robot
name: ${value}
@@ -3157,10 +3172,10 @@ result:
location:
range:
end:
- character: 35
+ character: 8
line: 33
start:
- character: 0
+ character: 2
line: 33
uri: hover.robot
name: '&{A DICT}'
@@ -3457,10 +3472,25 @@ result:
location:
range:
end:
- character: 13
+ character: 17
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: indexed_variables.robot
+ name: ${A_LIST ${index}}
+ tags: null
+- !WorkspaceSymbol
+ container_name: indexed_variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
line: 2
start:
- character: 0
+ character: 2
line: 2
uri: indexed_variables.robot
name: ${index}
@@ -3472,10 +3502,10 @@ result:
location:
range:
end:
- character: 24
+ character: 8
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: indexed_variables.robot
name: '@{A_LIST}'
@@ -3510,6 +3540,66 @@ result:
uri: jsonvariables.robot
name: first
tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 10
+ start:
+ character: 13
+ line: 10
+ uri: old_for.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: old_for.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 6
+ start:
+ character: 0
+ line: 6
+ uri: old_for.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: old_for.robot
+ name: third
+ tags: null
- !WorkspaceSymbol
container_name: part1__suite
data: null
@@ -3562,10 +3652,10 @@ result:
location:
range:
end:
- character: 21
+ character: 3
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: playground.robot
name: ${2}
@@ -3577,10 +3667,10 @@ result:
location:
range:
end:
- character: 12
+ character: 3
line: 2
start:
- character: 0
+ character: 2
line: 2
uri: playground.robot
name: ${a}
@@ -3592,10 +3682,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 22
start:
- character: 19
+ character: 21
line: 22
uri: playground.robot
name: ${a}
@@ -3607,10 +3697,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 22
start:
- character: 27
+ character: 29
line: 22
uri: playground.robot
name: ${b}
@@ -3622,10 +3712,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 15
start:
- character: 4
+ character: 6
line: 15
uri: playground.robot
name: ${v}
@@ -3667,10 +3757,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 150
start:
- character: 19
+ character: 21
line: 150
uri: references.robot
name: ${A VAR}
@@ -3682,10 +3772,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 159
start:
- character: 28
+ character: 30
line: 159
uri: references.robot
name: ${A VAR}
@@ -3697,10 +3787,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: references.robot
name: ${LIB_ARG}
@@ -3712,10 +3802,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 270
start:
- character: 4
+ character: 6
line: 270
uri: references.robot
name: ${MATCH TYPE}
@@ -3727,10 +3817,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: references.robot
name: ${a var}
@@ -3742,10 +3832,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 245
start:
- character: 19
+ character: 21
line: 245
uri: references.robot
name: ${arg}
@@ -3757,10 +3847,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 169
start:
- character: 19
+ character: 21
line: 169
uri: references.robot
name: ${a}
@@ -3772,10 +3862,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
uri: references.robot
name: ${a}
@@ -3787,10 +3877,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 193
start:
- character: 19
+ character: 21
line: 193
uri: references.robot
name: ${a}
@@ -3802,10 +3892,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 26
start:
- character: 0
+ character: 2
line: 26
uri: references.robot
name: ${bananas}
@@ -3832,10 +3922,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 269
start:
- character: 4
+ character: 6
line: 269
uri: references.robot
name: ${beginning}
@@ -3847,10 +3937,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 169
start:
- character: 27
+ character: 29
line: 169
uri: references.robot
name: ${b}
@@ -3862,10 +3952,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
uri: references.robot
name: ${b}
@@ -3877,10 +3967,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 193
start:
- character: 27
+ character: 29
line: 193
uri: references.robot
name: ${b}
@@ -3907,10 +3997,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 258
start:
- character: 19
+ character: 21
line: 258
uri: references.robot
name: ${count}
@@ -3982,10 +4072,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 59
start:
- character: 4
+ character: 6
line: 59
uri: references.robot
name: ${result}
@@ -3997,10 +4087,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 205
start:
- character: 4
+ character: 6
line: 205
uri: references.robot
name: ${result}
@@ -4012,10 +4102,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 236
start:
- character: 19
+ character: 21
line: 236
uri: references.robot
name: ${retries}
@@ -4027,10 +4117,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 258
start:
- character: 31
+ character: 33
line: 258
uri: references.robot
name: ${retries}
@@ -4102,10 +4192,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 159
start:
- character: 19
+ character: 21
line: 159
uri: references.robot
name: ${tt}
@@ -4132,10 +4222,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 122
start:
- character: 19
+ character: 21
line: 122
uri: references.robot
name: ${type}
@@ -4147,10 +4237,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 224
start:
- character: 19
+ character: 21
line: 224
uri: references.robot
name: ${val}
@@ -4207,10 +4297,10 @@ result:
location:
range:
end:
- character: 11
+ character: 4
line: 27
start:
- character: 0
+ character: 2
line: 27
uri: references.robot
name: "${\U0001F9E8\U0001F9E8}"
@@ -4657,10 +4747,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 31
start:
- character: 19
+ character: 21
line: 31
uri: sematic_tokenizing.robot
name: ${a}
@@ -4672,10 +4762,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 31
start:
- character: 27
+ character: 29
line: 31
uri: sematic_tokenizing.robot
name: ${b}
@@ -4687,10 +4777,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 31
start:
- character: 35
+ character: 37
line: 31
uri: sematic_tokenizing.robot
name: ${c}
@@ -4702,10 +4792,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 26
start:
- character: 19
+ character: 21
line: 26
uri: sematic_tokenizing.robot
name: ${type}
@@ -4822,10 +4912,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 30
start:
- character: 19
+ character: 21
line: 30
uri: setup_teardown.robot
name: ${type}
@@ -4927,10 +5017,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 19
start:
- character: 4
+ character: 6
line: 19
uri: signature_help.robot
name: ${a}
@@ -4942,10 +5032,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 19
start:
- character: 12
+ character: 14
line: 19
uri: signature_help.robot
name: ${b}
@@ -4957,10 +5047,10 @@ result:
location:
range:
end:
- character: 57
+ character: 56
line: 32
start:
- character: 50
+ character: 52
line: 32
uri: signature_help.robot
name: ${html}
@@ -4972,10 +5062,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 32
start:
- character: 33
+ character: 35
line: 32
uri: signature_help.robot
name: ${level}
@@ -4987,10 +5077,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 32
start:
- character: 19
+ character: 21
line: 32
uri: signature_help.robot
name: ${message}
@@ -5182,10 +5272,10 @@ result:
location:
range:
end:
- character: 13
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: symbols.robot
name: ${A_VAR}
@@ -5212,10 +5302,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 41
start:
- character: 19
+ character: 21
line: 41
uri: symbols.robot
name: ${first}
@@ -5227,10 +5317,10 @@ result:
location:
range:
end:
- character: 33
+ character: 32
line: 16
start:
- character: 20
+ character: 22
line: 16
uri: symbols.robot
name: ${kw_result1}
@@ -5242,10 +5332,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 13
start:
- character: 4
+ character: 6
line: 13
uri: symbols.robot
name: ${kw_result}
@@ -5272,10 +5362,10 @@ result:
location:
range:
end:
- character: 20
+ character: 19
line: 21
start:
- character: 9
+ character: 11
line: 21
uri: symbols.robot
name: ${loop_var}
@@ -5287,10 +5377,10 @@ result:
location:
range:
end:
- character: 40
+ character: 39
line: 41
start:
- character: 31
+ character: 33
line: 41
uri: symbols.robot
name: ${second}
@@ -5393,10 +5483,10 @@ result:
location:
range:
end:
- character: 13
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: templates.robot
name: ${A VAR}
@@ -5408,10 +5498,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 79
start:
- character: 19
+ character: 21
line: 79
uri: templates.robot
name: ${aaa}
@@ -5423,10 +5513,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 61
start:
- character: 19
+ character: 21
line: 61
uri: templates.robot
name: ${a}
@@ -5438,10 +5528,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 68
start:
- character: 19
+ character: 21
line: 68
uri: templates.robot
name: ${a}
@@ -5468,10 +5558,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 89
start:
- character: 19
+ character: 21
line: 89
uri: templates.robot
name: ${a}
@@ -5483,10 +5573,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 61
start:
- character: 27
+ character: 29
line: 61
uri: templates.robot
name: ${b}
@@ -5498,10 +5588,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 68
start:
- character: 27
+ character: 29
line: 68
uri: templates.robot
name: ${b}
@@ -5528,10 +5618,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 89
start:
- character: 27
+ character: 29
line: 89
uri: templates.robot
name: ${b}
@@ -5543,10 +5633,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 61
start:
- character: 35
+ character: 37
line: 61
uri: templates.robot
name: ${c}
@@ -5558,10 +5648,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 68
start:
- character: 35
+ character: 37
line: 68
uri: templates.robot
name: ${c}
@@ -5588,10 +5678,10 @@ result:
location:
range:
end:
- character: 46
+ character: 45
line: 89
start:
- character: 35
+ character: 37
line: 89
uri: templates.robot
name: ${expected}
@@ -5603,10 +5693,10 @@ result:
location:
range:
end:
- character: 15
+ character: 14
line: 81
start:
- character: 11
+ character: 13
line: 81
uri: templates.robot
name: ${i}
@@ -5618,10 +5708,10 @@ result:
location:
range:
end:
- character: 26
+ character: 10
line: 7
start:
- character: 0
+ character: 2
line: 7
uri: templates.robot
name: '@{LIST VAR}'
@@ -5858,10 +5948,10 @@ result:
location:
range:
end:
- character: 23
+ character: 16
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: templates2.robot
name: ${VALID PASSWORD}
@@ -5873,10 +5963,10 @@ result:
location:
range:
end:
- character: 22
+ character: 12
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: templates2.robot
name: ${VALID USER}
@@ -5888,10 +5978,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 53
start:
- character: 19
+ character: 21
line: 53
uri: templates2.robot
name: ${a}
@@ -5903,10 +5993,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 53
start:
- character: 27
+ character: 29
line: 53
uri: templates2.robot
name: ${b}
@@ -5918,10 +6008,10 @@ result:
location:
range:
end:
- character: 19
+ character: 18
line: 22
start:
- character: 11
+ character: 13
line: 22
uri: templates2.robot
name: ${index}
@@ -5933,10 +6023,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 19
start:
- character: 11
+ character: 13
line: 19
uri: templates2.robot
name: ${item}
@@ -5948,10 +6038,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 28
start:
- character: 11
+ character: 13
line: 28
uri: templates2.robot
name: ${item}
@@ -5963,10 +6053,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 38
start:
- character: 11
+ character: 13
line: 38
uri: templates2.robot
name: ${item}
@@ -5978,10 +6068,10 @@ result:
location:
range:
end:
- character: 45
+ character: 44
line: 49
start:
- character: 34
+ character: 36
line: 49
uri: templates2.robot
name: ${password}
@@ -5993,10 +6083,10 @@ result:
location:
range:
end:
- character: 30
+ character: 29
line: 49
start:
- character: 19
+ character: 21
line: 49
uri: templates2.robot
name: ${username}
@@ -6008,10 +6098,10 @@ result:
location:
range:
end:
- character: 38
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: templates2.robot
name: '@{ITEMS}'
@@ -6077,109 +6167,619 @@ result:
name: Example keyword
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 16
+ line: 10
+ start:
+ character: 0
+ line: 10
+ uri: templates2.robot
+ name: Invalid Password
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 17
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: templates2.robot
+ name: Invalid User Name
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 11
+ start:
+ character: 0
+ line: 11
+ uri: templates2.robot
+ name: Invalid User Name and Password
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 42
+ line: 48
+ start:
+ character: 0
+ line: 48
+ uri: templates2.robot
+ name: Login with invalid credentials should fail
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 24
+ line: 26
+ start:
+ character: 0
+ line: 26
+ uri: templates2.robot
+ name: Template with FOR and IF
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 0
+ line: 36
+ uri: templates2.robot
+ name: Template with FOR and IF invalid
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 22
+ line: 17
+ start:
+ character: 0
+ line: 17
+ uri: templates2.robot
+ name: Template with FOR loop
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 7
+ start:
+ character: 2
+ line: 7
+ uri: variable_conversion.robot
+ name: '${DATES: list[date]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 28
+ line: 8
+ start:
+ character: 2
+ line: 8
+ uri: variable_conversion.robot
+ name: '${PRIORITIES: dict[int, str]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 70
+ start:
+ character: 21
+ line: 70
+ uri: variable_conversion.robot
+ name: '${a: int | str | None}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 8
+ line: 1
+ start:
+ character: 2
+ line: 1
+ uri: variable_conversion.robot
+ name: '${a: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 47
+ start:
+ character: 6
+ line: 47
+ uri: variable_conversion.robot
+ name: '${a: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 27
+ line: 57
+ start:
+ character: 21
+ line: 57
+ uri: variable_conversion.robot
+ name: '${a: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 58
+ start:
+ character: 13
+ line: 58
+ uri: variable_conversion.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 65
+ start:
+ character: 21
+ line: 65
+ uri: variable_conversion.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 37
+ line: 65
+ start:
+ character: 31
+ line: 65
+ uri: variable_conversion.robot
+ name: '${b: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 57
+ start:
+ character: 34
+ line: 57
+ uri: variable_conversion.robot
+ name: '${c: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 59
+ line: 57
+ start:
+ character: 47
+ line: 57
+ uri: variable_conversion.robot
+ name: '${d: list[str]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 26
+ start:
+ character: 13
+ line: 26
+ uri: variable_conversion.robot
+ name: '${i: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 32
+ start:
+ character: 6
+ line: 32
+ uri: variable_conversion.robot
+ name: '${i: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 42
+ start:
+ character: 13
+ line: 42
+ uri: variable_conversion.robot
+ name: '${i: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 36
+ start:
+ character: 13
+ line: 36
+ uri: variable_conversion.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: variable_conversion.robot
+ name: '${k: Literal["Yes", "No"]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 34
+ line: 83
+ start:
+ character: 2
+ line: 83
+ uri: variable_conversion.robot
+ name: ${keyword}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 38
+ start:
+ character: 13
+ line: 38
+ uri: variable_conversion.robot
+ name: '${l: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 8
+ line: 2
+ start:
+ character: 2
+ line: 2
+ uri: variable_conversion.robot
+ name: '${s: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 32
+ line: 42
+ start:
+ character: 26
+ line: 42
+ uri: variable_conversion.robot
+ name: '${s: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 16
+ line: 6
+ start:
+ character: 2
+ line: 6
+ uri: variable_conversion.robot
+ name: '${time: datetime}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 27
+ start:
+ character: 13
+ line: 27
+ uri: variable_conversion.robot
+ name: '${u: int | str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 4
+ start:
+ character: 2
+ line: 4
+ uri: variable_conversion.robot
+ name: '@{numbers: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 5
+ start:
+ character: 2
+ line: 5
+ uri: variable_conversion.robot
+ name: '@{wrong_numbers: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 53
+ line: 83
+ start:
+ character: 0
+ line: 83
+ uri: variable_conversion.robot
+ name: 'a ${keyword: int:keyword|testcase} with embedded args'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: variable_conversion.robot
+ name: a simple keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 39
+ line: 64
+ start:
+ character: 0
+ line: 64
+ uri: variable_conversion.robot
+ name: a simple keyword with default arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
data: null
- kind: 5
+ kind: 12
location:
range:
end:
- character: 16
- line: 10
+ character: 36
+ line: 69
start:
character: 0
- line: 10
- uri: templates2.robot
- name: Invalid Password
+ line: 69
+ uri: variable_conversion.robot
+ name: a simple keyword with union argument
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
kind: 5
location:
range:
end:
- character: 17
- line: 9
+ character: 30
+ line: 50
start:
character: 0
- line: 9
- uri: templates2.robot
- name: Invalid User Name
+ line: 50
+ uri: variable_conversion.robot
+ name: calling kws with embedded args
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
kind: 5
location:
range:
end:
- character: 30
- line: 11
+ character: 9
+ line: 35
start:
character: 0
- line: 11
- uri: templates2.robot
- name: Invalid User Name and Password
+ line: 35
+ uri: variable_conversion.robot
+ name: for loops
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
- kind: 12
+ kind: 5
location:
range:
end:
- character: 42
- line: 48
+ character: 13
+ line: 46
start:
character: 0
- line: 48
- uri: templates2.robot
- name: Login with invalid credentials should fail
+ line: 46
+ uri: variable_conversion.robot
+ name: if assignment
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
kind: 5
location:
range:
end:
- character: 24
- line: 26
+ character: 19
+ line: 31
start:
character: 0
- line: 26
- uri: templates2.robot
- name: Template with FOR and IF
+ line: 31
+ uri: variable_conversion.robot
+ name: keyword assignments
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
kind: 5
location:
range:
end:
- character: 32
- line: 36
+ character: 15
+ line: 25
start:
character: 0
- line: 36
- uri: templates2.robot
- name: Template with FOR and IF invalid
+ line: 25
+ uri: variable_conversion.robot
+ name: local variables
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
kind: 5
location:
range:
end:
- character: 22
- line: 17
+ character: 15
+ line: 12
start:
character: 0
- line: 17
- uri: templates2.robot
- name: Template with FOR loop
+ line: 12
+ uri: variable_conversion.robot
+ name: suite variables
tags: null
- !WorkspaceSymbol
container_name: variables
@@ -6188,10 +6788,10 @@ result:
location:
range:
end:
- character: 16
+ character: 4
line: 12
start:
- character: 0
+ character: 2
line: 12
uri: variables.robot
name: ${DD}
@@ -6203,10 +6803,10 @@ result:
location:
range:
end:
- character: 24
+ character: 11
line: 124
start:
- character: 0
+ character: 2
line: 124
uri: variables.robot
name: ${INFO_DATA}
@@ -6218,10 +6818,10 @@ result:
location:
range:
end:
- character: 12
+ character: 4
line: 11
start:
- character: 0
+ character: 2
line: 11
uri: variables.robot
name: ${UU}
@@ -6233,10 +6833,10 @@ result:
location:
range:
end:
- character: 24
+ character: 7
line: 123
start:
- character: 0
+ character: 2
line: 123
uri: variables.robot
name: ${VALUE}
@@ -6248,10 +6848,10 @@ result:
location:
range:
end:
- character: 12
+ character: 4
line: 10
start:
- character: 0
+ character: 2
line: 10
uri: variables.robot
name: ${ZZ}
@@ -6278,10 +6878,25 @@ result:
location:
range:
end:
- character: 10
+ character: 24
+ line: 167
+ start:
+ character: 21
+ line: 167
+ uri: variables.robot
+ name: ${aaa}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
line: 64
start:
- character: 4
+ character: 6
line: 64
uri: variables.robot
name: ${asd}
@@ -6293,10 +6908,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 75
start:
- character: 4
+ character: 6
line: 75
uri: variables.robot
name: ${a}
@@ -6308,10 +6923,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 83
start:
- character: 4
+ character: 6
line: 83
uri: variables.robot
name: ${a}
@@ -6323,10 +6938,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 99
start:
- character: 4
+ character: 6
line: 99
uri: variables.robot
name: ${a}
@@ -6353,10 +6968,10 @@ result:
location:
range:
end:
- character: 21
+ character: 20
line: 177
start:
- character: 17
+ character: 19
line: 177
uri: variables.robot
name: ${a}
@@ -6368,10 +6983,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 76
start:
- character: 4
+ character: 6
line: 76
uri: variables.robot
name: ${b}
@@ -6383,10 +6998,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 84
start:
- character: 4
+ character: 6
line: 84
uri: variables.robot
name: ${b}
@@ -6398,10 +7013,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 100
start:
- character: 4
+ character: 6
line: 100
uri: variables.robot
name: ${b}
@@ -6428,10 +7043,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 177
start:
- character: 23
+ character: 25
line: 177
uri: variables.robot
name: ${b}
@@ -6443,10 +7058,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 77
start:
- character: 4
+ character: 6
line: 77
uri: variables.robot
name: ${c}
@@ -6458,10 +7073,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 102
start:
- character: 4
+ character: 6
line: 102
uri: variables.robot
name: ${c}
@@ -6473,10 +7088,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 78
start:
- character: 4
+ character: 6
line: 78
uri: variables.robot
name: ${d}
@@ -6503,10 +7118,10 @@ result:
location:
range:
end:
- character: 40
+ character: 39
line: 177
start:
- character: 29
+ character: 31
line: 177
uri: variables.robot
name: ${expected}
@@ -6518,10 +7133,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 79
start:
- character: 4
+ character: 6
line: 79
uri: variables.robot
name: ${e}
@@ -6533,10 +7148,10 @@ result:
location:
range:
end:
- character: 43
+ character: 11
line: 9
start:
- character: 0
+ character: 2
line: 9
uri: variables.robot
name: ${full_name}
@@ -6548,10 +7163,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 80
start:
- character: 4
+ character: 6
line: 80
uri: variables.robot
name: ${f}
@@ -6563,10 +7178,10 @@ result:
location:
range:
end:
- character: 19
+ character: 18
line: 68
start:
- character: 4
+ character: 6
line: 68
uri: variables.robot
name: ${hello there1}
@@ -6578,10 +7193,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 52
start:
- character: 9
+ character: 11
line: 52
uri: variables.robot
name: ${i}
@@ -6593,14 +7208,29 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 169
start:
- character: 9
+ character: 11
line: 169
uri: variables.robot
name: ${i}
tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 83
+ line: 181
+ start:
+ character: 75
+ line: 181
+ uri: variables.robot
+ name: ${keywords}
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -6623,10 +7253,10 @@ result:
location:
range:
end:
- character: 99
+ character: 98
line: 181
start:
- character: 88
+ character: 90
line: 181
uri: variables.robot
name: ${listener}
@@ -6638,10 +7268,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 181
start:
- character: 19
+ character: 21
line: 181
uri: variables.robot
name: ${name}
@@ -6653,14 +7283,29 @@ result:
location:
range:
end:
- character: 57
+ character: 15
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: variables.robot
name: ${pre_full_name}
tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 68
+ line: 181
+ start:
+ character: 63
+ line: 181
+ uri: variables.robot
+ name: ${scope}
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -6683,10 +7328,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 181
start:
- character: 37
+ character: 39
line: 181
uri: variables.robot
name: ${version}
@@ -6698,10 +7343,10 @@ result:
location:
range:
end:
- character: 11
+ character: 4
line: 14
start:
- character: 0
+ character: 2
line: 14
uri: variables.robot
name: "${\U0001F9E8\U0001F9E8}"
@@ -6713,10 +7358,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 71
start:
- character: 4
+ character: 6
line: 71
uri: variables.robot
name: '&{a dict}'
@@ -7073,10 +7718,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 39
start:
- character: 32
+ character: 34
line: 39
uri: vartest.robot
name: ${a_second_arg}
@@ -7088,10 +7733,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 45
start:
- character: 32
+ character: 34
line: 45
uri: vartest.robot
name: ${a_second_arg}
@@ -7103,10 +7748,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 39
start:
- character: 19
+ character: 21
line: 39
uri: vartest.robot
name: ${an_arg}
@@ -7118,10 +7763,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 45
start:
- character: 19
+ character: 21
line: 45
uri: vartest.robot
name: ${an_arg}
@@ -7373,10 +8018,10 @@ result:
location:
range:
end:
- character: 35
+ character: 11
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: very_big_file.robot
name: ${city_name}
@@ -7403,10 +8048,10 @@ result:
location:
range:
end:
- character: 71
+ character: 16
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: very_big_file.robot
name: ${cryptic_answer}
@@ -7433,10 +8078,10 @@ result:
location:
range:
end:
- character: 34
+ character: 10
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: very_big_file.robot
name: ${location}
@@ -7553,10 +8198,10 @@ result:
location:
range:
end:
- character: 62
+ character: 10
line: 7
start:
- character: 0
+ character: 2
line: 7
uri: very_big_file.robot
name: ${question}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_workspace_symbols.test[as].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_workspace_symbols.test[as].out
index 90632af99..c023fdc0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_workspace_symbols.test[as].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_workspace_symbols.test[as].out
@@ -111,10 +111,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: code_action_show_documentation.robot
name: ${bananas}
@@ -216,10 +216,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 164
start:
- character: 32
+ character: 34
line: 164
uri: document_highlight.robot
name: ${a_second_arg}
@@ -231,10 +231,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 169
start:
- character: 32
+ character: 34
line: 169
uri: document_highlight.robot
name: ${a_second_arg}
@@ -411,10 +411,10 @@ result:
location:
range:
end:
- character: 47
+ character: 20
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: firstresource.resource
name: ${A_VAR_FROM_RESOURE}
@@ -426,10 +426,10 @@ result:
location:
range:
end:
- character: 61
+ character: 60
line: 23
start:
- character: 46
+ character: 48
line: 23
uri: firstresource.resource
name: ${a_short_name}
@@ -516,10 +516,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 213
start:
- character: 32
+ character: 34
line: 213
uri: goto.robot
name: ${a_second_arg}
@@ -531,10 +531,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 218
start:
- character: 32
+ character: 34
line: 218
uri: goto.robot
name: ${a_second_arg}
@@ -726,10 +726,25 @@ result:
location:
range:
end:
- character: 24
+ character: 17
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: indexed_variables.robot
+ name: ${A_LIST ${index}}
+ tags: null
+- !WorkspaceSymbol
+ container_name: indexed_variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 8
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: indexed_variables.robot
name: '@{A_LIST}'
@@ -741,10 +756,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 26
start:
- character: 0
+ character: 2
line: 26
uri: references.robot
name: ${bananas}
@@ -1071,10 +1086,10 @@ result:
location:
range:
end:
- character: 23
+ character: 16
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: templates2.robot
name: ${VALID PASSWORD}
@@ -1086,10 +1101,10 @@ result:
location:
range:
end:
- character: 22
+ character: 12
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: templates2.robot
name: ${VALID USER}
@@ -1101,10 +1116,10 @@ result:
location:
range:
end:
- character: 45
+ character: 44
line: 49
start:
- character: 34
+ character: 36
line: 49
uri: templates2.robot
name: ${password}
@@ -1199,6 +1214,186 @@ result:
uri: templates2.robot
name: Login with invalid credentials should fail
tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 7
+ start:
+ character: 2
+ line: 7
+ uri: variable_conversion.robot
+ name: '${DATES: list[date]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 70
+ start:
+ character: 21
+ line: 70
+ uri: variable_conversion.robot
+ name: '${a: int | str | None}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: variable_conversion.robot
+ name: '${k: Literal["Yes", "No"]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 53
+ line: 83
+ start:
+ character: 0
+ line: 83
+ uri: variable_conversion.robot
+ name: 'a ${keyword: int:keyword|testcase} with embedded args'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: variable_conversion.robot
+ name: a simple keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 39
+ line: 64
+ start:
+ character: 0
+ line: 64
+ uri: variable_conversion.robot
+ name: a simple keyword with default arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 36
+ line: 69
+ start:
+ character: 0
+ line: 69
+ uri: variable_conversion.robot
+ name: a simple keyword with union argument
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 50
+ start:
+ character: 0
+ line: 50
+ uri: variable_conversion.robot
+ name: calling kws with embedded args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 46
+ start:
+ character: 0
+ line: 46
+ uri: variable_conversion.robot
+ name: if assignment
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 19
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: variable_conversion.robot
+ name: keyword assignments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 25
+ start:
+ character: 0
+ line: 25
+ uri: variable_conversion.robot
+ name: local variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 12
+ start:
+ character: 0
+ line: 12
+ uri: variable_conversion.robot
+ name: suite variables
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -1206,10 +1401,10 @@ result:
location:
range:
end:
- character: 10
+ character: 9
line: 64
start:
- character: 4
+ character: 6
line: 64
uri: variables.robot
name: ${asd}
@@ -1281,10 +1476,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 39
start:
- character: 32
+ character: 34
line: 39
uri: vartest.robot
name: ${a_second_arg}
@@ -1296,10 +1491,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 45
start:
- character: 32
+ character: 34
line: 45
uri: vartest.robot
name: ${a_second_arg}
@@ -1371,10 +1566,10 @@ result:
location:
range:
end:
- character: 71
+ character: 16
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: very_big_file.robot
name: ${cryptic_answer}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_workspace_symbols.test[first].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_workspace_symbols.test[first].out
index e29fff18e..ab4c5c257 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_workspace_symbols.test[first].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf71/test_workspace_symbols.test[first].out
@@ -299,6 +299,21 @@ result:
uri: jsonvariables.robot
name: first
tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: old_for.robot
+ name: first
+ tags: null
- !WorkspaceSymbol
container_name: part1__suite
data: null
@@ -576,10 +591,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 41
start:
- character: 19
+ character: 21
line: 41
uri: symbols.robot
name: ${first}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
index 8239f353e..226df7e43 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
index a3ba6d93a..a8415375e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
index 524f60284..6eaa2e935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
index a049d2abd..7ca591687 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
index b2b3a6421..e5efffaa2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
index a513df80b..d54497f31 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
index 2f87ac00e..7efe9727c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
index b0e55bbd5..8f988fde6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
index 6842bfc3a..204e3a526 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
index b9e122bef..392d76d05 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
index 1f167bad1..595a25015 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
index 2d3d8bb53..ec8d67203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
index f4485a04e..2a4594d9d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
index a1f129203..931b651ca 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
index 8a5af0dd6..ca5f519ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
index 079bc90d9..db4eadd00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
index c04f7fc58..9fc8dc9da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
index c233ae926..96464fc0a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
index 870d7a36a..b1eff5801 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
index e82ef2b56..980598cd7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
index c592fc763..0c5b96935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
index a57aabeb3..e02339b62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
index 46e7c3340..ffe8f95ee 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
index 642884f51..67711a05f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
index 28cb91a72..8bb3347a7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
index 0dba1a415..79b0ab951 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
index d71c9d08b..e9fe50e25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
index 7b0d67047..cf3d34dea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
index 3c475dbed..62f4aceb1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
index 15d634e9c..107def919 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
index ade8b6d92..8d2ca8626 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
index 66fddf121..1feeeb40c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
index eb0b5fd54..f5ec1c457 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
index ba8a95794..bea1d3906 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
index 4e8e95194..a62d80df3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
index 90b42a565..e34b79a0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
index be66e20d1..17ec05e27 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
index cb8da7aba..04e70985b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
index f4d156da6..9e6dfd8d7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
index a7550e1f4..b7cf80414 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
index 5d424c505..3244fdcd1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
index becb9d7cb..a94d36226 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
index 5bd9fb55e..fece8b2aa 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
index 725193b37..b0235ca01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
index 5e034b72e..ac50687b3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
index 70d1c5b94..23bb8aaf3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
index ef1b3e404..3b0e98cec 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
index 07bd779f8..325e16336 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
index b3afde9c8..40a3bfb4b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
index b2b32b5a7..9dcf09b8d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
index e0d8907d6..a60432e01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
index ee5c1bb07..52e38c418 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
index 77b677467..afad4b22e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
index 545003425..79c6190d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
index 4a4ecc302..a1e856600 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
index 84362f8a9..b1cb2126a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
index 447bf4184..de0d59df6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
index 52d02c18e..23b9b8a1f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
index dcf7c04e6..17be9c684 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
index 0dfb5c023..7d355d48d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
index f1f42b950..e0c65040f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
index 78cea173c..e73a085ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
index c1fefa5a0..fe1822274 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
index d7f5004eb..7083c0456 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
@@ -13,10 +13,10 @@ result:
line: 113
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
index 5c887ad71..7805da4bc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
@@ -13,10 +13,10 @@ result:
line: 116
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
index ad2cb2b03..e2b4e3ec5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 121
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
index ffdb6f269..3053203b2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 124
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
index 005eccbe0..3aa98776d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
index 727f6e96d..1d82bbf19 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
index 11c936057..69ac841ce 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
index 16a81732f..89d2d8a9a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
index 4f87541d1..220538b57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
@@ -13,10 +13,10 @@ result:
line: 136
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
index 38e45adb1..c0d8cab53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
index 3d915b2f6..e5b45a749 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
index 999c93272..f5bd445a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
index 1be872de3..2ce131597 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
index 1bb226e02..9d51f1860 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
index 7bab735ea..452a44add 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
index 88b77dc89..865e4fe5a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
index 2ad7fcd5c..67501186c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
index 4660d8a0f..f0ad689e2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
index 36e560bc2..3b1f57c25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
index 1082011e2..868e40459 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
index 631d5be02..c6855781f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
index bb4183827..bc6603370 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
index f210370b5..f5299abab 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
index 58c0e52a0..4cf7f16da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
index 16692643a..ae530e453 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
index 85273368b..e48ac204d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
index 11982d4d9..67436f28b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
index 8ee8393a4..8489525fc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
index a9096c519..aeb46e115 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
index 31d58a50f..ff5922211 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
index 2c1d286e9..518933599 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
index 88bfebaf9..1389c2ae6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
index 107e0644a..91386967d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
index bcb425d10..ba3e6351b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
index 5ce584672..14c6de2b7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
index 8c637fba1..145813fd0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
index 84d9267dd..001e62bda 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
index 9c2bc61de..2f9ed615a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
index 877c4d3f7..8f60adbfe 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
index 352ed5354..e58d291f5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
index 7f2aaed0b..79b34a22b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
index 9f7ff9da3..6aafa0cf7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
index e62f70937..99b407107 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
index 26343b08f..a2d19cd1a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
index cb34057a6..b90b18f53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
index 66e1b72a2..5be0a2e62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
index 05a9f2878..44fda0315 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
index a13d64453..3499f3dc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
index edeb45042..800293ec2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 191
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
index f9f759774..e4a2311a1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 193
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
index 8f408d191..18898925e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
index fc63710ae..e00559044 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
index 99b3c42e7..e8255ec5f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
index 24291cbfc..4a85bbe85 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 208
target_range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
index 602cb6ab0..39faffbcf 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
index 6b1ce1d6a..4fd41dc65 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
index 6abc94c88..98f059f2a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
index 3951adaa1..3165c0fc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
index 397adb60c..c34433d9f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
index 38ad1c416..c15fef092 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
index c0de4a0d8..83529a203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 222
target_range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
index 23f059316..3cbc16c4f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
index cd700261d..1514a2e57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
index 6ef9cc6bf..99b72499e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
index 8239f353e..226df7e43 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
index a3ba6d93a..a8415375e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
index 524f60284..6eaa2e935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
@@ -13,10 +13,10 @@ result:
line: 7
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
index a049d2abd..7ca591687 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
index b2b3a6421..e5efffaa2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
index a513df80b..d54497f31 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
@@ -13,10 +13,10 @@ result:
line: 10
target_range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
index 2f87ac00e..7efe9727c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
index b0e55bbd5..8f988fde6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
index 6842bfc3a..204e3a526 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
index b9e122bef..392d76d05 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
index 1f167bad1..595a25015 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
index 2d3d8bb53..ec8d67203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
@@ -13,10 +13,10 @@ result:
line: 14
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
index f4485a04e..2a4594d9d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
index a1f129203..931b651ca 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
index 8a5af0dd6..ca5f519ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 23
target_range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
index 079bc90d9..db4eadd00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
index c04f7fc58..9fc8dc9da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
index c233ae926..96464fc0a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 25
target_range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
index 870d7a36a..b1eff5801 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
index e82ef2b56..980598cd7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
index c592fc763..0c5b96935 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 27
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
index a57aabeb3..e02339b62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
index 46e7c3340..ffe8f95ee 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
index 642884f51..67711a05f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
@@ -13,10 +13,10 @@ result:
line: 29
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
index 28cb91a72..8bb3347a7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
index 0dba1a415..79b0ab951 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
index d71c9d08b..e9fe50e25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
index 7b0d67047..cf3d34dea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
index 3c475dbed..62f4aceb1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
index 15d634e9c..107def919 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
index ade8b6d92..8d2ca8626 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
index 66fddf121..1feeeb40c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
index eb0b5fd54..f5ec1c457 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
@@ -13,10 +13,10 @@ result:
line: 32
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
index ba8a95794..bea1d3906 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
index 4e8e95194..a62d80df3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
index 90b42a565..e34b79a0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
@@ -13,10 +13,10 @@ result:
line: 43
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
index be66e20d1..17ec05e27 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
index cb8da7aba..04e70985b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
index f4d156da6..9e6dfd8d7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
@@ -13,10 +13,10 @@ result:
line: 47
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
index a7550e1f4..b7cf80414 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
index 5d424c505..3244fdcd1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
index becb9d7cb..a94d36226 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 49
target_range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
index 5bd9fb55e..fece8b2aa 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
index 725193b37..b0235ca01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
index 5e034b72e..ac50687b3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
@@ -13,10 +13,10 @@ result:
line: 52
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
index 70d1c5b94..23bb8aaf3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
index ef1b3e404..3b0e98cec 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
index 07bd779f8..325e16336 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
@@ -13,10 +13,10 @@ result:
line: 54
target_range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
index b3afde9c8..40a3bfb4b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
index b2b32b5a7..9dcf09b8d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
index e0d8907d6..a60432e01 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
@@ -13,10 +13,10 @@ result:
line: 59
target_range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
index ee5c1bb07..52e38c418 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
index 77b677467..afad4b22e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
index 545003425..79c6190d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
index 4a4ecc302..a1e856600 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
index 84362f8a9..b1cb2126a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
index 447bf4184..de0d59df6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 68
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
index 52d02c18e..23b9b8a1f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
index dcf7c04e6..17be9c684 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
index 0dfb5c023..7d355d48d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
index f1f42b950..e0c65040f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
index 78cea173c..e73a085ea 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
index c1fefa5a0..fe1822274 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
@@ -13,10 +13,10 @@ result:
line: 71
target_range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
index d7f5004eb..7083c0456 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
@@ -13,10 +13,10 @@ result:
line: 113
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
index 5c887ad71..7805da4bc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
@@ -13,10 +13,10 @@ result:
line: 116
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
index ad2cb2b03..e2b4e3ec5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 121
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
index ffdb6f269..3053203b2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 124
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
index 005eccbe0..3aa98776d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
index 727f6e96d..1d82bbf19 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 129
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
index 11c936057..69ac841ce 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
index 16a81732f..89d2d8a9a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
@@ -13,10 +13,10 @@ result:
line: 133
target_range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
index 4f87541d1..220538b57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
@@ -13,10 +13,10 @@ result:
line: 136
target_range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
index 38e45adb1..c0d8cab53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
index 3d915b2f6..e5b45a749 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
index 999c93272..f5bd445a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
index 1be872de3..2ce131597 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
index 1bb226e02..9d51f1860 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
index 7bab735ea..452a44add 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 155
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
index 88b77dc89..865e4fe5a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
index 2ad7fcd5c..67501186c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
index 4660d8a0f..f0ad689e2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 160
target_range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
index 36e560bc2..3b1f57c25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
index 1082011e2..868e40459 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
index 631d5be02..c6855781f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
index bb4183827..bc6603370 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
index f210370b5..f5299abab 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
index 58c0e52a0..4cf7f16da 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
index 16692643a..ae530e453 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
index 85273368b..e48ac204d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 164
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
index 11982d4d9..67436f28b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
index 8ee8393a4..8489525fc 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 168
target_range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
index a9096c519..aeb46e115 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
index 31d58a50f..ff5922211 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
index 2c1d286e9..518933599 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 170
target_range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
index 88bfebaf9..1389c2ae6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
index 107e0644a..91386967d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
index bcb425d10..ba3e6351b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
index 5ce584672..14c6de2b7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
index 8c637fba1..145813fd0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
index 84d9267dd..001e62bda 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
index 9c2bc61de..2f9ed615a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
index 877c4d3f7..8f60adbfe 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
index 352ed5354..e58d291f5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
@@ -13,10 +13,10 @@ result:
line: 174
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
index 7f2aaed0b..79b34a22b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
index 9f7ff9da3..6aafa0cf7 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 180
target_range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
index e62f70937..99b407107 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
index 26343b08f..a2d19cd1a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
index cb34057a6..b90b18f53 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 182
target_range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
index 66e1b72a2..5be0a2e62 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
index 05a9f2878..44fda0315 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
index a13d64453..3499f3dc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
@@ -13,10 +13,10 @@ result:
line: 187
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
index edeb45042..800293ec2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 191
target_range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
index f9f759774..e4a2311a1 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
@@ -13,10 +13,10 @@ result:
line: 193
target_range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
index 8f408d191..18898925e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
index fc63710ae..e00559044 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
index 99b3c42e7..e8255ec5f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 205
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
index 24291cbfc..4a85bbe85 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 208
target_range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
index 602cb6ab0..39faffbcf 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
index 6b1ce1d6a..4fd41dc65 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
index 6abc94c88..98f059f2a 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 210
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
index 3951adaa1..3165c0fc6 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
index 397adb60c..c34433d9f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
index 38ad1c416..c15fef092 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
@@ -13,10 +13,10 @@ result:
line: 219
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
index c0de4a0d8..83529a203 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
@@ -13,10 +13,10 @@ result:
line: 222
target_range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
index 23f059316..3cbc16c4f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
index cd700261d..1514a2e57 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
index 6ef9cc6bf..99b72499e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
@@ -13,10 +13,10 @@ result:
line: 224
target_range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
target_selection_range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out
index 444f042b1..e61ae5a48 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 2
line: 38
name: no hover for invalid variable
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out
index 487757a8e..28410e141 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 9
line: 38
name: no hover for invalid variable
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out
index ef7994f1d..52e5648d8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 16
line: 38
name: no hover for invalid variable
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out
index 98a12e526..5238819ba 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 20
line: 72
name: no hover for invalid variable reference
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 28
+ line: 72
+ start:
+ character: 13
+ line: 72
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out
index 69dd1ee5c..1b0b0551b 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out
@@ -2,4 +2,14 @@ data: !GeneratedTestData
character: 27
line: 72
name: no hover for invalid variable reference
-result: null
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 28
+ line: 72
+ start:
+ character: 13
+ line: 72
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-036-004-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-036-004-simple_keyword_call].out
index 1584a8ca2..e4134f32f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-036-004-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-036-004-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-036-005-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-036-005-simple_keyword_call].out
index 684501b53..c21c55688 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-036-005-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-036-005-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-036-006-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-036-006-simple_keyword_call].out
index 4c9bcebd8..a2cf973c3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-036-006-simple_keyword_call].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-036-006-simple_keyword_call].out
@@ -219,6 +219,186 @@ result:
character: 4
line: 55
uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
- !Location
range:
end:
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-105-029-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-105-029-a_variable_with_emoji].out
new file mode 100644
index 000000000..70dec3898
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-105-029-a_variable_with_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 29
+ line: 105
+ name: a variable with emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-105-030-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-105-030-a_variable_with_emoji].out
new file mode 100644
index 000000000..1ba9d617a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-105-030-a_variable_with_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 30
+ line: 105
+ name: a variable with emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-105-031-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-105-031-a_variable_with_emoji].out
deleted file mode 100644
index c5cb6c5cd..000000000
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-105-031-a_variable_with_emoji].out
+++ /dev/null
@@ -1,5 +0,0 @@
-data: !GeneratedTestData
- character: 31
- line: 105
- name: a variable with emoji
-result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-105-033-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-105-033-a_variable_with_emoji].out
deleted file mode 100644
index 3afbe753a..000000000
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_references.test[references.robot-105-033-a_variable_with_emoji].out
+++ /dev/null
@@ -1,32 +0,0 @@
-data: !GeneratedTestData
- character: 33
- line: 105
- name: a variable with emoji
-result:
-- !Location
- range:
- end:
- character: 50
- line: 30
- start:
- character: 41
- line: 30
- uri: resources/firstresource.resource
-- !Location
- range:
- end:
- character: 49
- line: 31
- start:
- character: 40
- line: 31
- uri: resources/firstresource.resource
-- !Location
- range:
- end:
- character: 42
- line: 105
- start:
- character: 33
- line: 105
- uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[__init__.robot].out
index 617f8bd42..f17fc64b4 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[__init__.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 14
- 26
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[bddstyle.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[bddstyle.robot].out
index 2ffd4be56..abd63c2b8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[bddstyle.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[bddstyle.robot].out
@@ -3,57 +3,87 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 14
- - 34
+ - 33
- 1
- 0
- - 22
+ - 14
+ - 8
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 0
- 37
- - 34
+ - 33
- 1
- 0
- - 50
+ - 37
+ - 13
+ - 36
+ - 0
+ - 0
+ - 13
- 1
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 0
- 31
- - 34
+ - 33
- 1
- 0
- - 40
+ - 31
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 1
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 0
- 2
- - 34
+ - 33
- 1
- 0
- 6
@@ -63,7 +93,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -73,221 +103,246 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 13
- - 56
+ - 54
- 0
- 0
- 17
- 9
- - 56
+ - 54
- 0
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 0
- 0
- - 23
+ - 14
+ - 8
+ - 36
+ - 2048
+ - 0
+ - 9
- 11
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 37
- - 39
+ - 37
- 0
+ - 0
+ - 37
+ - 13
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 9
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 8
+ - 36
+ - 2048
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 0
- 14
- 2
- - 39
+ - 37
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 0
- 0
- 14
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 37
- - 39
+ - 37
- 0
- 0
- 37
- 1
- - 36
+ - 35
- 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
- 0
- 31
- 10
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
- 0
- 0
- 31
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 4
+ - 36
+ - 2048
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[code_action_show_documentation.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[code_action_show_documentation.robot].out
index 693e7bbc6..63f49473f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[code_action_show_documentation.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[code_action_show_documentation.robot].out
@@ -3,82 +3,97 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 16
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -88,27 +103,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -116,24 +131,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 2
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -143,32 +163,47 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -178,7 +213,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -188,8 +223,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -198,7 +238,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -208,7 +248,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -218,22 +258,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 1
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -243,17 +298,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -263,7 +328,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -273,22 +338,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -298,7 +363,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -308,7 +373,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -318,27 +383,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
- 9
- - 53
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
- 0
- 0
- 9
@@ -348,17 +418,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -368,17 +448,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -388,7 +478,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -398,12 +488,12 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 2
- 4
@@ -413,7 +503,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -423,107 +513,112 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 17
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 5
- - 36
+ - 35
- 2048
- 0
- 6
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 14
- - 36
+ - 35
- 2048
- 0
- 15
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 2
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 18
+ - 7
+ - 10
+ - 36
+ - 2048
+ - 0
+ - 11
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 21
- - 39
+ - 37
- 0
- 2
- 4
- 21
- - 39
+ - 37
- 0
- 0
- 25
@@ -533,57 +628,67 @@ result: !SemanticTokens
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 2
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 17
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 2
- 4
@@ -593,7 +698,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -603,97 +708,192 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 3
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 22
- 4
- - 34
+ - 18
+ - 36
+ - 0
+ - 0
+ - 18
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 7
- - 34
+ - 33
- 1
- 0
- - 17
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 10
- 14
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -703,7 +903,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -720,20 +920,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -743,7 +958,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -753,7 +968,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -765,20 +980,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -788,7 +1018,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -798,7 +1028,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -810,14 +1040,29 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[document_highlight.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[document_highlight.robot].out
index 85e03cd1e..f92227379 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[document_highlight.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[document_highlight.robot].out
@@ -3,62 +3,77 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
+ - 0
+ - 0
+ - 16
+ - 9
+ - 36
- 0
- 0
- - 25
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
- 36
- - 53
+ - 0
+ - 0
+ - 9
+ - 36
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -68,27 +83,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -96,24 +111,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 4
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -123,32 +143,52 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 9
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,8 +208,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -178,7 +223,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -188,7 +233,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -198,22 +243,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -223,17 +283,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -243,7 +313,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,22 +323,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -278,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -288,7 +358,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -298,27 +368,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 9
- - 53
+ - 51
- 0
- 0
- 9
@@ -328,17 +403,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -348,37 +433,47 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 21
- - 39
+ - 37
- 0
- 1
- 4
- 27
- - 39
+ - 37
- 0
- 1
- 4
- 27
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -388,12 +483,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -403,7 +498,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -413,7 +508,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -423,7 +518,7 @@ result: !SemanticTokens
- 5
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -433,147 +528,167 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -583,7 +698,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -600,20 +715,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -623,7 +753,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -633,7 +763,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -645,20 +775,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -668,7 +813,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -678,7 +823,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -691,7 +836,12 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 9
+ - 1
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 4
- 7
- 0
@@ -700,92 +850,152 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- - 26
+ - 18
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 15
- - 40
+ - 38
- 1024
+ - 0
+ - 19
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 24
- 15
- - 40
+ - 38
- 1024
+ - 0
+ - 19
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- - 26
+ - 18
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 11
- - 40
+ - 38
- 1024
- 0
- 15
- 4
- - 40
+ - 38
+ - 0
+ - 0
+ - 8
+ - 7
+ - 36
- 0
- 3
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 4
- 0
- 49
- - 34
- - 1
+ - 33
- 1
- 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
- - 3
- 4
- 1
- 21
@@ -793,13 +1003,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -808,13 +1023,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -823,7 +1048,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -833,7 +1058,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -845,20 +1070,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
@@ -868,7 +1108,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -878,7 +1118,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -890,22 +1130,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -913,13 +1143,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -928,21 +1163,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[duplicated_resources.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[duplicated_resources.robot].out
index fb940fc64..413d2bcd8 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[duplicated_resources.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[duplicated_resources.robot].out
@@ -3,107 +3,107 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 28
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 10
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 8
- - 53
+ - 51
- 0
- 2
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 12
- 14
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 18
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -113,12 +113,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -128,12 +128,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 1
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -143,6 +143,6 @@ result: !SemanticTokens
- 0
- 1
- 18
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[external_libray.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[external_libray.robot].out
index deee32838..60f2a2488 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[external_libray.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[external_libray.robot].out
@@ -3,47 +3,47 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 17
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -53,6 +53,6 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[foldingrange.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[foldingrange.robot].out
index 5c07a2da1..4ffb0b878 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[foldingrange.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[foldingrange.robot].out
@@ -3,356 +3,396 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- - 2
- - 0
- - 13
- - 25
- - 256
- - 1
+ - 3
- 0
- 3
- - 43
+ - 41
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 9
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 15
+ - 8
- 2
- - 46
+ - 44
- 0
- 2
- 8
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 6
+ - 4
+ - 36
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 2
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 3
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 0
- 8
- - 33
+ - 32
- 1
- 3
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 3
- 0
- 9
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 16
- - 31
+ - 30
- 0
- 7
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 13
- - 33
+ - 32
- 1
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
- 1
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 2
- - 35
+ - 34
- 0
- 1
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- 12
- 3
- - 39
+ - 37
- 1024
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 4
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 0
- 16
- - 33
+ - 32
- 1
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 6
+ - 36
+ - 0
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- - 16
+ - 8
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 12
- - 39
+ - 37
- 1024
- 3
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[goto.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[goto.robot].out
index 627361dcf..c53530ddb 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[goto.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[goto.robot].out
@@ -3,62 +3,82 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 11
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
- 36
- - 53
+ - 0
+ - 0
+ - 9
+ - 36
+ - 51
- 0
- 4
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 24
+ - 18
+ - 6
+ - 36
+ - 0
+ - 0
+ - 6
- 19
- - 53
+ - 51
- 0
- 0
- 23
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -66,24 +86,49 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 5
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
- 0
- - 3
- 18
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -93,7 +138,7 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -103,17 +148,37 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
- 1
- 21
- 0
- - 7
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 6
+ - 36
+ - 0
+ - 2
+ - 0
+ - 11
+ - 36
+ - 0
+ - 2
+ - 0
+ - 11
+ - 36
+ - 0
+ - 0
- 15
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -123,22 +188,52 @@ result: !SemanticTokens
- 0
- 6
- 6
- - 56
+ - 54
- 0
- 0
- 6
- 1
- 21
- 0
+ - 3
+ - 0
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
+ - 0
+ - 9
+ - 11
+ - 36
+ - 0
+ - 0
+ - 12
- 10
+ - 36
+ - 0
+ - 4
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -148,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -158,37 +253,67 @@ result: !SemanticTokens
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -198,12 +323,17 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
- 0
- 5
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -213,42 +343,77 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 29
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 0
+ - 12
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 9
+ - 36
- 0
- 3
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 3
- 4
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -258,22 +423,22 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 16
- - 39
+ - 37
- 0
- 2
- 4
- 18
- - 39
+ - 37
- 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -283,7 +448,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -298,7 +463,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -308,7 +473,7 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
- 2
- 4
@@ -318,7 +483,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -328,7 +493,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -338,12 +503,12 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 4
- 0
- 16
- - 33
+ - 32
- 1
- 1
- 4
@@ -353,7 +518,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -363,7 +528,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -373,177 +538,202 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 32
- - 39
+ - 37
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 3
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 3
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 7
- - 39
+ - 37
- 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -553,12 +743,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -568,7 +758,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -578,7 +768,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -588,22 +778,22 @@ result: !SemanticTokens
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 16
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 3
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -613,7 +803,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -630,20 +820,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -653,7 +858,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -663,7 +868,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -675,20 +880,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 32
- - 34
+ - 33
- 1
- 1
- 4
@@ -698,7 +918,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -708,7 +928,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -721,7 +941,12 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 10
+ - 1
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
- 5
- 7
- 0
@@ -730,20 +955,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 9
+ - 36
+ - 0
- 6
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 4
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -753,7 +993,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -763,7 +1003,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -775,25 +1015,40 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 0
- 7
- - 34
+ - 33
- 1
- 1
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -803,12 +1058,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -818,12 +1073,12 @@ result: !SemanticTokens
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 2
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -833,29 +1088,14 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 0
- 49
- - 34
- - 1
+ - 33
- 1
- 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
- - 3
- 4
- 1
- 21
@@ -863,13 +1103,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -878,13 +1123,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -893,7 +1148,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -903,7 +1158,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -915,20 +1170,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
@@ -938,7 +1208,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -948,7 +1218,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -960,22 +1230,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -983,13 +1243,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -998,21 +1263,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[hover.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[hover.robot].out
index 7df286095..b28ca4891 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[hover.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[hover.robot].out
@@ -3,32 +3,32 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -38,27 +38,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 18
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -66,134 +66,164 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 27
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 18
- 41
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 14
- - 53
+ - 51
- 0
- 0
- 18
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 17
- - 53
+ - 51
- 0
- 0
- 29
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 8
- - 53
+ - 51
- 0
- 3
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 15
- 17
- - 53
+ - 51
- 0
- 0
- 30
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 10
- - 53
+ - 51
- 0
- 4
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 3
+ - 0
+ - 9
+ - 36
+ - 0
- 0
- - 4
- 18
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -203,7 +233,7 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -213,22 +243,87 @@ result: !SemanticTokens
- 0
- 6
- 1
- - 56
+ - 54
- 0
- 0
- 1
- 1
- 21
- 0
- - 28
+ - 3
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 36
+ - 0
+ - 3
+ - 0
+ - 5
+ - 36
- 0
- 1
- 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 20
+ - 36
+ - 0
- 5
- - 33
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 25
+ - 36
+ - 0
+ - 0
+ - 26
+ - 4
+ - 36
+ - 0
+ - 8
+ - 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 6
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
- 1
- 1
- 4
@@ -238,7 +333,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -253,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -263,8 +358,13 @@ result: !SemanticTokens
- 0
- 3
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -273,7 +373,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -283,7 +383,7 @@ result: !SemanticTokens
- 0
- 3
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -293,37 +393,67 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
- 3
- 4
- 11
- - 53
+ - 51
- 0
- 0
- 11
@@ -333,52 +463,97 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 29
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 0
+ - 12
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 9
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 3
- 4
- 26
- - 39
+ - 37
- 0
- 3
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -388,12 +563,12 @@ result: !SemanticTokens
- 0
- 1
- 26
- - 39
+ - 37
- 0
- 4
- 0
- 6
- - 33
+ - 32
- 1
- 2
- 4
@@ -403,7 +578,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -413,7 +588,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -423,27 +598,32 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
- 9
- - 53
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
- 0
- 0
- 9
@@ -453,17 +633,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -473,12 +663,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -488,17 +683,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
- 0
- 19
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -506,34 +701,49 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 13
+ - 1
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 56
+ - 54
- 0
- 0
- 6
- 1
- 21
- 0
+ - 0
+ - 1
+ - 10
+ - 36
+ - 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
- 0
- 28
@@ -543,22 +753,22 @@ result: !SemanticTokens
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 5
- 4
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 0
- 7
- 15
- - 40
+ - 38
- 0
- 0
- 21
@@ -568,122 +778,142 @@ result: !SemanticTokens
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- - 2
- - 35
+ - 2
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- - 19
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 10
- 3
- - 39
+ - 37
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 17
- 3
- - 39
+ - 37
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 3
- - 39
+ - 37
- 1024
- 4
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
@@ -693,7 +923,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -703,17 +933,17 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
@@ -723,7 +953,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -733,17 +963,17 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -753,97 +983,97 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 4
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 3
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -853,72 +1083,72 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 5
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 0
- 21
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 40
+ - 38
- 0
- 0
- 1
- 3
- - 40
+ - 38
- 1024
- 0
- 13
- 7
- - 35
+ - 34
- 0
- 0
- 12
- 3
- - 40
+ - 38
- 1024
- 0
- 11
- 4
- - 35
+ - 34
- 0
- 0
- 6
- 3
- - 40
+ - 38
- 1024
- 5
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -928,22 +1158,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 0
- - 27
+ - 16
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 40
+ - 38
- 0
- 0
- 1
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -953,12 +1188,12 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 40
+ - 38
- 1024
- 4
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
@@ -968,7 +1203,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -978,42 +1213,42 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 1
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -1023,32 +1258,32 @@ result: !SemanticTokens
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 4
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 18
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1058,12 +1293,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1073,12 +1308,12 @@ result: !SemanticTokens
- 0
- 1
- 20
- - 39
+ - 37
- 0
- 2
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1088,27 +1323,27 @@ result: !SemanticTokens
- 0
- 1
- 18
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 3
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -1118,12 +1353,12 @@ result: !SemanticTokens
- 0
- 1
- 16
- - 39
+ - 37
- 0
- 3
- 4
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -1133,12 +1368,12 @@ result: !SemanticTokens
- 0
- 1
- 21
- - 39
+ - 37
- 0
- 3
- 4
- 8
- - 53
+ - 51
- 0
- 0
- 8
@@ -1148,12 +1383,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 10
- - 53
+ - 51
- 0
- 0
- 10
@@ -1163,12 +1398,12 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 3
- 4
- 19
- - 53
+ - 51
- 0
- 0
- 19
@@ -1178,17 +1413,17 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 4
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -1198,12 +1433,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -1213,7 +1448,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -1223,7 +1458,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -1233,92 +1468,92 @@ result: !SemanticTokens
- 5
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 9
- - 34
+ - 33
- 1
- 1
- 4
- 11
- - 39
+ - 37
- 1024
- 0
- 15
- 3
- - 40
+ - 38
- 1024
- 4
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 16
- - 40
+ - 38
- 0
- 0
- 20
- 20
- - 40
+ - 38
- 0
- 5
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- 9
- 3
- - 35
+ - 34
- 0
- 0
- 5
- 16
- - 40
+ - 38
- 0
- 0
- 18
- 3
- - 35
+ - 34
- 0
- 0
- 5
- 20
- - 40
+ - 38
- 0
- 7
- 0
- 16
- - 34
+ - 33
- 1
- 2
- 4
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 13
- - 34
+ - 33
- 1
- 1
- 4
- 9
- - 39
+ - 37
- 1024
- 3
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -1328,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1345,20 +1580,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -1368,7 +1618,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1378,7 +1628,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -1390,20 +1640,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -1413,7 +1678,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1423,7 +1688,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1435,49 +1700,74 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 3
- 0
- 25
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 4
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 8
- 2
- - 24
+ - 23
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[old_for.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[old_for.robot].out
new file mode 100644
index 000000000..7be4fa033
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[old_for.robot].out
@@ -0,0 +1,98 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 4
+ - 37
+ - 0
+ - 0
+ - 8
+ - 9
+ - 36
+ - 0
+ - 1
+ - 8
+ - 1
+ - 37
+ - 0
+ - 0
+ - 9
+ - 9
+ - 36
+ - 0
+ - 1
+ - 8
+ - 1
+ - 37
+ - 0
+ - 2
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 2
+ - 34
+ - 0
+ - 0
+ - 14
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 14
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 8
+ - 44
+ - 0
+ - 1
+ - 8
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 18
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[playground.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[playground.robot].out
index 5062f2aba..40dfae3ad 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[playground.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[playground.robot].out
@@ -3,87 +3,147 @@ result: !SemanticTokens
- 0
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 13
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 2
- - 35
+ - 34
- 0
- 0
- 11
- 8
- - 39
+ - 37
- 1024
- 0
- 17
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 8
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 4
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 8
- - 34
+ - 33
- 1
- 1
- 4
@@ -93,7 +153,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -103,26 +163,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[references.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[references.robot].out
index 95a866faf..d90a50ead 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[references.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[references.robot].out
@@ -3,62 +3,77 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 9
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 22
- - 53
+ - 51
- 0
- 3
- 0
- 8
- - 24
+ - 23
- 0
- 0
- - 25
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 36
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -68,27 +83,27 @@ result: !SemanticTokens
- 0
- 15
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 9
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 16
- 8
- - 53
+ - 51
- 0
- 0
- 12
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -96,24 +111,29 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 15
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 7
- - 53
+ - 51
- 0
- 3
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -123,32 +143,52 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 14
- - 39
+ - 37
- 1024
- 3
- 0
- 17
- - 28
+ - 27
- 0
- - 9
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 1
+ - 0
+ - 7
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,8 +208,13 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 1
@@ -178,7 +223,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -188,7 +233,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -198,22 +243,37 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 2
- 4
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 2
- 4
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -223,17 +283,27 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 3
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -243,7 +313,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,22 +323,22 @@ result: !SemanticTokens
- 0
- 5
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -278,7 +348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -288,7 +358,7 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 53
+ - 51
- 1024
- 0
- 7
@@ -298,27 +368,32 @@ result: !SemanticTokens
- 0
- 1
- 14
- - 39
+ - 37
- 1024
- 2
- 4
- 2
- - 36
+ - 35
- 0
- 1
- 4
- 5
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 9
- - 53
+ - 51
- 0
- 0
- 9
@@ -328,17 +403,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
- 1
- - 18
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
- 7
- - 53
+ - 51
- 0
- 0
- 7
@@ -348,17 +433,27 @@ result: !SemanticTokens
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 2
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -368,7 +463,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -378,12 +473,12 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 2
- 4
@@ -393,7 +488,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -403,117 +498,127 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 17
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 5
- - 36
+ - 35
- 2048
- 0
- 6
- 9
- - 39
+ - 37
- 0
- 0
- 9
- 6
- - 36
+ - 35
- 2048
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 14
- - 36
+ - 35
- 2048
- 0
- 15
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 18
+ - 7
+ - 10
+ - 36
+ - 2048
+ - 0
+ - 11
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 7
- - 39
+ - 37
- 0
- 0
- - 15
+ - 7
+ - 7
+ - 36
+ - 2048
+ - 0
+ - 8
- 13
- - 39
+ - 37
- 0
- 3
- 4
- 21
- - 39
+ - 37
- 0
- 2
- 4
- 21
- - 39
+ - 37
- 0
- 0
- 25
@@ -523,57 +628,57 @@ result: !SemanticTokens
- 2
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 3
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 4
- 18
- - 36
+ - 35
- 2048
- 0
- 19
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 6
- - 36
+ - 35
- 2048
- 4
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 0
- 6
- 2
- - 56
+ - 54
- 0
- 0
- 2
@@ -583,7 +688,7 @@ result: !SemanticTokens
- 2
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -593,12 +698,12 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 39
+ - 37
- 0
- 0
- 6
- 2
- - 56
+ - 54
- 0
- 0
- 2
@@ -606,9 +711,14 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 12
+ - 1
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 15
- - 56
+ - 54
- 0
- 0
- 15
@@ -616,24 +726,34 @@ result: !SemanticTokens
- 21
- 0
- 0
- - 18
- 1
- - 17
- - 0
+ - 7
+ - 36
- 0
- - 3
- - 4
- - 17
+ - 0
+ - 8
+ - 7
+ - 36
+ - 0
+ - 0
+ - 9
+ - 1
+ - 17
+ - 0
+ - 0
+ - 3
+ - 4
+ - 17
- 0
- 5
- 0
- 7
- - 33
+ - 32
- 1
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -643,12 +763,12 @@ result: !SemanticTokens
- 0
- 1
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 1
- - 56
+ - 54
- 0
- 0
- 1
@@ -658,7 +778,7 @@ result: !SemanticTokens
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 0
- 11
@@ -668,7 +788,7 @@ result: !SemanticTokens
- 0
- 7
- 12
- - 56
+ - 54
- 0
- 0
- 12
@@ -678,12 +798,12 @@ result: !SemanticTokens
- 4
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- 7
- 7
- - 56
+ - 54
- 0
- 0
- 7
@@ -693,22 +813,32 @@ result: !SemanticTokens
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 17
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -718,7 +848,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -728,97 +858,192 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 20
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
- 10
- - 34
+ - 33
- 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
- 4
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 21
- 4
- - 34
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 4
- - 34
+ - 33
- 1
- 0
- - 22
- 4
- - 34
+ - 18
+ - 36
+ - 0
+ - 0
+ - 18
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 7
- - 34
+ - 33
- 1
- 0
- - 17
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 10
- 14
- - 34
+ - 33
- 1
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 2
- 0
- 21
- - 34
+ - 33
- 1
- 1
- 4
@@ -828,7 +1053,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -845,20 +1070,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -868,7 +1108,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -878,7 +1118,7 @@ result: !SemanticTokens
- 0
- 5
- 5
- - 56
+ - 54
- 0
- 0
- 9
@@ -890,20 +1130,35 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
@@ -913,7 +1168,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -923,7 +1178,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -935,37 +1190,37 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 4
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
- - 3
- 0
- - 49
- - 34
- - 1
- - 1
+ - 7
- 4
- - 1
- - 21
- - 256
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
+ - 49
+ - 33
- 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -973,13 +1228,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
- 2
- 4
- 1
@@ -988,13 +1248,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -1003,7 +1273,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1013,7 +1283,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1025,25 +1295,45 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- - 10
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 12
- - 39
+ - 37
- 1024
- 1
- 4
@@ -1053,7 +1343,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1063,7 +1353,7 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
@@ -1075,22 +1365,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -1098,13 +1378,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
- 2
- 4
- 1
@@ -1113,27 +1398,52 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 12
- - 39
+ - 37
- 1024
- 1
- 4
@@ -1143,7 +1453,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -1153,27 +1463,42 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 3
- 0
- 27
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 4
+ - 36
- 0
- 2
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 17
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1183,52 +1508,52 @@ result: !SemanticTokens
- 0
- 1
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 14
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 10
+ - 36
+ - 0
- 2
- 8
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 12
+ - 36
- 0
- 3
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 33
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 2
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
@@ -1238,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1248,44 +1573,54 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 35
+ - 36
- 0
- 3
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 39
+ - 36
- 0
- 2
- 4
- 6
- - 35
+ - 34
- 0
- - 3
- 0
- - 57
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
+ - 10
+ - 9
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
- - 1
- - 21
- - 256
+ - 57
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1293,7 +1628,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1303,17 +1638,22 @@ result: !SemanticTokens
- 0
- 5
- 10
- - 56
+ - 54
- 0
- 2
- 4
- 5
- - 35
+ - 34
+ - 0
+ - 0
+ - 9
+ - 7
+ - 36
- 0
- 0
- - 20
+ - 11
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1323,39 +1663,24 @@ result: !SemanticTokens
- 0
- 1
- 10
- - 35
+ - 34
- 0
- 2
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 31
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1363,7 +1688,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1373,59 +1698,59 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 1
- 4
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 2
- 4
- 4
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- - 3
- 0
- - 44
- - 34
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
+ - 10
+ - 9
+ - 36
- 0
- - 1
- - 13
- - 25
- - 256
+ - 3
- 0
- - 13
- - 1
- - 21
- - 256
+ - 44
+ - 33
- 1
+ - 2
- 4
- 1
- 21
@@ -1433,7 +1758,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1443,27 +1768,37 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 10
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
+ - 4
+ - 36
- 0
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 24
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -1473,52 +1808,67 @@ result: !SemanticTokens
- 0
- 1
- 10
- - 35
+ - 34
- 0
- 4
- 8
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 23
- - 34
+ - 33
- 1
- 1
- - 21
+ - 4
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
- 12
- - 39
+ - 37
- 1024
- 1
- - 22
+ - 4
+ - 13
+ - 36
+ - 0
+ - 0
+ - 18
- 12
- - 39
+ - 37
- 1024
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- - 41
+ - 25
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1528,37 +1878,37 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 35
+ - 34
- 0
- 2
- 8
- 13
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 28
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1568,22 +1918,22 @@ result: !SemanticTokens
- 0
- 1
- 13
- - 35
+ - 34
- 0
- 2
- 8
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 36
- 4
- - 38
+ - 36
- 0
- 0
- 4
@@ -1593,16 +1943,16 @@ result: !SemanticTokens
- 0
- 1
- 6
- - 35
+ - 34
- 0
- 1
- 8
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[remotetest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[remotetest.robot].out
index 91f1a4bce..539e5d2db 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[remotetest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[remotetest.robot].out
@@ -3,21 +3,21 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 4
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 30
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[reserved.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[reserved.robot].out
index 6afe4658d..ef17f9962 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[reserved.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[reserved.robot].out
@@ -3,47 +3,47 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 14
- - 39
+ - 37
- 0
- 1
- 4
- 5
- - 39
+ - 37
- 0
- 1
- 4
- 6
- - 39
+ - 37
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 7
@@ -53,17 +53,17 @@ result: !SemanticTokens
- 1
- 4
- 7
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 1
- 4
- 2
- - 39
+ - 37
- 0
- 0
- 6
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[sematic_tokenizing.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[sematic_tokenizing.robot].out
index 3dafc108f..a0933c3eb 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[sematic_tokenizing.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[sematic_tokenizing.robot].out
@@ -3,37 +3,37 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 8
- - 24
+ - 23
- 0
- 0
- 12
- 22
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 40
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 17
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -43,12 +43,12 @@ result: !SemanticTokens
- 0
- 1
- 1
- - 35
+ - 34
- 0
- 0
- 5
- 8
- - 38
+ - 36
- 0
- 0
- 8
@@ -58,37 +58,37 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 0
- 17
- 5
- - 38
+ - 36
- 0
- 0
- 5
@@ -98,12 +98,12 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 35
+ - 34
- 0
- 0
- 8
- 16
- - 38
+ - 36
- 0
- 0
- 16
@@ -113,22 +113,22 @@ result: !SemanticTokens
- 0
- 1
- 31
- - 35
+ - 34
- 0
- 1
- 8
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
@@ -138,7 +138,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -148,62 +148,67 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 13
- 36
- 0
- 0
- - 22
+ - 17
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 27
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 13
- - 53
+ - 51
- 0
- 0
- 13
@@ -213,32 +218,32 @@ result: !SemanticTokens
- 0
- 1
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 4
- - 36
+ - 35
- 2048
- 0
- 5
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -248,7 +253,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -258,17 +263,17 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 2
- - 39
+ - 37
- 0
- 3
- 0
- 8
- - 34
+ - 33
- 1
- 1
- 4
@@ -278,7 +283,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -288,21 +293,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 2
- 4
- 2
- - 39
+ - 37
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[setup_teardown.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[setup_teardown.robot].out
index 311584076..75cf1183e 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[setup_teardown.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[setup_teardown.robot].out
@@ -3,92 +3,92 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 11
- - 36
+ - 35
- 2048
- 1
- 0
- 14
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 14
- - 36
+ - 35
- 2048
- 1
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 20
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 10
- - 36
+ - 35
- 2048
- 2
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 20
- 5
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 25
+ - 24
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -98,7 +98,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -108,17 +108,17 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 16
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -128,7 +128,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -138,17 +138,17 @@ result: !SemanticTokens
- 0
- 5
- 13
- - 39
+ - 37
- 0
- 0
- 13
- 19
- - 36
+ - 35
- 2048
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -158,7 +158,7 @@ result: !SemanticTokens
- 0
- 1
- 5
- - 25
+ - 24
- 0
- 0
- 5
@@ -168,12 +168,12 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -183,7 +183,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -198,7 +198,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -208,22 +208,32 @@ result: !SemanticTokens
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 13
- - 34
+ - 33
- 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
+ - 0
+ - 0
+ - 16
+ - 7
+ - 36
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -233,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -243,21 +253,26 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
- 2
- 0
- 5
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[signature_help.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[signature_help.robot].out
index e7478c3f3..44c7241a5 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[signature_help.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[signature_help.robot].out
@@ -3,27 +3,27 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 12
- 10
- - 53
+ - 51
- 0
- 0
- 21
@@ -33,27 +33,27 @@ result: !SemanticTokens
- 3
- 0
- 11
- - 25
+ - 24
- 0
- 0
- 15
- 12
- - 39
+ - 37
- 0
- 4
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 26
- - 39
+ - 37
- 0
- 0
- 73
@@ -63,7 +63,7 @@ result: !SemanticTokens
- 5
- 4
- 12
- - 39
+ - 37
- 0
- 0
- 20
@@ -71,9 +71,19 @@ result: !SemanticTokens
- 17
- 0
- 2
- - 20
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 39
+ - 37
- 0
- 0
- 38
@@ -83,7 +93,7 @@ result: !SemanticTokens
- 5
- 4
- 22
- - 39
+ - 37
- 0
- 0
- 44
@@ -93,12 +103,12 @@ result: !SemanticTokens
- 6
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 26
- - 34
+ - 33
- 1
- 1
- 4
@@ -108,7 +118,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -118,7 +128,7 @@ result: !SemanticTokens
- 0
- 5
- 10
- - 56
+ - 54
- 0
- 0
- 14
@@ -140,10 +150,15 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 0
- 17
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[symbols.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[symbols.robot].out
index f34821543..e13362ffe 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[symbols.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[symbols.robot].out
@@ -3,117 +3,167 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 7
- - 24
+ - 23
- 0
- 0
- 11
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 2
+ - 0
+ - 8
+ - 36
+ - 0
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 2
- - 20
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
- 8
- - 39
+ - 37
- 1024
- 3
- - 37
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
- 8
- - 39
+ - 37
- 1024
- 3
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 5
+ - 12
+ - 36
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 5
+ - 11
+ - 36
+ - 0
+ - 0
+ - 13
- 2
- - 46
+ - 44
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 8
- 4
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 35
+ - 34
- 0
- 0
- 19
- 2
- - 24
+ - 23
+ - 0
+ - 0
+ - 6
+ - 6
+ - 36
- 0
- 2
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 18
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 31
+ - 30
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 2
- 0
- 10
- - 34
+ - 33
- 1
- 2
- 4
@@ -123,7 +173,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -133,86 +183,86 @@ result: !SemanticTokens
- 0
- 5
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 9
- - 56
+ - 54
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 2
- 0
- 15
- - 34
- - 1
- - 2
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 33
- 1
+ - 3
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 3
- 4
- 11
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 4
- 4
- 11
- - 39
+ - 37
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 20
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 5
+ - 9
+ - 36
- 0
- 2
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 5
+ - 10
+ - 36
- 0
- 2
- - 15
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 11
- 8
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[templates.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[templates.robot].out
index 745afa1e7..25cc698d3 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[templates.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[templates.robot].out
@@ -3,37 +3,47 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 20
- 22
- - 39
+ - 37
- 0
- 2
- 0
- 13
- - 54
+ - 52
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 4
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -43,7 +53,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -58,7 +68,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -68,62 +78,92 @@ result: !SemanticTokens
- 0
- 5
- 16
- - 39
+ - 37
- 0
- 1
- 4
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 8
- 36
- 0
- 0
- - 17
+ - 12
- 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 11
- 36
- 0
- - 2
+ - 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- - 23
- - 1
+ - 5
+ - 14
- 36
- 0
+ - 0
+ - 18
- 1
- - 19
+ - 35
+ - 0
- 1
+ - 4
+ - 11
- 36
- 0
+ - 0
+ - 15
+ - 1
+ - 35
+ - 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 8
- 36
- 0
- 0
- - 17
+ - 12
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
+ - 35
+ - 0
+ - 0
+ - 7
+ - 14
- 36
- 0
- 0
- - 25
+ - 18
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
@@ -133,7 +173,7 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
@@ -143,57 +183,57 @@ result: !SemanticTokens
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 36
+ - 35
- 0
- 0
- 7
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
@@ -203,7 +243,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -213,17 +253,17 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 9
- - 33
+ - 32
- 1
- 1
- 4
@@ -233,7 +273,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -243,72 +283,72 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -318,7 +358,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -328,52 +368,62 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
- 0
+ - 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -383,7 +433,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -393,47 +443,57 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 4
+ - 36
+ - 2048
- 0
- - 10
+ - 5
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -443,7 +503,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -453,42 +513,47 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 39
+ - 37
- 0
- 0
- 11
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 2048
- 0
- 2
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 35
- - 33
+ - 32
- 1
- 1
- 4
@@ -498,7 +563,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -508,47 +573,47 @@ result: !SemanticTokens
- 0
- 5
- 41
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 22
- - 34
+ - 33
- 1
- 1
- 4
@@ -558,7 +623,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -568,42 +633,57 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 16
- - 34
+ - 33
- 1
- 1
- 4
@@ -613,7 +693,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -623,47 +703,62 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -673,7 +768,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -683,27 +778,37 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 28
+ - 7
+ - 17
+ - 36
+ - 0
+ - 0
+ - 21
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 2
- 0
- 19
- - 34
+ - 33
- 1
- 1
- 4
@@ -713,7 +818,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -723,52 +828,97 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 35
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 15
- 8
- - 46
+ - 8
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 11
- - 34
+ - 33
- 1
- 0
- - 15
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 4
- 6
- - 34
+ - 33
- 1
- 0
- - 17
+ - 6
+ - 11
+ - 36
+ - 0
+ - 0
+ - 11
- 4
- - 34
+ - 33
- 1
+ - 0
+ - 4
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -778,7 +928,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -788,21 +938,36 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[templates2.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[templates2.robot].out
index decfe09ce..a7484130f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[templates2.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[templates2.robot].out
@@ -3,97 +3,152 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 13
- - 25
+ - 24
- 0
- 0
- 17
- 42
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 13
+ - 36
+ - 0
+ - 1
+ - 0
+ - 17
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 0
- 34
- 8
- - 29
+ - 28
- 0
- 0
- 17
- 8
- - 29
+ - 28
- 0
- 1
- 0
- 17
- - 33
+ - 32
- 1
- 0
- 34
- 7
+ - 35
+ - 0
+ - 0
+ - 17
+ - 17
- 36
- 0
- 1
- 0
- 16
- - 33
+ - 32
- 1
- 0
- - 51
- - 7
+ - 34
+ - 13
- 36
- 0
+ - 0
+ - 17
+ - 7
+ - 35
+ - 0
- 1
- 0
- 30
- - 33
+ - 32
- 1
- 0
- 34
- 7
- - 36
+ - 35
- 0
- 0
- 17
- 7
- - 36
+ - 35
- 0
- 1
- 0
- 15
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 8
+ - 36
+ - 0
+ - 0
+ - 17
+ - 17
+ - 36
+ - 0
- 1
- 0
- 14
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 1
- 0
- 28
- - 33
+ - 32
- 1
+ - 0
+ - 34
+ - 8
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 22
- - 33
+ - 32
- 1
- 1
- 4
@@ -103,7 +158,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -113,52 +168,77 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- - 19
+ - 8
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 19
+ - 7
- 8
- - 46
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 44
- 0
- 1
- 8
- 7
+ - 35
+ - 0
+ - 0
+ - 11
+ - 8
- 36
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 24
- - 33
+ - 32
- 1
- 1
- 4
@@ -168,7 +248,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -178,52 +258,77 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- 8
- 2
- - 35
+ - 34
+ - 0
+ - 0
+ - 4
+ - 7
+ - 36
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 32
- - 33
+ - 32
- 1
- 1
- 4
@@ -233,7 +338,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -243,67 +348,97 @@ result: !SemanticTokens
- 0
- 5
- 15
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 18
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
- 2
- - 46
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
- 0
- 1
- 8
- 2
- - 35
+ - 34
- 0
- - 1
- - 23
+ - 0
+ - 4
- 7
- 36
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
- 0
- 11
+ - 7
+ - 35
+ - 0
- 1
+ - 12
+ - 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
+ - 0
+ - 11
+ - 1
+ - 35
+ - 0
- 1
- 8
- 4
- - 35
+ - 34
- 0
- 1
- - 23
+ - 12
- 7
- 36
- 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
- 1
- 8
- 3
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 42
- - 34
+ - 33
- 1
- 1
- 4
@@ -313,7 +448,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -323,22 +458,32 @@ result: !SemanticTokens
- 0
- 5
- 11
- - 56
+ - 54
- 0
- 0
- 15
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 15
+ - 11
+ - 36
+ - 0
- 2
- 0
- 15
- - 34
+ - 33
- 1
- 1
- 4
@@ -348,7 +493,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -358,16 +503,26 @@ result: !SemanticTokens
- 0
- 5
- 4
- - 56
+ - 54
- 0
- 0
- 8
- 4
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[variables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[variables.robot].out
index 04efdca20..d5e87872d 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[variables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[variables.robot].out
@@ -3,237 +3,462 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 14
- - 25
+ - 24
- 0
- 0
- 20
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 26
+ - 7
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
- 0
- - 39
+ - 7
+ - 16
+ - 36
+ - 0
+ - 0
+ - 17
+ - 12
+ - 36
+ - 0
+ - 0
+ - 15
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 13
- - 40
+ - 38
- 1024
- 1
- 0
- 10
- - 25
+ - 24
- 0
- 0
- 14
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 14
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 12
- - 53
+ - 51
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 17
- - 28
+ - 27
+ - 0
+ - 1
+ - 0
+ - 16
+ - 36
+ - 0
+ - 0
+ - 20
+ - 17
+ - 36
+ - 0
+ - 0
+ - 18
+ - 19
+ - 36
+ - 0
+ - 1
+ - 0
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
+ - 12
+ - 36
+ - 0
+ - 0
+ - 13
+ - 14
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
+ - 3
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
- 0
- 9
+ - 3
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
+ - 7
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 7
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 20
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 22
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 2
- 4
- 12
- - 39
+ - 37
- 0
- 2
- 4
@@ -243,7 +468,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -253,367 +478,527 @@ result: !SemanticTokens
- 0
- 5
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
+ - 0
+ - 15
+ - 15
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 11
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 2
- - 46
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 19
- - 39
+ - 37
- 0
- 3
- 0
- 5
- - 33
+ - 32
+ - 1
- 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 24
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
- 1
- 4
- - 3
- - 39
- - 1024
- - 1
- - 14
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
- 12
- - 39
+ - 37
- 1024
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 24
+ - 36
+ - 0
- 1
- - 23
+ - 4
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- - 35
+ - 7
+ - 24
+ - 36
+ - 0
+ - 0
+ - 28
- 20
- 17
- 0
- 2
- - 17
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
- 12
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 6
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 12
- - 12
- - 39
+ - 37
- 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
- 8
- - 39
+ - 8
+ - 37
- 1024
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 35
+ - 34
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 5
- - 35
+ - 34
- 0
- 1
- 8
- 5
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 2
- - 35
+ - 34
- 0
- 0
- 16
- 3
- - 39
+ - 37
- 1024
- 2
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 1
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 2
- - 12
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
- 8
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 1
- 4
- 7
- - 39
+ - 37
- 1024
- 1
- 4
- 20
- - 39
+ - 37
- 1024
- 1
- 4
- 16
- - 39
+ - 37
- 1024
- 1
- 4
- 22
- - 39
+ - 37
- 1024
- 1
- 4
- 25
- - 39
+ - 37
- 1024
- 0
- 36
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 17
- - 39
+ - 37
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 27
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 18
- - 39
+ - 37
- 1024
- 0
- 29
- 3
- - 40
+ - 38
- 1024
- 1
- 4
- 14
- - 39
+ - 37
- 1024
- 0
- 27
- 8
- - 40
+ - 38
- 1024
- 2
- 0
- 7
- - 33
- - 1
- - 1
- - 4
- - 1
- - 21
- - 256
- - 0
- - 1
- - 13
- - 25
- - 256
- - 0
- - 13
- - 1
- - 21
- - 256
+ - 32
- 1
+ - 2
- 4
- 3
- - 43
+ - 41
- 0
- 1
- 4
- 3
- - 43
+ - 41
- 0
- 2
- 4
- 9
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 28
+ - 27
- 0
- - 4
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 13
+ - 36
+ - 0
+ - 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 2
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
- 2
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
- 2
- 0
- 9
- - 33
+ - 32
- 1
- 1
- 4
@@ -623,7 +1008,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -633,42 +1018,42 @@ result: !SemanticTokens
- 0
- 3
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
@@ -678,7 +1063,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -688,52 +1073,67 @@ result: !SemanticTokens
- 0
- 3
- 11
- - 39
+ - 37
- 0
- 0
- - 16
+ - 11
+ - 4
+ - 36
+ - 2048
+ - 0
- 5
- - 39
+ - 5
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
+ - 0
- 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 23
- - 33
+ - 32
- 1
- 1
- 4
@@ -743,7 +1143,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -753,62 +1153,82 @@ result: !SemanticTokens
- 0
- 3
- 11
- - 39
+ - 37
- 0
- 0
- - 16
+ - 11
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 5
- - 39
+ - 37
- 0
- 0
- - 10
+ - 5
+ - 4
+ - 36
+ - 2048
+ - 0
+ - 5
- 3
- - 39
+ - 37
- 0
+ - 0
+ - 3
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- - 14
- - 1
+ - 4
+ - 8
- 36
- 0
- 0
+ - 10
+ - 1
+ - 35
+ - 0
+ - 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 3
- - 36
+ - 35
- 0
- 0
- 5
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 35
- - 33
+ - 32
- 1
- 1
- 4
@@ -818,7 +1238,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -828,67 +1248,77 @@ result: !SemanticTokens
- 0
- 3
- 41
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 1
- 4
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 0
- 3
- 1
- - 36
+ - 35
- 0
- 2
- 0
- 15
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 0
- - 62
+ - 5
+ - 23
+ - 36
+ - 0
+ - 0
+ - 30
+ - 25
+ - 36
+ - 0
+ - 0
+ - 27
- 6
- 17
- 0
- 2
- 0
- 15
- - 33
+ - 32
- 1
- 1
- 4
- 19
- - 39
+ - 37
- 0
- 0
- 23
- 3
- - 56
+ - 54
- 0
- 0
- 3
@@ -898,17 +1328,17 @@ result: !SemanticTokens
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
- 1
- 4
@@ -918,7 +1348,7 @@ result: !SemanticTokens
- 0
- 1
- 8
- - 25
+ - 24
- 0
- 0
- 8
@@ -928,27 +1358,37 @@ result: !SemanticTokens
- 0
- 5
- 12
- - 39
+ - 37
- 1024
- 0
- 16
- 3
- - 40
+ - 38
- 1024
- 0
- - 28
+ - 7
+ - 17
+ - 36
+ - 0
+ - 0
+ - 21
- 3
- - 35
+ - 34
- 0
- 0
- 7
- 3
- - 40
+ - 38
- 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
- 2
- 0
- 19
- - 34
+ - 33
- 1
- 1
- 4
@@ -958,7 +1398,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -968,52 +1408,97 @@ result: !SemanticTokens
- 0
- 5
- 6
- - 56
+ - 54
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
- 0
- - 11
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
- 8
- - 46
+ - 44
- 0
- 1
- 8
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 6
+ - 36
+ - 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 0
- 11
- - 34
+ - 33
- 1
- 0
- - 24
+ - 11
+ - 13
+ - 36
+ - 0
+ - 0
+ - 13
- 6
- - 34
+ - 33
- 1
- 0
- - 10
+ - 6
- 4
- - 34
+ - 36
+ - 0
+ - 0
+ - 4
+ - 4
+ - 33
- 1
+ - 0
+ - 4
+ - 11
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 1
- 4
@@ -1023,7 +1508,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1033,27 +1518,42 @@ result: !SemanticTokens
- 0
- 3
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 4
- - 56
+ - 54
- 0
- 0
- 6
- 11
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
- 2
- 0
- 31
- - 34
+ - 33
- 1
- 1
- 4
@@ -1063,7 +1563,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -1073,12 +1573,12 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 0
- 11
- 3
- - 56
+ - 54
- 0
- 0
- 7
@@ -1093,12 +1593,12 @@ result: !SemanticTokens
- 0
- 14
- 8
- - 56
+ - 54
- 0
- 0
- 12
- 11
- - 56
+ - 54
- 0
- 0
- 15
@@ -1113,22 +1613,22 @@ result: !SemanticTokens
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 5
- - 34
+ - 33
- 1
- 1
- 4
- 31
- - 39
+ - 37
- 0
- 0
- 37
- 5
- - 56
+ - 54
- 0
- 0
- 5
@@ -1138,7 +1638,7 @@ result: !SemanticTokens
- 0
- 4
- 8
- - 56
+ - 54
- 0
- 0
- 8
@@ -1148,6 +1648,6 @@ result: !SemanticTokens
- 2
- 0
- 18
- - 29
+ - 28
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-__init__.robot].out
index df8fc7278..e0e9f51af 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-__init__.robot].out
@@ -3,6 +3,6 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
index 8461ce14c..fb00afb00 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
@@ -3,92 +3,122 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 6
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 9
- - 36
+ - 35
- 2048
- 0
- 10
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 1
- 4
- 3
- - 39
+ - 37
- 0
- 0
- 3
- 9
- - 36
+ - 35
- 2048
- 0
- 10
- 5
- - 39
+ - 37
- 0
- 0
- 5
- 5
- - 36
+ - 35
- 2048
- 0
- 6
- 13
- - 39
+ - 37
- 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 3
- - 34
+ - 33
- 1
- 0
- - 15
+ - 3
+ - 12
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 34
+ - 33
- 1
+ - 0
+ - 6
+ - 8
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
+ - 0
+ - 18
+ - 8
+ - 36
+ - 0
- 2
- 0
- 3
- - 34
+ - 33
- 1
- 0
- - 15
+ - 3
+ - 12
+ - 36
+ - 0
+ - 0
+ - 12
- 6
- - 34
+ - 33
- 1
- 0
+ - 6
+ - 8
+ - 36
+ - 0
+ - 0
+ - 8
- 14
- - 14
- - 34
+ - 33
- 1
- 1
- 4
@@ -98,7 +128,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -108,11 +138,26 @@ result: !SemanticTokens
- 0
- 5
- 7
- - 56
+ - 54
- 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
+ - 0
+ - 18
+ - 8
+ - 36
+ - 0
+ - 0
+ - 23
+ - 7
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
index 3b0d75a71..eaf8038f2 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
@@ -3,31 +3,56 @@ result: !SemanticTokens
- 0
- 0
- 17
- - 28
+ - 27
- 0
- - 5
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
- 0
- 18
- - 29
+ - 36
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- - 20
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
- 8
- - 39
+ - 37
- 1024
- 1
- - 27
+ - 4
+ - 19
+ - 36
+ - 0
+ - 0
+ - 23
- 8
- - 39
+ - 37
- 1024
- 1
- 4
- 6
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
index 827c4b670..9bc959b6c 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
@@ -3,36 +3,46 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 9
- - 24
+ - 23
- 0
- 0
- 13
- 11
- - 53
+ - 51
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 16
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 16
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-sometasks.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
index 26fe2075d..3bcc51825 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 13
- - 30
+ - 29
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
index b41aa9750..6fa23318f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
@@ -3,11 +3,11 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 4
- - 25
+ - 24
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
index 8ef46bca6..6d97c1255 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
@@ -3,21 +3,21 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
index 89c5d5f77..00fda5828 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
@@ -3,26 +3,26 @@ result: !SemanticTokens
- 0
- 0
- 16
- - 27
+ - 26
- 0
- 1
- 0
- 4
- - 25
+ - 24
- 0
- 2
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 12
- - 39
+ - 37
- 1024
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf70-vartest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf70-vartest.robot].out
index e55ae5ef2..851e64d25 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf70-vartest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf70-vartest.robot].out
@@ -3,169 +3,254 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 2
- 0
- 14
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 20
+ - 13
- 12
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 0
- - 20
+ - 13
- 11
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 3
- 0
- 22
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
- 0
- 0
- - 20
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 13
- 6
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 57
+ - 55
- 0
- 0
- - 20
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 13
- 13
- - 35
+ - 34
- 0
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
- 15
- - 39
+ - 37
- 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
- 2
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 4
+ - 36
+ - 0
- 2
- 0
- 8
- - 33
+ - 32
- 1
- 1
- 4
- 3
- - 57
+ - 55
- 0
- 0
- - 30
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 23
- 11
- - 35
+ - 34
- 0
- 1
- 4
- 8
- - 39
+ - 37
- 1024
+ - 0
+ - 12
+ - 4
+ - 36
+ - 0
- 2
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 49
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 57
+ - 55
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- - 1
- - 13
- - 25
- - 256
+ - 7
+ - 9
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -173,13 +258,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -188,13 +278,23 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 1
@@ -203,7 +303,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -213,7 +313,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -225,25 +325,45 @@ result: !SemanticTokens
- 1
- 21
- 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
- 2
- 0
- 65
- - 34
+ - 33
- 1
- 1
- 4
- 3
- - 57
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
- 0
- 1
- 4
@@ -253,7 +373,7 @@ result: !SemanticTokens
- 0
- 1
- 9
- - 25
+ - 24
- 0
- 0
- 9
@@ -263,7 +383,7 @@ result: !SemanticTokens
- 0
- 5
- 9
- - 56
+ - 54
- 0
- 0
- 13
@@ -275,22 +395,12 @@ result: !SemanticTokens
- 1
- 21
- 0
- - 1
- - 4
- - 1
- - 21
- - 256
- 0
- 1
- - 13
- - 25
- - 256
+ - 4
+ - 36
- 0
- - 13
- - 1
- - 21
- - 256
- - 3
+ - 4
- 4
- 1
- 21
@@ -298,13 +408,18 @@ result: !SemanticTokens
- 0
- 1
- 7
- - 25
+ - 24
- 0
- 0
- 7
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
- 2
- 4
- 1
@@ -313,21 +428,41 @@ result: !SemanticTokens
- 0
- 1
- 4
- - 25
+ - 24
- 0
- 0
- 4
- 1
- 21
- 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
- 3
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
- 1
- 4
- 3
- - 39
+ - 37
- 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf72-grouptest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
index 245529ee7..6f3ca2b33 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
@@ -3,56 +3,56 @@ result: !SemanticTokens
- 0
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 5
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 35
+ - 34
- 0
- 1
- 8
- 5
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 5
- - 35
+ - 34
- 0
- 1
- 8
- 6
- - 39
+ - 37
- 0
- 1
- 8
- 5
- - 35
+ - 34
- 0
- 1
- 12
- 6
- - 39
+ - 37
- 0
- 2
- 8
- 3
- - 35
+ - 34
- 0
- 2
- 4
- 3
- - 35
+ - 34
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out
new file mode 100644
index 000000000..a6ca89433
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out
@@ -0,0 +1,588 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 26
+ - 36
+ - 0
+ - 1
+ - 0
+ - 15
+ - 36
+ - 0
+ - 1
+ - 0
+ - 21
+ - 36
+ - 0
+ - 1
+ - 0
+ - 17
+ - 36
+ - 0
+ - 1
+ - 0
+ - 20
+ - 36
+ - 0
+ - 1
+ - 0
+ - 29
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 15
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 13
+ - 20
+ - 36
+ - 0
+ - 1
+ - 4
+ - 26
+ - 37
+ - 0
+ - 1
+ - 4
+ - 39
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 0
+ - 40
+ - 7
+ - 36
+ - 0
+ - 2
+ - 0
+ - 15
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 19
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 9
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 8
+ - 44
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 12
+ - 44
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 0
+ - 13
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 2
+ - 34
+ - 0
+ - 0
+ - 12
+ - 8
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 4
+ - 34
+ - 0
+ - 0
+ - 8
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 30
+ - 32
+ - 1
+ - 1
+ - 4
+ - 28
+ - 37
+ - 0
+ - 1
+ - 4
+ - 2
+ - 37
+ - 0
+ - 0
+ - 2
+ - 8
+ - 35
+ - 2048
+ - 0
+ - 9
+ - 18
+ - 37
+ - 0
+ - 3
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 26
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 15
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 13
+ - 10
+ - 34
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 3
+ - 36
+ - 0
+ - 2
+ - 0
+ - 39
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 7
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 6
+ - 9
+ - 7
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 36
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 22
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 12
+ - 0
+ - 2
+ - 33
+ - 1
+ - 0
+ - 2
+ - 32
+ - 36
+ - 0
+ - 0
+ - 32
+ - 19
+ - 33
+ - 1
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[very_big_file.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[very_big_file.robot].out
index d4bc0b145..15e147ff0 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[very_big_file.robot].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_semantic_tokens.test[very_big_file.robot].out
@@ -3,92346 +3,100801 @@ result: !SemanticTokens
- 0
- 0
- 16
+ - 26
+ - 0
+ - 4
+ - 0
+ - 17
- 27
- 0
- 1
- 0
- - 13
- - 25
- - 256
- - 3
+ - 12
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 1
- 0
- 17
- - 28
+ - 36
- 0
- - 7
+ - 3
- 0
- 18
- - 29
+ - 28
- 0
- 1
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 11
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
- - 1
- - 4
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
+ - 0
- 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
- 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
+ - 0
- 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
+ - 0
- 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 2
- 0
- 10
- - 33
+ - 32
- 1
- 1
- 4
- 5
- - 41
+ - 39
- 0
- 0
- 5
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 31
- - 39
+ - 37
- 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 40
- - 39
+ - 37
- 0
- 0
- 40
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 5
- - 39
+ - 37
+ - 0
- 0
+ - 5
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 62
- - 39
+ - 37
- 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 12
- - 39
+ - 37
- 0
- 0
- 12
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 32
- - 39
+ - 37
- 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 50
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 28
- - 39
+ - 37
- 0
- 0
- 28
- 13
- - 36
+ - 35
- 2048
- 0
- 14
- 19
- - 39
+ - 37
- 0
- 1
- 4
- 4
- - 41
+ - 39
- 0
- 0
- 4
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 30
- - 39
+ - 37
- 0
- 0
- 30
- 10
- - 36
+ - 35
- 2048
- 0
- 11
- 12
- - 39
+ - 37
- 0
- 1
- 4
- 3
- - 41
+ - 39
- 0
- 0
- 3
- 1
- - 39
+ - 37
- 0
- 0
- 1
- 17
- - 39
+ - 37
- 0
- 0
- 17
- 12
- - 36
+ - 35
- 2048
- 0
- 13
- 20
- - 39
+ - 37
- 0
- 0
- 20
- 6
- - 36
+ - 35
- 2048
- 0
- 7
- 12
- - 39
+ - 37
- 0
- 3
- 0
- 16
- - 32
+ - 31
- 0
- 1
- 0
- 17
- - 34
+ - 33
- 1
- 0
- - 24
+ - 17
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 51
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 0
- - 19
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 32
- - 34
+ - 33
- 1
+ - 0
+ - 32
+ - 12
+ - 36
+ - 0
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 40
- - 34
+ - 33
- 1
- 0
- - 47
+ - 40
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 6
- - 34
+ - 33
- 1
+ - 0
+ - 6
+ - 11
+ - 36
+ - 0
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 62
- - 34
+ - 33
- 1
- 0
- - 73
+ - 62
+ - 11
+ - 36
+ - 0
+ - 0
+ - 11
- 1
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 12
- - 34
+ - 33
- 1
- 0
- - 19
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
+ - 33
- 33
- - 34
- 1
- 0
- - 50
+ - 33
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
- 1
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 50
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 28
- - 34
+ - 33
- 1
- 0
- - 35
+ - 28
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 20
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 17
- - 34
+ - 33
- 1
- 0
- - 24
+ - 17
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 21
- - 34
+ - 33
- 1
- 0
- - 30
+ - 21
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
- 13
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
- 2
- 0
- 30
- - 34
+ - 33
- 1
- 0
- - 37
+ - 30
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
- 13
- - 34
+ - 33
- 1
- 2
- 4
- 2
- - 39
+ - 37
- 0
result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_workspace_symbols.test[].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_workspace_symbols.test[].out
index c43b56db4..9c15a4617 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_workspace_symbols.test[].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_workspace_symbols.test[].out
@@ -81,10 +81,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 9
start:
- character: 21
+ character: 23
line: 9
uri: bddstyle.robot
name: ${input}
@@ -111,10 +111,10 @@ result:
location:
range:
end:
- character: 46
+ character: 45
line: 9
start:
- character: 33
+ character: 35
line: 9
uri: bddstyle.robot
name: ${multiplier}
@@ -141,10 +141,10 @@ result:
location:
range:
end:
- character: 59
+ character: 58
line: 9
start:
- character: 50
+ character: 52
line: 9
uri: bddstyle.robot
name: ${result}
@@ -276,10 +276,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 119
start:
- character: 19
+ character: 21
line: 119
uri: code_action_show_documentation.robot
name: ${A VAR}
@@ -291,10 +291,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 124
start:
- character: 28
+ character: 30
line: 124
uri: code_action_show_documentation.robot
name: ${A VAR}
@@ -306,10 +306,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
uri: code_action_show_documentation.robot
name: ${LIB_ARG}
@@ -321,10 +321,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: code_action_show_documentation.robot
name: ${a var}
@@ -336,10 +336,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 129
start:
- character: 19
+ character: 21
line: 129
uri: code_action_show_documentation.robot
name: ${a}
@@ -351,10 +351,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: code_action_show_documentation.robot
name: ${bananas}
@@ -381,10 +381,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 129
start:
- character: 27
+ character: 29
line: 129
uri: code_action_show_documentation.robot
name: ${b}
@@ -411,10 +411,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 52
start:
- character: 4
+ character: 6
line: 52
uri: code_action_show_documentation.robot
name: ${result}
@@ -486,10 +486,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 124
start:
- character: 19
+ character: 21
line: 124
uri: code_action_show_documentation.robot
name: ${tt}
@@ -516,10 +516,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 97
start:
- character: 19
+ character: 21
line: 97
uri: code_action_show_documentation.robot
name: ${type}
@@ -846,10 +846,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 113
start:
- character: 19
+ character: 21
line: 113
uri: document_highlight.robot
name: ${A VAR}
@@ -861,10 +861,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 122
start:
- character: 28
+ character: 30
line: 122
uri: document_highlight.robot
name: ${A VAR}
@@ -876,10 +876,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: document_highlight.robot
name: ${A}
@@ -891,10 +891,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 25
start:
- character: 0
+ character: 2
line: 25
uri: document_highlight.robot
name: ${B}
@@ -906,10 +906,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: document_highlight.robot
name: ${LIB_ARG}
@@ -921,10 +921,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 20
start:
- character: 0
+ character: 2
line: 20
uri: document_highlight.robot
name: ${a var}
@@ -936,10 +936,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 164
start:
- character: 32
+ character: 34
line: 164
uri: document_highlight.robot
name: ${a_second_arg}
@@ -951,10 +951,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 169
start:
- character: 32
+ character: 34
line: 169
uri: document_highlight.robot
name: ${a_second_arg}
@@ -966,10 +966,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 164
start:
- character: 19
+ character: 21
line: 164
uri: document_highlight.robot
name: ${an_arg}
@@ -981,10 +981,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 169
start:
- character: 19
+ character: 21
line: 169
uri: document_highlight.robot
name: ${an_arg}
@@ -996,10 +996,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 132
start:
- character: 19
+ character: 21
line: 132
uri: document_highlight.robot
name: ${a}
@@ -1011,10 +1011,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 132
start:
- character: 27
+ character: 29
line: 132
uri: document_highlight.robot
name: ${b}
@@ -1026,10 +1026,10 @@ result:
location:
range:
end:
- character: 44
+ character: 43
line: 132
start:
- character: 40
+ character: 42
line: 132
uri: document_highlight.robot
name: ${c}
@@ -1056,10 +1056,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 57
start:
- character: 4
+ character: 6
line: 57
uri: document_highlight.robot
name: ${result}
@@ -1086,10 +1086,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 122
start:
- character: 19
+ character: 21
line: 122
uri: document_highlight.robot
name: ${tt}
@@ -1431,10 +1431,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 10
start:
- character: 19
+ character: 21
line: 10
uri: embedded_keywords.robot
name: ${data}
@@ -1566,10 +1566,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 2
start:
- character: 4
+ character: 6
line: 2
uri: fibonaci.robot
name: ${a}
@@ -1581,10 +1581,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 36
start:
- character: 4
+ character: 6
line: 36
uri: fibonaci.robot
name: ${a}
@@ -1596,10 +1596,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 27
start:
- character: 8
+ character: 10
line: 27
uri: fibonaci.robot
name: ${n1}
@@ -1611,10 +1611,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 28
start:
- character: 8
+ character: 10
line: 28
uri: fibonaci.robot
name: ${n2}
@@ -1626,10 +1626,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 22
start:
- character: 19
+ character: 21
line: 22
uri: fibonaci.robot
name: ${n}
@@ -1641,10 +1641,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 35
start:
- character: 19
+ character: 21
line: 35
uri: fibonaci.robot
name: ${n}
@@ -1656,10 +1656,10 @@ result:
location:
range:
end:
- character: 12
+ character: 11
line: 25
start:
- character: 8
+ character: 10
line: 25
uri: fibonaci.robot
name: ${r}
@@ -1821,10 +1821,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 32
start:
- character: 19
+ character: 21
line: 32
uri: first.robot
name: ${b}
@@ -1956,10 +1956,10 @@ result:
location:
range:
end:
- character: 47
+ character: 20
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: firstresource.resource
name: ${A_VAR_FROM_RESOURE}
@@ -1971,10 +1971,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 23
start:
- character: 27
+ character: 29
line: 23
uri: firstresource.resource
name: ${a long name}
@@ -1986,10 +1986,10 @@ result:
location:
range:
end:
- character: 61
+ character: 60
line: 23
start:
- character: 46
+ character: 48
line: 23
uri: firstresource.resource
name: ${a_short_name}
@@ -2001,10 +2001,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 23
start:
- character: 19
+ character: 21
line: 23
uri: firstresource.resource
name: ${a}
@@ -2016,10 +2016,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 30
start:
- character: 19
+ character: 21
line: 30
uri: firstresource.resource
name: "${\U0001F413}"
@@ -2031,10 +2031,10 @@ result:
location:
range:
end:
- character: 34
+ character: 33
line: 30
start:
- character: 27
+ character: 29
line: 30
uri: firstresource.resource
name: "${\U0001F60E\U0001F60B\U0001F619\U0001F619}"
@@ -2046,10 +2046,10 @@ result:
location:
range:
end:
- character: 51
+ character: 50
line: 30
start:
- character: 39
+ character: 41
line: 30
uri: firstresource.resource
name: "${\U0001F9DF\u200D\u2642\uFE0F\U0001F6C3\U0001FAC5\U0001F3FF\U0001F478\U0001F3FF\
@@ -2137,10 +2137,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 53
start:
- character: 4
+ character: 6
line: 53
uri: foldingrange.robot
name: ${a}
@@ -2152,10 +2152,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 81
start:
- character: 4
+ character: 6
line: 81
uri: foldingrange.robot
name: ${a}
@@ -2167,10 +2167,10 @@ result:
location:
range:
end:
- character: 15
+ character: 14
line: 12
start:
- character: 11
+ character: 13
line: 12
uri: foldingrange.robot
name: ${i}
@@ -2272,10 +2272,10 @@ result:
location:
range:
end:
- character: 37
+ character: 36
line: 174
start:
- character: 28
+ character: 30
line: 174
uri: goto.robot
name: ${A VAR1}
@@ -2287,10 +2287,10 @@ result:
location:
range:
end:
- character: 27
+ character: 7
line: 21
start:
- character: 0
+ character: 2
line: 21
uri: goto.robot
name: ${A VAR}
@@ -2302,10 +2302,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 155
start:
- character: 19
+ character: 21
line: 155
uri: goto.robot
name: ${A VAR}
@@ -2317,10 +2317,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 164
start:
- character: 28
+ character: 30
line: 164
uri: goto.robot
name: ${A VAR}
@@ -2332,10 +2332,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 36
start:
- character: 0
+ character: 2
line: 36
uri: goto.robot
name: ${A}
@@ -2347,10 +2347,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 37
start:
- character: 0
+ character: 2
line: 37
uri: goto.robot
name: ${B}
@@ -2362,10 +2362,10 @@ result:
location:
range:
end:
- character: 11
+ character: 5
line: 25
start:
- character: 0
+ character: 2
line: 25
uri: goto.robot
name: ${DOT}
@@ -2377,10 +2377,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 23
start:
- character: 0
+ character: 2
line: 23
uri: goto.robot
name: ${LIB_ARG}
@@ -2392,10 +2392,10 @@ result:
location:
range:
end:
- character: 22
+ character: 8
line: 20
start:
- character: 0
+ character: 2
line: 20
uri: goto.robot
name: ${MY_DIR}
@@ -2407,10 +2407,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 213
start:
- character: 32
+ character: 34
line: 213
uri: goto.robot
name: ${a_second_arg}
@@ -2422,10 +2422,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 218
start:
- character: 32
+ character: 34
line: 218
uri: goto.robot
name: ${a_second_arg}
@@ -2437,10 +2437,10 @@ result:
location:
range:
end:
- character: 50
+ character: 14
line: 32
start:
- character: 0
+ character: 2
line: 32
uri: goto.robot
name: ${all together}
@@ -2452,10 +2452,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 213
start:
- character: 19
+ character: 21
line: 213
uri: goto.robot
name: ${an_arg}
@@ -2467,10 +2467,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 218
start:
- character: 19
+ character: 21
line: 218
uri: goto.robot
name: ${an_arg}
@@ -2482,10 +2482,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 136
start:
- character: 4
+ character: 6
line: 136
uri: goto.robot
name: ${a}
@@ -2497,10 +2497,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
uri: goto.robot
name: ${a}
@@ -2512,10 +2512,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
uri: goto.robot
name: ${b}
@@ -2527,10 +2527,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 68
start:
- character: 11
+ character: 13
line: 68
uri: goto.robot
name: ${key}
@@ -2542,10 +2542,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 164
start:
- character: 19
+ character: 21
line: 164
uri: goto.robot
name: ${tt}
@@ -2557,10 +2557,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 174
start:
- character: 19
+ character: 21
line: 174
uri: goto.robot
name: ${tt}
@@ -2572,10 +2572,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 68
start:
- character: 21
+ character: 23
line: 68
uri: goto.robot
name: ${value}
@@ -2587,10 +2587,10 @@ result:
location:
range:
end:
- character: 35
+ character: 8
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: goto.robot
name: '&{A DICT}'
@@ -2602,10 +2602,10 @@ result:
location:
range:
end:
- character: 34
+ character: 10
line: 29
start:
- character: 0
+ character: 2
line: 29
uri: goto.robot
name: '&{dict_var}'
@@ -2617,10 +2617,10 @@ result:
location:
range:
end:
- character: 26
+ character: 10
line: 27
start:
- character: 0
+ character: 2
line: 27
uri: goto.robot
name: '@{list_var}'
@@ -2887,10 +2887,10 @@ result:
location:
range:
end:
- character: 28
+ character: 7
line: 30
start:
- character: 0
+ character: 2
line: 30
uri: hover.robot
name: ${A VAR}
@@ -2902,10 +2902,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 267
start:
- character: 19
+ character: 21
line: 267
uri: hover.robot
name: ${A VAR}
@@ -2917,10 +2917,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 276
start:
- character: 28
+ character: 30
line: 276
uri: hover.robot
name: ${A VAR}
@@ -2932,10 +2932,10 @@ result:
location:
range:
end:
- character: 10
+ character: 3
line: 41
start:
- character: 0
+ character: 2
line: 41
uri: hover.robot
name: ${A}
@@ -2947,10 +2947,10 @@ result:
location:
range:
end:
- character: 9
+ character: 3
line: 42
start:
- character: 0
+ character: 2
line: 42
uri: hover.robot
name: ${B}
@@ -2962,10 +2962,10 @@ result:
location:
range:
end:
- character: 28
+ character: 3
line: 43
start:
- character: 0
+ character: 2
line: 43
uri: hover.robot
name: ${C}
@@ -2977,10 +2977,10 @@ result:
location:
range:
end:
- character: 9
+ character: 3
line: 56
start:
- character: 0
+ character: 2
line: 56
uri: hover.robot
name: ${D}
@@ -2992,10 +2992,10 @@ result:
location:
range:
end:
- character: 41
+ character: 3
line: 57
start:
- character: 0
+ character: 2
line: 57
uri: hover.robot
name: ${E}
@@ -3007,10 +3007,10 @@ result:
location:
range:
end:
- character: 14
+ character: 3
line: 58
start:
- character: 0
+ character: 2
line: 58
uri: hover.robot
name: ${F}
@@ -3022,10 +3022,25 @@ result:
location:
range:
end:
- character: 38
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
+ uri: hover.robot
+ name: ${INVALID VAR ${}}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
line: 48
start:
- character: 0
+ character: 2
line: 48
uri: hover.robot
name: ${K}
@@ -3037,10 +3052,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 36
start:
- character: 0
+ character: 2
line: 36
uri: hover.robot
name: ${LIB_ARG}
@@ -3052,10 +3067,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 286
start:
- character: 19
+ character: 21
line: 286
uri: hover.robot
name: ${a}
@@ -3067,10 +3082,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 286
start:
- character: 27
+ character: 29
line: 286
uri: hover.robot
name: ${b}
@@ -3097,10 +3112,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 81
start:
- character: 11
+ character: 13
line: 81
uri: hover.robot
name: ${key}
@@ -3112,10 +3127,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 111
start:
- character: 4
+ character: 6
line: 111
uri: hover.robot
name: ${result}
@@ -3127,10 +3142,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 276
start:
- character: 19
+ character: 21
line: 276
uri: hover.robot
name: ${tt}
@@ -3142,10 +3157,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 81
start:
- character: 21
+ character: 23
line: 81
uri: hover.robot
name: ${value}
@@ -3157,10 +3172,10 @@ result:
location:
range:
end:
- character: 35
+ character: 8
line: 33
start:
- character: 0
+ character: 2
line: 33
uri: hover.robot
name: '&{A DICT}'
@@ -3457,10 +3472,25 @@ result:
location:
range:
end:
- character: 13
+ character: 17
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: indexed_variables.robot
+ name: ${A_LIST ${index}}
+ tags: null
+- !WorkspaceSymbol
+ container_name: indexed_variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
line: 2
start:
- character: 0
+ character: 2
line: 2
uri: indexed_variables.robot
name: ${index}
@@ -3472,10 +3502,10 @@ result:
location:
range:
end:
- character: 24
+ character: 8
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: indexed_variables.robot
name: '@{A_LIST}'
@@ -3510,6 +3540,66 @@ result:
uri: jsonvariables.robot
name: first
tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 10
+ start:
+ character: 13
+ line: 10
+ uri: old_for.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: old_for.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 6
+ start:
+ character: 0
+ line: 6
+ uri: old_for.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: old_for.robot
+ name: third
+ tags: null
- !WorkspaceSymbol
container_name: part1__suite
data: null
@@ -3562,10 +3652,10 @@ result:
location:
range:
end:
- character: 21
+ character: 3
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: playground.robot
name: ${2}
@@ -3577,10 +3667,10 @@ result:
location:
range:
end:
- character: 12
+ character: 3
line: 2
start:
- character: 0
+ character: 2
line: 2
uri: playground.robot
name: ${a}
@@ -3592,10 +3682,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 22
start:
- character: 19
+ character: 21
line: 22
uri: playground.robot
name: ${a}
@@ -3607,10 +3697,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 22
start:
- character: 27
+ character: 29
line: 22
uri: playground.robot
name: ${b}
@@ -3622,10 +3712,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 15
start:
- character: 4
+ character: 6
line: 15
uri: playground.robot
name: ${v}
@@ -3667,10 +3757,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 150
start:
- character: 19
+ character: 21
line: 150
uri: references.robot
name: ${A VAR}
@@ -3682,10 +3772,10 @@ result:
location:
range:
end:
- character: 36
+ character: 35
line: 159
start:
- character: 28
+ character: 30
line: 159
uri: references.robot
name: ${A VAR}
@@ -3697,10 +3787,10 @@ result:
location:
range:
end:
- character: 22
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: references.robot
name: ${LIB_ARG}
@@ -3712,10 +3802,10 @@ result:
location:
range:
end:
- character: 17
+ character: 16
line: 270
start:
- character: 4
+ character: 6
line: 270
uri: references.robot
name: ${MATCH TYPE}
@@ -3727,10 +3817,10 @@ result:
location:
range:
end:
- character: 17
+ character: 7
line: 22
start:
- character: 0
+ character: 2
line: 22
uri: references.robot
name: ${a var}
@@ -3742,10 +3832,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 245
start:
- character: 19
+ character: 21
line: 245
uri: references.robot
name: ${arg}
@@ -3757,10 +3847,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 169
start:
- character: 19
+ character: 21
line: 169
uri: references.robot
name: ${a}
@@ -3772,10 +3862,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 187
start:
- character: 19
+ character: 21
line: 187
uri: references.robot
name: ${a}
@@ -3787,10 +3877,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 193
start:
- character: 19
+ character: 21
line: 193
uri: references.robot
name: ${a}
@@ -3802,10 +3892,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 26
start:
- character: 0
+ character: 2
line: 26
uri: references.robot
name: ${bananas}
@@ -3832,10 +3922,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 269
start:
- character: 4
+ character: 6
line: 269
uri: references.robot
name: ${beginning}
@@ -3847,10 +3937,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 169
start:
- character: 27
+ character: 29
line: 169
uri: references.robot
name: ${b}
@@ -3862,10 +3952,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 187
start:
- character: 27
+ character: 29
line: 187
uri: references.robot
name: ${b}
@@ -3877,10 +3967,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 193
start:
- character: 27
+ character: 29
line: 193
uri: references.robot
name: ${b}
@@ -3907,10 +3997,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 258
start:
- character: 19
+ character: 21
line: 258
uri: references.robot
name: ${count}
@@ -3982,10 +4072,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 59
start:
- character: 4
+ character: 6
line: 59
uri: references.robot
name: ${result}
@@ -3997,10 +4087,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 205
start:
- character: 4
+ character: 6
line: 205
uri: references.robot
name: ${result}
@@ -4012,10 +4102,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 236
start:
- character: 19
+ character: 21
line: 236
uri: references.robot
name: ${retries}
@@ -4027,10 +4117,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 258
start:
- character: 31
+ character: 33
line: 258
uri: references.robot
name: ${retries}
@@ -4102,10 +4192,10 @@ result:
location:
range:
end:
- character: 24
+ character: 23
line: 159
start:
- character: 19
+ character: 21
line: 159
uri: references.robot
name: ${tt}
@@ -4132,10 +4222,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 122
start:
- character: 19
+ character: 21
line: 122
uri: references.robot
name: ${type}
@@ -4147,10 +4237,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 224
start:
- character: 19
+ character: 21
line: 224
uri: references.robot
name: ${val}
@@ -4207,10 +4297,10 @@ result:
location:
range:
end:
- character: 11
+ character: 4
line: 27
start:
- character: 0
+ character: 2
line: 27
uri: references.robot
name: "${\U0001F9E8\U0001F9E8}"
@@ -4657,10 +4747,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 31
start:
- character: 19
+ character: 21
line: 31
uri: sematic_tokenizing.robot
name: ${a}
@@ -4672,10 +4762,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 31
start:
- character: 27
+ character: 29
line: 31
uri: sematic_tokenizing.robot
name: ${b}
@@ -4687,10 +4777,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 31
start:
- character: 35
+ character: 37
line: 31
uri: sematic_tokenizing.robot
name: ${c}
@@ -4702,10 +4792,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 26
start:
- character: 19
+ character: 21
line: 26
uri: sematic_tokenizing.robot
name: ${type}
@@ -4822,10 +4912,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 30
start:
- character: 19
+ character: 21
line: 30
uri: setup_teardown.robot
name: ${type}
@@ -4927,10 +5017,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 19
start:
- character: 4
+ character: 6
line: 19
uri: signature_help.robot
name: ${a}
@@ -4942,10 +5032,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 19
start:
- character: 12
+ character: 14
line: 19
uri: signature_help.robot
name: ${b}
@@ -4957,10 +5047,10 @@ result:
location:
range:
end:
- character: 57
+ character: 56
line: 32
start:
- character: 50
+ character: 52
line: 32
uri: signature_help.robot
name: ${html}
@@ -4972,10 +5062,10 @@ result:
location:
range:
end:
- character: 41
+ character: 40
line: 32
start:
- character: 33
+ character: 35
line: 32
uri: signature_help.robot
name: ${level}
@@ -4987,10 +5077,10 @@ result:
location:
range:
end:
- character: 29
+ character: 28
line: 32
start:
- character: 19
+ character: 21
line: 32
uri: signature_help.robot
name: ${message}
@@ -5182,10 +5272,10 @@ result:
location:
range:
end:
- character: 13
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: symbols.robot
name: ${A_VAR}
@@ -5212,10 +5302,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 41
start:
- character: 19
+ character: 21
line: 41
uri: symbols.robot
name: ${first}
@@ -5227,10 +5317,10 @@ result:
location:
range:
end:
- character: 33
+ character: 32
line: 16
start:
- character: 20
+ character: 22
line: 16
uri: symbols.robot
name: ${kw_result1}
@@ -5242,10 +5332,10 @@ result:
location:
range:
end:
- character: 16
+ character: 15
line: 13
start:
- character: 4
+ character: 6
line: 13
uri: symbols.robot
name: ${kw_result}
@@ -5272,10 +5362,10 @@ result:
location:
range:
end:
- character: 20
+ character: 19
line: 21
start:
- character: 9
+ character: 11
line: 21
uri: symbols.robot
name: ${loop_var}
@@ -5287,10 +5377,10 @@ result:
location:
range:
end:
- character: 40
+ character: 39
line: 41
start:
- character: 31
+ character: 33
line: 41
uri: symbols.robot
name: ${second}
@@ -5393,10 +5483,10 @@ result:
location:
range:
end:
- character: 13
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: templates.robot
name: ${A VAR}
@@ -5408,10 +5498,10 @@ result:
location:
range:
end:
- character: 25
+ character: 24
line: 79
start:
- character: 19
+ character: 21
line: 79
uri: templates.robot
name: ${aaa}
@@ -5423,10 +5513,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 61
start:
- character: 19
+ character: 21
line: 61
uri: templates.robot
name: ${a}
@@ -5438,10 +5528,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 68
start:
- character: 19
+ character: 21
line: 68
uri: templates.robot
name: ${a}
@@ -5468,10 +5558,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 89
start:
- character: 19
+ character: 21
line: 89
uri: templates.robot
name: ${a}
@@ -5483,10 +5573,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 61
start:
- character: 27
+ character: 29
line: 61
uri: templates.robot
name: ${b}
@@ -5498,10 +5588,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 68
start:
- character: 27
+ character: 29
line: 68
uri: templates.robot
name: ${b}
@@ -5528,10 +5618,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 89
start:
- character: 27
+ character: 29
line: 89
uri: templates.robot
name: ${b}
@@ -5543,10 +5633,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 61
start:
- character: 35
+ character: 37
line: 61
uri: templates.robot
name: ${c}
@@ -5558,10 +5648,10 @@ result:
location:
range:
end:
- character: 39
+ character: 38
line: 68
start:
- character: 35
+ character: 37
line: 68
uri: templates.robot
name: ${c}
@@ -5588,10 +5678,10 @@ result:
location:
range:
end:
- character: 46
+ character: 45
line: 89
start:
- character: 35
+ character: 37
line: 89
uri: templates.robot
name: ${expected}
@@ -5603,10 +5693,10 @@ result:
location:
range:
end:
- character: 15
+ character: 14
line: 81
start:
- character: 11
+ character: 13
line: 81
uri: templates.robot
name: ${i}
@@ -5618,10 +5708,10 @@ result:
location:
range:
end:
- character: 26
+ character: 10
line: 7
start:
- character: 0
+ character: 2
line: 7
uri: templates.robot
name: '@{LIST VAR}'
@@ -5858,10 +5948,10 @@ result:
location:
range:
end:
- character: 23
+ character: 16
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: templates2.robot
name: ${VALID PASSWORD}
@@ -5873,10 +5963,10 @@ result:
location:
range:
end:
- character: 22
+ character: 12
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: templates2.robot
name: ${VALID USER}
@@ -5888,10 +5978,10 @@ result:
location:
range:
end:
- character: 23
+ character: 22
line: 53
start:
- character: 19
+ character: 21
line: 53
uri: templates2.robot
name: ${a}
@@ -5903,10 +5993,10 @@ result:
location:
range:
end:
- character: 31
+ character: 30
line: 53
start:
- character: 27
+ character: 29
line: 53
uri: templates2.robot
name: ${b}
@@ -5918,10 +6008,10 @@ result:
location:
range:
end:
- character: 19
+ character: 18
line: 22
start:
- character: 11
+ character: 13
line: 22
uri: templates2.robot
name: ${index}
@@ -5933,10 +6023,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 19
start:
- character: 11
+ character: 13
line: 19
uri: templates2.robot
name: ${item}
@@ -5948,10 +6038,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 28
start:
- character: 11
+ character: 13
line: 28
uri: templates2.robot
name: ${item}
@@ -5963,10 +6053,10 @@ result:
location:
range:
end:
- character: 18
+ character: 17
line: 38
start:
- character: 11
+ character: 13
line: 38
uri: templates2.robot
name: ${item}
@@ -5978,10 +6068,10 @@ result:
location:
range:
end:
- character: 45
+ character: 44
line: 49
start:
- character: 34
+ character: 36
line: 49
uri: templates2.robot
name: ${password}
@@ -5993,10 +6083,10 @@ result:
location:
range:
end:
- character: 30
+ character: 29
line: 49
start:
- character: 19
+ character: 21
line: 49
uri: templates2.robot
name: ${username}
@@ -6008,10 +6098,10 @@ result:
location:
range:
end:
- character: 38
+ character: 7
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: templates2.robot
name: '@{ITEMS}'
@@ -6077,109 +6167,619 @@ result:
name: Example keyword
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 16
+ line: 10
+ start:
+ character: 0
+ line: 10
+ uri: templates2.robot
+ name: Invalid Password
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 17
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: templates2.robot
+ name: Invalid User Name
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 11
+ start:
+ character: 0
+ line: 11
+ uri: templates2.robot
+ name: Invalid User Name and Password
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 42
+ line: 48
+ start:
+ character: 0
+ line: 48
+ uri: templates2.robot
+ name: Login with invalid credentials should fail
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 24
+ line: 26
+ start:
+ character: 0
+ line: 26
+ uri: templates2.robot
+ name: Template with FOR and IF
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 0
+ line: 36
+ uri: templates2.robot
+ name: Template with FOR and IF invalid
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 22
+ line: 17
+ start:
+ character: 0
+ line: 17
+ uri: templates2.robot
+ name: Template with FOR loop
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 7
+ start:
+ character: 2
+ line: 7
+ uri: variable_conversion.robot
+ name: '${DATES: list[date]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 28
+ line: 8
+ start:
+ character: 2
+ line: 8
+ uri: variable_conversion.robot
+ name: '${PRIORITIES: dict[int, str]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 70
+ start:
+ character: 21
+ line: 70
+ uri: variable_conversion.robot
+ name: '${a: int | str | None}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 8
+ line: 1
+ start:
+ character: 2
+ line: 1
+ uri: variable_conversion.robot
+ name: '${a: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 47
+ start:
+ character: 6
+ line: 47
+ uri: variable_conversion.robot
+ name: '${a: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 27
+ line: 57
+ start:
+ character: 21
+ line: 57
+ uri: variable_conversion.robot
+ name: '${a: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 58
+ start:
+ character: 13
+ line: 58
+ uri: variable_conversion.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 65
+ start:
+ character: 21
+ line: 65
+ uri: variable_conversion.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 37
+ line: 65
+ start:
+ character: 31
+ line: 65
+ uri: variable_conversion.robot
+ name: '${b: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 57
+ start:
+ character: 34
+ line: 57
+ uri: variable_conversion.robot
+ name: '${c: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 59
+ line: 57
+ start:
+ character: 47
+ line: 57
+ uri: variable_conversion.robot
+ name: '${d: list[str]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 26
+ start:
+ character: 13
+ line: 26
+ uri: variable_conversion.robot
+ name: '${i: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 32
+ start:
+ character: 6
+ line: 32
+ uri: variable_conversion.robot
+ name: '${i: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 42
+ start:
+ character: 13
+ line: 42
+ uri: variable_conversion.robot
+ name: '${i: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 36
+ start:
+ character: 13
+ line: 36
+ uri: variable_conversion.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: variable_conversion.robot
+ name: '${k: Literal["Yes", "No"]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 34
+ line: 83
+ start:
+ character: 2
+ line: 83
+ uri: variable_conversion.robot
+ name: ${keyword}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 38
+ start:
+ character: 13
+ line: 38
+ uri: variable_conversion.robot
+ name: '${l: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 8
+ line: 2
+ start:
+ character: 2
+ line: 2
+ uri: variable_conversion.robot
+ name: '${s: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 32
+ line: 42
+ start:
+ character: 26
+ line: 42
+ uri: variable_conversion.robot
+ name: '${s: str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 16
+ line: 6
+ start:
+ character: 2
+ line: 6
+ uri: variable_conversion.robot
+ name: '${time: datetime}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 27
+ start:
+ character: 13
+ line: 27
+ uri: variable_conversion.robot
+ name: '${u: int | str}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 4
+ start:
+ character: 2
+ line: 4
+ uri: variable_conversion.robot
+ name: '@{numbers: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 5
+ start:
+ character: 2
+ line: 5
+ uri: variable_conversion.robot
+ name: '@{wrong_numbers: int}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 53
+ line: 83
+ start:
+ character: 0
+ line: 83
+ uri: variable_conversion.robot
+ name: 'a ${keyword: int:keyword|testcase} with embedded args'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: variable_conversion.robot
+ name: a simple keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 39
+ line: 64
+ start:
+ character: 0
+ line: 64
+ uri: variable_conversion.robot
+ name: a simple keyword with default arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
data: null
- kind: 5
+ kind: 12
location:
range:
end:
- character: 16
- line: 10
+ character: 36
+ line: 69
start:
character: 0
- line: 10
- uri: templates2.robot
- name: Invalid Password
+ line: 69
+ uri: variable_conversion.robot
+ name: a simple keyword with union argument
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
kind: 5
location:
range:
end:
- character: 17
- line: 9
+ character: 30
+ line: 50
start:
character: 0
- line: 9
- uri: templates2.robot
- name: Invalid User Name
+ line: 50
+ uri: variable_conversion.robot
+ name: calling kws with embedded args
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
kind: 5
location:
range:
end:
- character: 30
- line: 11
+ character: 9
+ line: 35
start:
character: 0
- line: 11
- uri: templates2.robot
- name: Invalid User Name and Password
+ line: 35
+ uri: variable_conversion.robot
+ name: for loops
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
- kind: 12
+ kind: 5
location:
range:
end:
- character: 42
- line: 48
+ character: 13
+ line: 46
start:
character: 0
- line: 48
- uri: templates2.robot
- name: Login with invalid credentials should fail
+ line: 46
+ uri: variable_conversion.robot
+ name: if assignment
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
kind: 5
location:
range:
end:
- character: 24
- line: 26
+ character: 19
+ line: 31
start:
character: 0
- line: 26
- uri: templates2.robot
- name: Template with FOR and IF
+ line: 31
+ uri: variable_conversion.robot
+ name: keyword assignments
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
kind: 5
location:
range:
end:
- character: 32
- line: 36
+ character: 15
+ line: 25
start:
character: 0
- line: 36
- uri: templates2.robot
- name: Template with FOR and IF invalid
+ line: 25
+ uri: variable_conversion.robot
+ name: local variables
tags: null
- !WorkspaceSymbol
- container_name: templates2
+ container_name: variable_conversion
data: null
kind: 5
location:
range:
end:
- character: 22
- line: 17
+ character: 15
+ line: 12
start:
character: 0
- line: 17
- uri: templates2.robot
- name: Template with FOR loop
+ line: 12
+ uri: variable_conversion.robot
+ name: suite variables
tags: null
- !WorkspaceSymbol
container_name: variables
@@ -6188,10 +6788,10 @@ result:
location:
range:
end:
- character: 16
+ character: 4
line: 12
start:
- character: 0
+ character: 2
line: 12
uri: variables.robot
name: ${DD}
@@ -6203,10 +6803,10 @@ result:
location:
range:
end:
- character: 24
+ character: 11
line: 124
start:
- character: 0
+ character: 2
line: 124
uri: variables.robot
name: ${INFO_DATA}
@@ -6218,10 +6818,10 @@ result:
location:
range:
end:
- character: 12
+ character: 4
line: 11
start:
- character: 0
+ character: 2
line: 11
uri: variables.robot
name: ${UU}
@@ -6233,10 +6833,10 @@ result:
location:
range:
end:
- character: 24
+ character: 7
line: 123
start:
- character: 0
+ character: 2
line: 123
uri: variables.robot
name: ${VALUE}
@@ -6248,10 +6848,10 @@ result:
location:
range:
end:
- character: 12
+ character: 4
line: 10
start:
- character: 0
+ character: 2
line: 10
uri: variables.robot
name: ${ZZ}
@@ -6278,10 +6878,25 @@ result:
location:
range:
end:
- character: 10
+ character: 24
+ line: 167
+ start:
+ character: 21
+ line: 167
+ uri: variables.robot
+ name: ${aaa}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
line: 64
start:
- character: 4
+ character: 6
line: 64
uri: variables.robot
name: ${asd}
@@ -6293,10 +6908,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 75
start:
- character: 4
+ character: 6
line: 75
uri: variables.robot
name: ${a}
@@ -6308,10 +6923,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 83
start:
- character: 4
+ character: 6
line: 83
uri: variables.robot
name: ${a}
@@ -6323,10 +6938,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 99
start:
- character: 4
+ character: 6
line: 99
uri: variables.robot
name: ${a}
@@ -6353,10 +6968,10 @@ result:
location:
range:
end:
- character: 21
+ character: 20
line: 177
start:
- character: 17
+ character: 19
line: 177
uri: variables.robot
name: ${a}
@@ -6368,10 +6983,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 76
start:
- character: 4
+ character: 6
line: 76
uri: variables.robot
name: ${b}
@@ -6383,10 +6998,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 84
start:
- character: 4
+ character: 6
line: 84
uri: variables.robot
name: ${b}
@@ -6398,10 +7013,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 100
start:
- character: 4
+ character: 6
line: 100
uri: variables.robot
name: ${b}
@@ -6428,10 +7043,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 177
start:
- character: 23
+ character: 25
line: 177
uri: variables.robot
name: ${b}
@@ -6443,10 +7058,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 77
start:
- character: 4
+ character: 6
line: 77
uri: variables.robot
name: ${c}
@@ -6458,10 +7073,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 102
start:
- character: 4
+ character: 6
line: 102
uri: variables.robot
name: ${c}
@@ -6473,10 +7088,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 78
start:
- character: 4
+ character: 6
line: 78
uri: variables.robot
name: ${d}
@@ -6503,10 +7118,10 @@ result:
location:
range:
end:
- character: 40
+ character: 39
line: 177
start:
- character: 29
+ character: 31
line: 177
uri: variables.robot
name: ${expected}
@@ -6518,10 +7133,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 79
start:
- character: 4
+ character: 6
line: 79
uri: variables.robot
name: ${e}
@@ -6533,10 +7148,10 @@ result:
location:
range:
end:
- character: 43
+ character: 11
line: 9
start:
- character: 0
+ character: 2
line: 9
uri: variables.robot
name: ${full_name}
@@ -6548,10 +7163,10 @@ result:
location:
range:
end:
- character: 8
+ character: 7
line: 80
start:
- character: 4
+ character: 6
line: 80
uri: variables.robot
name: ${f}
@@ -6563,10 +7178,10 @@ result:
location:
range:
end:
- character: 19
+ character: 18
line: 68
start:
- character: 4
+ character: 6
line: 68
uri: variables.robot
name: ${hello there1}
@@ -6578,10 +7193,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 52
start:
- character: 9
+ character: 11
line: 52
uri: variables.robot
name: ${i}
@@ -6593,14 +7208,29 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 169
start:
- character: 9
+ character: 11
line: 169
uri: variables.robot
name: ${i}
tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 83
+ line: 181
+ start:
+ character: 75
+ line: 181
+ uri: variables.robot
+ name: ${keywords}
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -6623,10 +7253,10 @@ result:
location:
range:
end:
- character: 99
+ character: 98
line: 181
start:
- character: 88
+ character: 90
line: 181
uri: variables.robot
name: ${listener}
@@ -6638,10 +7268,10 @@ result:
location:
range:
end:
- character: 26
+ character: 25
line: 181
start:
- character: 19
+ character: 21
line: 181
uri: variables.robot
name: ${name}
@@ -6653,14 +7283,29 @@ result:
location:
range:
end:
- character: 57
+ character: 15
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: variables.robot
name: ${pre_full_name}
tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 68
+ line: 181
+ start:
+ character: 63
+ line: 181
+ uri: variables.robot
+ name: ${scope}
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -6683,10 +7328,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 181
start:
- character: 37
+ character: 39
line: 181
uri: variables.robot
name: ${version}
@@ -6698,10 +7343,10 @@ result:
location:
range:
end:
- character: 11
+ character: 4
line: 14
start:
- character: 0
+ character: 2
line: 14
uri: variables.robot
name: "${\U0001F9E8\U0001F9E8}"
@@ -6713,10 +7358,10 @@ result:
location:
range:
end:
- character: 13
+ character: 12
line: 71
start:
- character: 4
+ character: 6
line: 71
uri: variables.robot
name: '&{a dict}'
@@ -7073,10 +7718,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 39
start:
- character: 32
+ character: 34
line: 39
uri: vartest.robot
name: ${a_second_arg}
@@ -7088,10 +7733,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 45
start:
- character: 32
+ character: 34
line: 45
uri: vartest.robot
name: ${a_second_arg}
@@ -7103,10 +7748,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 39
start:
- character: 19
+ character: 21
line: 39
uri: vartest.robot
name: ${an_arg}
@@ -7118,10 +7763,10 @@ result:
location:
range:
end:
- character: 28
+ character: 27
line: 45
start:
- character: 19
+ character: 21
line: 45
uri: vartest.robot
name: ${an_arg}
@@ -7373,10 +8018,10 @@ result:
location:
range:
end:
- character: 35
+ character: 11
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: very_big_file.robot
name: ${city_name}
@@ -7403,10 +8048,10 @@ result:
location:
range:
end:
- character: 71
+ character: 16
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: very_big_file.robot
name: ${cryptic_answer}
@@ -7433,10 +8078,10 @@ result:
location:
range:
end:
- character: 34
+ character: 10
line: 6
start:
- character: 0
+ character: 2
line: 6
uri: very_big_file.robot
name: ${location}
@@ -7553,10 +8198,10 @@ result:
location:
range:
end:
- character: 62
+ character: 10
line: 7
start:
- character: 0
+ character: 2
line: 7
uri: very_big_file.robot
name: ${question}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_workspace_symbols.test[as].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_workspace_symbols.test[as].out
index 90632af99..c023fdc0f 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_workspace_symbols.test[as].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_workspace_symbols.test[as].out
@@ -111,10 +111,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 24
start:
- character: 0
+ character: 2
line: 24
uri: code_action_show_documentation.robot
name: ${bananas}
@@ -216,10 +216,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 164
start:
- character: 32
+ character: 34
line: 164
uri: document_highlight.robot
name: ${a_second_arg}
@@ -231,10 +231,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 169
start:
- character: 32
+ character: 34
line: 169
uri: document_highlight.robot
name: ${a_second_arg}
@@ -411,10 +411,10 @@ result:
location:
range:
end:
- character: 47
+ character: 20
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: firstresource.resource
name: ${A_VAR_FROM_RESOURE}
@@ -426,10 +426,10 @@ result:
location:
range:
end:
- character: 61
+ character: 60
line: 23
start:
- character: 46
+ character: 48
line: 23
uri: firstresource.resource
name: ${a_short_name}
@@ -516,10 +516,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 213
start:
- character: 32
+ character: 34
line: 213
uri: goto.robot
name: ${a_second_arg}
@@ -531,10 +531,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 218
start:
- character: 32
+ character: 34
line: 218
uri: goto.robot
name: ${a_second_arg}
@@ -726,10 +726,25 @@ result:
location:
range:
end:
- character: 24
+ character: 17
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: indexed_variables.robot
+ name: ${A_LIST ${index}}
+ tags: null
+- !WorkspaceSymbol
+ container_name: indexed_variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 8
line: 1
start:
- character: 0
+ character: 2
line: 1
uri: indexed_variables.robot
name: '@{A_LIST}'
@@ -741,10 +756,10 @@ result:
location:
range:
end:
- character: 20
+ character: 9
line: 26
start:
- character: 0
+ character: 2
line: 26
uri: references.robot
name: ${bananas}
@@ -1071,10 +1086,10 @@ result:
location:
range:
end:
- character: 23
+ character: 16
line: 5
start:
- character: 0
+ character: 2
line: 5
uri: templates2.robot
name: ${VALID PASSWORD}
@@ -1086,10 +1101,10 @@ result:
location:
range:
end:
- character: 22
+ character: 12
line: 4
start:
- character: 0
+ character: 2
line: 4
uri: templates2.robot
name: ${VALID USER}
@@ -1101,10 +1116,10 @@ result:
location:
range:
end:
- character: 45
+ character: 44
line: 49
start:
- character: 34
+ character: 36
line: 49
uri: templates2.robot
name: ${password}
@@ -1199,6 +1214,186 @@ result:
uri: templates2.robot
name: Login with invalid credentials should fail
tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 7
+ start:
+ character: 2
+ line: 7
+ uri: variable_conversion.robot
+ name: '${DATES: list[date]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 70
+ start:
+ character: 21
+ line: 70
+ uri: variable_conversion.robot
+ name: '${a: int | str | None}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: variable_conversion.robot
+ name: '${k: Literal["Yes", "No"]}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 53
+ line: 83
+ start:
+ character: 0
+ line: 83
+ uri: variable_conversion.robot
+ name: 'a ${keyword: int:keyword|testcase} with embedded args'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: variable_conversion.robot
+ name: a simple keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 39
+ line: 64
+ start:
+ character: 0
+ line: 64
+ uri: variable_conversion.robot
+ name: a simple keyword with default arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 36
+ line: 69
+ start:
+ character: 0
+ line: 69
+ uri: variable_conversion.robot
+ name: a simple keyword with union argument
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 50
+ start:
+ character: 0
+ line: 50
+ uri: variable_conversion.robot
+ name: calling kws with embedded args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 46
+ start:
+ character: 0
+ line: 46
+ uri: variable_conversion.robot
+ name: if assignment
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 19
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: variable_conversion.robot
+ name: keyword assignments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 25
+ start:
+ character: 0
+ line: 25
+ uri: variable_conversion.robot
+ name: local variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 12
+ start:
+ character: 0
+ line: 12
+ uri: variable_conversion.robot
+ name: suite variables
+ tags: null
- !WorkspaceSymbol
container_name: variables
data: null
@@ -1206,10 +1401,10 @@ result:
location:
range:
end:
- character: 10
+ character: 9
line: 64
start:
- character: 4
+ character: 6
line: 64
uri: variables.robot
name: ${asd}
@@ -1281,10 +1476,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 39
start:
- character: 32
+ character: 34
line: 39
uri: vartest.robot
name: ${a_second_arg}
@@ -1296,10 +1491,10 @@ result:
location:
range:
end:
- character: 47
+ character: 46
line: 45
start:
- character: 32
+ character: 34
line: 45
uri: vartest.robot
name: ${a_second_arg}
@@ -1371,10 +1566,10 @@ result:
location:
range:
end:
- character: 71
+ character: 16
line: 8
start:
- character: 0
+ character: 2
line: 8
uri: very_big_file.robot
name: ${cryptic_answer}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_workspace_symbols.test[first].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_workspace_symbols.test[first].out
index e29fff18e..ab4c5c257 100644
--- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_workspace_symbols.test[first].out
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf72/test_workspace_symbols.test[first].out
@@ -299,6 +299,21 @@ result:
uri: jsonvariables.robot
name: first
tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: old_for.robot
+ name: first
+ tags: null
- !WorkspaceSymbol
container_name: part1__suite
data: null
@@ -576,10 +591,10 @@ result:
location:
range:
end:
- character: 27
+ character: 26
line: 41
start:
- character: 19
+ character: 21
line: 41
uri: symbols.robot
name: ${first}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-016-built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-016-built-in_library].out
new file mode 100644
index 000000000..1504a7b8a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-016-built-in_library].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 16
+ line: 1
+ name: built-in library
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-021-built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-021-built-in_library].out
new file mode 100644
index 000000000..f32771f2b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-021-built-in_library].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 21
+ line: 1
+ name: built-in library
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-026-built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-026-built-in_library].out
new file mode 100644
index 000000000..a64ab61b1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-026-built-in_library].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 26
+ line: 1
+ name: built-in library
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-016-user_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-016-user_library].out
new file mode 100644
index 000000000..8930c4ef8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-016-user_library].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 16
+ line: 3
+ name: user library
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-021-user_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-021-user_library].out
new file mode 100644
index 000000000..ba542b021
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-021-user_library].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 21
+ line: 3
+ name: user library
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-026-user_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-026-user_library].out
new file mode 100644
index 000000000..13c9ee64e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-026-user_library].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 26
+ line: 3
+ name: user library
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-016-user_library_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-016-user_library_by_path_with_variable].out
new file mode 100644
index 000000000..8565c17f4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-016-user_library_by_path_with_variable].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 16
+ line: 5
+ name: user library by path with variable
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-031-user_library_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-031-user_library_by_path_with_variable].out
new file mode 100644
index 000000000..5cc0a156d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-031-user_library_by_path_with_variable].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 31
+ line: 5
+ name: user library by path with variable
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-046-user_library_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-046-user_library_by_path_with_variable].out
new file mode 100644
index 000000000..319676ee6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-046-user_library_by_path_with_variable].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 46
+ line: 5
+ name: user library by path with variable
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-016-resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-016-resource].out
new file mode 100644
index 000000000..9357804d5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-016-resource].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 16
+ line: 8
+ name: resource
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-027-resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-027-resource].out
new file mode 100644
index 000000000..12e549df2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-027-resource].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 27
+ line: 8
+ name: resource
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-037-resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-037-resource].out
new file mode 100644
index 000000000..9b783b45a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-037-resource].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 37
+ line: 8
+ name: resource
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-016-resource_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-016-resource_by_path_with_variable].out
new file mode 100644
index 000000000..5dc1c782b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-016-resource_by_path_with_variable].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 16
+ line: 10
+ name: resource by path with variable
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-038-resource_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-038-resource_by_path_with_variable].out
new file mode 100644
index 000000000..591178059
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-038-resource_by_path_with_variable].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 38
+ line: 10
+ name: resource by path with variable
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-060-resource_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-060-resource_by_path_with_variable].out
new file mode 100644
index 000000000..4846142e8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-060-resource_by_path_with_variable].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 60
+ line: 10
+ name: resource by path with variable
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-016-user_library_with_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-016-user_library_with_arguments].out
new file mode 100644
index 000000000..72a9d47f2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-016-user_library_with_arguments].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 16
+ line: 12
+ name: user library with arguments
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-020-user_library_with_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-020-user_library_with_arguments].out
new file mode 100644
index 000000000..586bdb5bf
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-020-user_library_with_arguments].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 20
+ line: 12
+ name: user library with arguments
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-023-user_library_with_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-023-user_library_with_arguments].out
new file mode 100644
index 000000000..4dba5b939
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-023-user_library_with_arguments].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 23
+ line: 12
+ name: user library with arguments
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-016-user_library_with_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-016-user_library_with_arguments_and_variable].out
new file mode 100644
index 000000000..053442a25
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-016-user_library_with_arguments_and_variable].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 16
+ line: 14
+ name: user library with arguments and variable
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-020-user_library_with_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-020-user_library_with_arguments_and_variable].out
new file mode 100644
index 000000000..4b1fda2b4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-020-user_library_with_arguments_and_variable].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 20
+ line: 14
+ name: user library with arguments and variable
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-023-user_library_with_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-023-user_library_with_arguments_and_variable].out
new file mode 100644
index 000000000..79f7c5c97
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-023-user_library_with_arguments_and_variable].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 23
+ line: 14
+ name: user library with arguments and variable
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-015-keyword_call_from_built-in_library_wit__d7d16e6184.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-015-keyword_call_from_built-in_library_wit__d7d16e6184.out
new file mode 100644
index 000000000..3477196df
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-015-keyword_call_from_built-in_library_wit__d7d16e6184.out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 15
+ line: 16
+ name: keyword call from built-in library with namespace in Test Setup
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-026-keyword_call_from_built-in_library_wit__cd42b3cd81.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-026-keyword_call_from_built-in_library_wit__cd42b3cd81.out
new file mode 100644
index 000000000..bcb761433
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-026-keyword_call_from_built-in_library_wit__cd42b3cd81.out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 26
+ line: 16
+ name: keyword call from built-in library with namespace in Test Setup
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-036-keyword_call_from_built-in_library_wit__028749342f.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-036-keyword_call_from_built-in_library_wit__028749342f.out
new file mode 100644
index 000000000..b9499fe8b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-036-keyword_call_from_built-in_library_wit__028749342f.out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 36
+ line: 16
+ name: keyword call from built-in library with namespace in Test Setup
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-014-keyword_call_from_built-in_library_in_Test_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-014-keyword_call_from_built-in_library_in_Test_Setup].out
new file mode 100644
index 000000000..0cd02206e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-014-keyword_call_from_built-in_library_in_Test_Setup].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 14
+ line: 18
+ name: keyword call from built-in library in Test Setup
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-021-keyword_call_from_built-in_library_in_Test_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-021-keyword_call_from_built-in_library_in_Test_Setup].out
new file mode 100644
index 000000000..10d0f6a78
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-021-keyword_call_from_built-in_library_in_Test_Setup].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 21
+ line: 18
+ name: keyword call from built-in library in Test Setup
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-027-keyword_call_from_built-in_library_in_Test_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-027-keyword_call_from_built-in_library_in_Test_Setup].out
new file mode 100644
index 000000000..844a52d3f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-027-keyword_call_from_built-in_library_in_Test_Setup].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 27
+ line: 18
+ name: keyword call from built-in library in Test Setup
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-015-keyword_call_from_built-in_library_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-015-keyword_call_from_built-in_library_in_setup].out
new file mode 100644
index 000000000..cc722490c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-015-keyword_call_from_built-in_library_in_setup].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 15
+ line: 28
+ name: keyword call from built-in library in setup
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-022-keyword_call_from_built-in_library_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-022-keyword_call_from_built-in_library_in_setup].out
new file mode 100644
index 000000000..debf347d4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-022-keyword_call_from_built-in_library_in_setup].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 22
+ line: 28
+ name: keyword call from built-in library in setup
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-028-keyword_call_from_built-in_library_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-028-keyword_call_from_built-in_library_in_setup].out
new file mode 100644
index 000000000..4fe51a8f6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-028-keyword_call_from_built-in_library_in_setup].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 28
+ line: 28
+ name: keyword call from built-in library in setup
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-018-keyword_call_from_built-in_library_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-018-keyword_call_from_built-in_library_in_teardown].out
new file mode 100644
index 000000000..0ae96fa96
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-018-keyword_call_from_built-in_library_in_teardown].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 18
+ line: 30
+ name: keyword call from built-in library in teardown
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-029-keyword_call_from_built-in_library_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-029-keyword_call_from_built-in_library_in_teardown].out
new file mode 100644
index 000000000..fd7b420b9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-029-keyword_call_from_built-in_library_in_teardown].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 29
+ line: 30
+ name: keyword call from built-in library in teardown
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-039-keyword_call_from_built-in_library_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-039-keyword_call_from_built-in_library_in_teardown].out
new file mode 100644
index 000000000..97bd64cf1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-039-keyword_call_from_built-in_library_in_teardown].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 39
+ line: 30
+ name: keyword call from built-in library in teardown
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-004-keyword_from_built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-004-keyword_from_built-in_library].out
new file mode 100644
index 000000000..014307b31
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-004-keyword_from_built-in_library].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 4
+ line: 32
+ name: keyword from built-in library
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-005-keyword_from_built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-005-keyword_from_built-in_library].out
new file mode 100644
index 000000000..cdab02c4f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-005-keyword_from_built-in_library].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 5
+ line: 32
+ name: keyword from built-in library
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-006-keyword_from_built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-006-keyword_from_built-in_library].out
new file mode 100644
index 000000000..3ac6327ef
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-006-keyword_from_built-in_library].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 6
+ line: 32
+ name: keyword from built-in library
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-004-keyword_call_from_built-in_library_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-004-keyword_call_from_built-in_library_with_namespace].out
new file mode 100644
index 000000000..62346e415
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-004-keyword_call_from_built-in_library_with_namespace].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 4
+ line: 35
+ name: keyword call from built-in library with namespace
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-015-keyword_call_from_built-in_library_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-015-keyword_call_from_built-in_library_with_namespace].out
new file mode 100644
index 000000000..bbb21d346
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-015-keyword_call_from_built-in_library_with_namespace].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 15
+ line: 35
+ name: keyword call from built-in library with namespace
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-025-keyword_call_from_built-in_library_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-025-keyword_call_from_built-in_library_with_namespace].out
new file mode 100644
index 000000000..7ada3ac0e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-025-keyword_call_from_built-in_library_with_namespace].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 25
+ line: 35
+ name: keyword call from built-in library with namespace
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-018-keyword_call_from_built-in_library_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-018-keyword_call_from_built-in_library_in_template].out
new file mode 100644
index 000000000..baacac5f1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-018-keyword_call_from_built-in_library_in_template].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 18
+ line: 40
+ name: keyword call from built-in library in template
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-025-keyword_call_from_built-in_library_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-025-keyword_call_from_built-in_library_in_template].out
new file mode 100644
index 000000000..4005b8f50
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-025-keyword_call_from_built-in_library_in_template].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 25
+ line: 40
+ name: keyword call from built-in library in template
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-031-keyword_call_from_built-in_library_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-031-keyword_call_from_built-in_library_in_template].out
new file mode 100644
index 000000000..5ed9a67fb
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-031-keyword_call_from_built-in_library_in_template].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 31
+ line: 40
+ name: keyword call from built-in library in template
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-018-keyword_call_from_built-in_library_wit__d984cab273.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-018-keyword_call_from_built-in_library_wit__d984cab273.out
new file mode 100644
index 000000000..da4982110
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-018-keyword_call_from_built-in_library_wit__d984cab273.out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 18
+ line: 46
+ name: keyword call from built-in library with namespace in template
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-029-keyword_call_from_built-in_library_wit__fb1f1a56e9.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-029-keyword_call_from_built-in_library_wit__fb1f1a56e9.out
new file mode 100644
index 000000000..d28ed80d4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-029-keyword_call_from_built-in_library_wit__fb1f1a56e9.out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 29
+ line: 46
+ name: keyword call from built-in library with namespace in template
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-039-keyword_call_from_built-in_library_wit__14f1104533.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-039-keyword_call_from_built-in_library_wit__14f1104533.out
new file mode 100644
index 000000000..fac4cef22
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-039-keyword_call_from_built-in_library_wit__14f1104533.out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 39
+ line: 46
+ name: keyword call from built-in library with namespace in template
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-017-keyword_call_from_user_library_with_na__efa1e89fe7.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-017-keyword_call_from_user_library_with_na__efa1e89fe7.out
new file mode 100644
index 000000000..9f6ec0553
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-017-keyword_call_from_user_library_with_na__efa1e89fe7.out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 17
+ line: 52
+ name: keyword call from user library with namespace in assignment
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-030-keyword_call_from_user_library_with_na__8a545faa50.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-030-keyword_call_from_user_library_with_na__8a545faa50.out
new file mode 100644
index 000000000..e7ef8c562
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-030-keyword_call_from_user_library_with_na__8a545faa50.out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 30
+ line: 52
+ name: keyword call from user library with namespace in assignment
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-043-keyword_call_from_user_library_with_na__08fdc650a6.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-043-keyword_call_from_user_library_with_na__08fdc650a6.out
new file mode 100644
index 000000000..3bbde10b8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-043-keyword_call_from_user_library_with_na__08fdc650a6.out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 43
+ line: 52
+ name: keyword call from user library with namespace in assignment
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-018-keyword_call_from_user_library_with_na__2da3a7e0a5.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-018-keyword_call_from_user_library_with_na__2da3a7e0a5.out
new file mode 100644
index 000000000..592bf6427
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-018-keyword_call_from_user_library_with_na__2da3a7e0a5.out
@@ -0,0 +1,19 @@
+data: !GeneratedTestData
+ character: 18
+ line: 55
+ name: keyword call from user library with namespace in assignment from different
+ library
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-030-keyword_call_from_user_library_with_na__a1c5878f20.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-030-keyword_call_from_user_library_with_na__a1c5878f20.out
new file mode 100644
index 000000000..2ce06bbf0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-030-keyword_call_from_user_library_with_na__a1c5878f20.out
@@ -0,0 +1,19 @@
+data: !GeneratedTestData
+ character: 30
+ line: 55
+ name: keyword call from user library with namespace in assignment from different
+ library
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-042-keyword_call_from_user_library_with_na__c2ef0179a4.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-042-keyword_call_from_user_library_with_na__c2ef0179a4.out
new file mode 100644
index 000000000..2458d972d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-042-keyword_call_from_user_library_with_na__c2ef0179a4.out
@@ -0,0 +1,19 @@
+data: !GeneratedTestData
+ character: 42
+ line: 55
+ name: keyword call from user library with namespace in assignment from different
+ library
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-015-keyword_call_with_embedded_arguments_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-015-keyword_call_with_embedded_arguments_in_setup].out
new file mode 100644
index 000000000..72da6608d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-015-keyword_call_with_embedded_arguments_in_setup].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 15
+ line: 61
+ name: keyword call with embedded arguments in setup
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-029-keyword_call_with_embedded_arguments_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-029-keyword_call_with_embedded_arguments_in_setup].out
new file mode 100644
index 000000000..07a54390b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-029-keyword_call_with_embedded_arguments_in_setup].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 29
+ line: 61
+ name: keyword call with embedded arguments in setup
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-043-keyword_call_with_embedded_arguments_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-043-keyword_call_with_embedded_arguments_in_setup].out
new file mode 100644
index 000000000..55848b635
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-043-keyword_call_with_embedded_arguments_in_setup].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 43
+ line: 61
+ name: keyword call with embedded arguments in setup
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-018-keyword_call_with_embedded_arguments_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-018-keyword_call_with_embedded_arguments_in_teardown].out
new file mode 100644
index 000000000..30f741ff0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-018-keyword_call_with_embedded_arguments_in_teardown].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 18
+ line: 63
+ name: keyword call with embedded arguments in teardown
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-034-keyword_call_with_embedded_arguments_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-034-keyword_call_with_embedded_arguments_in_teardown].out
new file mode 100644
index 000000000..3819c5dc3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-034-keyword_call_with_embedded_arguments_in_teardown].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 34
+ line: 63
+ name: keyword call with embedded arguments in teardown
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-049-keyword_call_with_embedded_arguments_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-049-keyword_call_with_embedded_arguments_in_teardown].out
new file mode 100644
index 000000000..ddf746b14
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-049-keyword_call_with_embedded_arguments_in_teardown].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 49
+ line: 63
+ name: keyword call with embedded arguments in teardown
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-004-keyword_call_normal_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-004-keyword_call_normal_arguments_in_test_case].out
new file mode 100644
index 000000000..a067ba9cb
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-004-keyword_call_normal_arguments_in_test_case].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 4
+ line: 65
+ name: keyword call normal arguments in test case
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-010-keyword_call_normal_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-010-keyword_call_normal_arguments_in_test_case].out
new file mode 100644
index 000000000..118d6a50c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-010-keyword_call_normal_arguments_in_test_case].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 10
+ line: 65
+ name: keyword call normal arguments in test case
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-015-keyword_call_normal_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-015-keyword_call_normal_arguments_in_test_case].out
new file mode 100644
index 000000000..2bd505991
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-015-keyword_call_normal_arguments_in_test_case].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 15
+ line: 65
+ name: keyword call normal arguments in test case
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-004-keyword_call_embedded_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-004-keyword_call_embedded_arguments_in_test_case].out
new file mode 100644
index 000000000..6b4f431b8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-004-keyword_call_embedded_arguments_in_test_case].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 4
+ line: 67
+ name: keyword call embedded arguments in test case
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-019-keyword_call_embedded_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-019-keyword_call_embedded_arguments_in_test_case].out
new file mode 100644
index 000000000..b1b48e9c7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-019-keyword_call_embedded_arguments_in_test_case].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 19
+ line: 67
+ name: keyword call embedded arguments in test case
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-033-keyword_call_embedded_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-033-keyword_call_embedded_arguments_in_test_case].out
new file mode 100644
index 000000000..a7442daff
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-033-keyword_call_embedded_arguments_in_test_case].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 33
+ line: 67
+ name: keyword call embedded arguments in test case
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-004-keyword_call_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-004-keyword_call_with_embedded_arguments].out
new file mode 100644
index 000000000..f536746dd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-004-keyword_call_with_embedded_arguments].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 4
+ line: 70
+ name: keyword call with embedded arguments
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-014-keyword_call_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-014-keyword_call_with_embedded_arguments].out
new file mode 100644
index 000000000..c8f418f7c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-014-keyword_call_with_embedded_arguments].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 14
+ line: 70
+ name: keyword call with embedded arguments
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-024-keyword_call_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-024-keyword_call_with_embedded_arguments].out
new file mode 100644
index 000000000..365aed4dc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-024-keyword_call_with_embedded_arguments].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 24
+ line: 70
+ name: keyword call with embedded arguments
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-004-keyword_call_with_embedded_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-004-keyword_call_with_embedded_arguments_and_variable].out
new file mode 100644
index 000000000..92f1ee05c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-004-keyword_call_with_embedded_arguments_and_variable].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 4
+ line: 76
+ name: keyword call with embedded arguments and variable
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-019-keyword_call_with_embedded_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-019-keyword_call_with_embedded_arguments_and_variable].out
new file mode 100644
index 000000000..1c9bac0e5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-019-keyword_call_with_embedded_arguments_and_variable].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 19
+ line: 76
+ name: keyword call with embedded arguments and variable
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-034-keyword_call_with_embedded_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-034-keyword_call_with_embedded_arguments_and_variable].out
new file mode 100644
index 000000000..c53172ec5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-034-keyword_call_with_embedded_arguments_and_variable].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 34
+ line: 76
+ name: keyword call with embedded arguments and variable
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-004-error_multiple_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-004-error_multiple_keywords].out
new file mode 100644
index 000000000..f94f815a8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-004-error_multiple_keywords].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 4
+ line: 79
+ name: error multiple keywords
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-014-error_multiple_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-014-error_multiple_keywords].out
new file mode 100644
index 000000000..5c7b2c0ef
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-014-error_multiple_keywords].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 14
+ line: 79
+ name: error multiple keywords
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-024-error_multiple_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-024-error_multiple_keywords].out
new file mode 100644
index 000000000..65b313664
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-024-error_multiple_keywords].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 24
+ line: 79
+ name: error multiple keywords
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-004-error_multiple_keywords_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-004-error_multiple_keywords_ignored].out
new file mode 100644
index 000000000..67291f8fa
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-004-error_multiple_keywords_ignored].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 4
+ line: 81
+ name: error multiple keywords ignored
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-014-error_multiple_keywords_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-014-error_multiple_keywords_ignored].out
new file mode 100644
index 000000000..38365fe51
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-014-error_multiple_keywords_ignored].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 14
+ line: 81
+ name: error multiple keywords ignored
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-024-error_multiple_keywords_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-024-error_multiple_keywords_ignored].out
new file mode 100644
index 000000000..78437caf9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-024-error_multiple_keywords_ignored].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 24
+ line: 81
+ name: error multiple keywords ignored
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-004-a_keyword_with_emoji_1].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-004-a_keyword_with_emoji_1].out
new file mode 100644
index 000000000..19416e6f6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-004-a_keyword_with_emoji_1].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 4
+ line: 86
+ name: a keyword with emoji 1
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-006-a_keyword_with_emoji_1].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-006-a_keyword_with_emoji_1].out
new file mode 100644
index 000000000..7ab3e213f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-006-a_keyword_with_emoji_1].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 6
+ line: 86
+ name: a keyword with emoji 1
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-007-a_keyword_with_emoji_1].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-007-a_keyword_with_emoji_1].out
new file mode 100644
index 000000000..ff01b37d3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-007-a_keyword_with_emoji_1].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 7
+ line: 86
+ name: a keyword with emoji 1
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-004-a_keyword_with_emoji_2].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-004-a_keyword_with_emoji_2].out
new file mode 100644
index 000000000..4c2a39d6e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-004-a_keyword_with_emoji_2].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 4
+ line: 88
+ name: a keyword with emoji 2
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-006-a_keyword_with_emoji_2].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-006-a_keyword_with_emoji_2].out
new file mode 100644
index 000000000..16e374381
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-006-a_keyword_with_emoji_2].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 6
+ line: 88
+ name: a keyword with emoji 2
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-007-a_keyword_with_emoji_2].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-007-a_keyword_with_emoji_2].out
new file mode 100644
index 000000000..aa632106f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-007-a_keyword_with_emoji_2].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 7
+ line: 88
+ name: a keyword with emoji 2
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-001-keyword_definition_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-001-keyword_definition_with_embedded_arguments].out
new file mode 100644
index 000000000..ed4b332e7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-001-keyword_definition_with_embedded_arguments].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 1
+ line: 91
+ name: keyword definition with embedded arguments
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-010-keyword_definition_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-010-keyword_definition_with_embedded_arguments].out
new file mode 100644
index 000000000..b40221362
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-010-keyword_definition_with_embedded_arguments].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 10
+ line: 91
+ name: keyword definition with embedded arguments
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-019-keyword_definition_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-019-keyword_definition_with_embedded_arguments].out
new file mode 100644
index 000000000..66a224dde
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-019-keyword_definition_with_embedded_arguments].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 19
+ line: 91
+ name: keyword definition with embedded arguments
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-001-keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-001-keyword_definition].out
new file mode 100644
index 000000000..1b52c697c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-001-keyword_definition].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 1
+ line: 95
+ name: keyword definition
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-006-keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-006-keyword_definition].out
new file mode 100644
index 000000000..a2319568b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-006-keyword_definition].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 6
+ line: 95
+ name: keyword definition
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-011-keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-011-keyword_definition].out
new file mode 100644
index 000000000..9e02d7433
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-011-keyword_definition].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 11
+ line: 95
+ name: keyword definition
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-004-keyword_call_in_keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-004-keyword_call_in_keyword_definition].out
new file mode 100644
index 000000000..d93f5bf15
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-004-keyword_call_in_keyword_definition].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 4
+ line: 98
+ name: keyword call in keyword definition
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-005-keyword_call_in_keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-005-keyword_call_in_keyword_definition].out
new file mode 100644
index 000000000..db84f9696
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-005-keyword_call_in_keyword_definition].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 5
+ line: 98
+ name: keyword call in keyword definition
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-006-keyword_call_in_keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-006-keyword_call_in_keyword_definition].out
new file mode 100644
index 000000000..ebb8ea44c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-006-keyword_call_in_keyword_definition].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 6
+ line: 98
+ name: keyword call in keyword definition
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-001-keyword_definition_with_embedded_argum__b7a9e9c57a.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-001-keyword_definition_with_embedded_argum__b7a9e9c57a.out
new file mode 100644
index 000000000..54198f8b1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-001-keyword_definition_with_embedded_argum__b7a9e9c57a.out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 1
+ line: 101
+ name: keyword definition with embedded arguments and regex
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-010-keyword_definition_with_embedded_argum__ade1039d68.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-010-keyword_definition_with_embedded_argum__ade1039d68.out
new file mode 100644
index 000000000..a6883e80c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-010-keyword_definition_with_embedded_argum__ade1039d68.out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 10
+ line: 101
+ name: keyword definition with embedded arguments and regex
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-019-keyword_definition_with_embedded_argum__f1aa26fade.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-019-keyword_definition_with_embedded_argum__f1aa26fade.out
new file mode 100644
index 000000000..4b6924642
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-019-keyword_definition_with_embedded_argum__f1aa26fade.out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 19
+ line: 101
+ name: keyword definition with embedded arguments and regex
+result:
+- !CodeAction
+ command:
+ arguments:
+ -
+ command: robotcode.showDocumentation
+ title: Open Documentation
+ data: null
+ diagnostics: null
+ disabled: null
+ edit: null
+ is_preferred: null
+ kind: source
+ title: Open Documentation
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-018-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-018-Variable_in_library_import_path].out
new file mode 100644
index 000000000..9abeee529
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-018-Variable_in_library_import_path].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 18
+ line: 2
+ name: Variable in library import path
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-021-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-021-Variable_in_library_import_path].out
new file mode 100644
index 000000000..df7e8cb90
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-021-Variable_in_library_import_path].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 21
+ line: 2
+ name: Variable in library import path
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-023-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-023-Variable_in_library_import_path].out
new file mode 100644
index 000000000..9c0de0963
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-023-Variable_in_library_import_path].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 23
+ line: 2
+ name: Variable in library import path
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-018-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-018-Variable_in_variables_import_path].out
new file mode 100644
index 000000000..2f595c525
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-018-Variable_in_variables_import_path].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 18
+ line: 4
+ name: Variable in variables import path
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-021-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-021-Variable_in_variables_import_path].out
new file mode 100644
index 000000000..32da8b188
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-021-Variable_in_variables_import_path].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 21
+ line: 4
+ name: Variable in variables import path
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-023-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-023-Variable_in_variables_import_path].out
new file mode 100644
index 000000000..face0403a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-023-Variable_in_variables_import_path].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 23
+ line: 4
+ name: Variable in variables import path
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-018-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-018-Variable_in_resource_import_path].out
new file mode 100644
index 000000000..f13ac59b6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-018-Variable_in_resource_import_path].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 18
+ line: 6
+ name: Variable in resource import path
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-021-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-021-Variable_in_resource_import_path].out
new file mode 100644
index 000000000..af9152ec2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-021-Variable_in_resource_import_path].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 21
+ line: 6
+ name: Variable in resource import path
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-023-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-023-Variable_in_resource_import_path].out
new file mode 100644
index 000000000..f99f50bda
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-023-Variable_in_resource_import_path].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 23
+ line: 6
+ name: Variable in resource import path
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-029-namespace_reference_with_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-029-namespace_reference_with_resource].out
new file mode 100644
index 000000000..01e72cfb4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-029-namespace_reference_with_resource].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 29
+ line: 6
+ name: namespace reference with resource
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 61
+ line: 6
+ start:
+ character: 16
+ line: 6
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 17
+ line: 70
+ start:
+ character: 4
+ line: 70
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-040-namespace_reference_with_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-040-namespace_reference_with_resource].out
new file mode 100644
index 000000000..fe0e1adfb
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-040-namespace_reference_with_resource].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 40
+ line: 6
+ name: namespace reference with resource
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 61
+ line: 6
+ start:
+ character: 16
+ line: 6
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 17
+ line: 70
+ start:
+ character: 4
+ line: 70
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-051-namespace_reference_with_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-051-namespace_reference_with_resource].out
new file mode 100644
index 000000000..91e3f2506
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-051-namespace_reference_with_resource].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 51
+ line: 6
+ name: namespace reference with resource
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 61
+ line: 6
+ start:
+ character: 16
+ line: 6
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 17
+ line: 70
+ start:
+ character: 4
+ line: 70
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-036-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-036-Variable_in_library_params].out
new file mode 100644
index 000000000..aee721c20
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-036-Variable_in_library_params].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 36
+ line: 10
+ name: Variable in library params
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 36
+ line: 10
+ start:
+ character: 36
+ line: 10
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-041-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-041-Variable_in_library_params].out
new file mode 100644
index 000000000..ce8a824ba
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-041-Variable_in_library_params].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 41
+ line: 10
+ name: Variable in library params
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 45
+ line: 10
+ start:
+ character: 38
+ line: 10
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 9
+ line: 22
+ start:
+ character: 2
+ line: 22
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 63
+ start:
+ character: 37
+ line: 63
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-045-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-045-Variable_in_library_params].out
new file mode 100644
index 000000000..a3ba374cb
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-045-Variable_in_library_params].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 45
+ line: 10
+ name: Variable in library params
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 45
+ line: 10
+ start:
+ character: 38
+ line: 10
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 9
+ line: 22
+ start:
+ character: 2
+ line: 22
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 63
+ start:
+ character: 37
+ line: 63
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-063-namespace_references_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-063-namespace_references_with_alias].out
new file mode 100644
index 000000000..d90df60a0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-063-namespace_references_with_alias].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 63
+ line: 10
+ name: namespace references with alias
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 24
+ line: 10
+ start:
+ character: 16
+ line: 10
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 70
+ line: 10
+ start:
+ character: 63
+ line: 10
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 25
+ line: 60
+ start:
+ character: 18
+ line: 60
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-066-namespace_references_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-066-namespace_references_with_alias].out
new file mode 100644
index 000000000..a1fa36c80
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-066-namespace_references_with_alias].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 66
+ line: 10
+ name: namespace references with alias
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 24
+ line: 10
+ start:
+ character: 16
+ line: 10
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 70
+ line: 10
+ start:
+ character: 63
+ line: 10
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 25
+ line: 60
+ start:
+ character: 18
+ line: 60
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-069-namespace_references_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-069-namespace_references_with_alias].out
new file mode 100644
index 000000000..5179ecc50
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-069-namespace_references_with_alias].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 69
+ line: 10
+ name: namespace references with alias
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 24
+ line: 10
+ start:
+ character: 16
+ line: 10
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 70
+ line: 10
+ start:
+ character: 63
+ line: 10
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 25
+ line: 60
+ start:
+ character: 18
+ line: 60
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-023-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-023-suite_fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..96501d451
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-023-suite_fixture_keyword_call_with_namespace].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 23
+ line: 14
+ name: suite fixture keyword call with namespace
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-030-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-030-suite_fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..9ad013dc9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-030-suite_fixture_keyword_call_with_namespace].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 30
+ line: 14
+ name: suite fixture keyword call with namespace
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-036-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-036-suite_fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..472a24c6d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-036-suite_fixture_keyword_call_with_namespace].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 36
+ line: 14
+ name: suite fixture keyword call with namespace
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-014-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-014-test_fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..5de7e77fc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-014-test_fixture_keyword_call_with_namespace].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 14
+ line: 16
+ name: test fixture keyword call with namespace
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-021-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-021-test_fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..015a4e883
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-021-test_fixture_keyword_call_with_namespace].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 21
+ line: 16
+ name: test fixture keyword call with namespace
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-027-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-027-test_fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..8ccbe4851
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-027-test_fixture_keyword_call_with_namespace].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 27
+ line: 16
+ name: test fixture keyword call with namespace
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-002-simple_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-002-simple_variable].out
new file mode 100644
index 000000000..f4996d187
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-002-simple_variable].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 2
+ line: 20
+ name: simple variable
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-004-simple_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-004-simple_variable].out
new file mode 100644
index 000000000..201ff780c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-004-simple_variable].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 4
+ line: 20
+ name: simple variable
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-006-simple_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-006-simple_variable].out
new file mode 100644
index 000000000..9ad8b1a51
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-006-simple_variable].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 6
+ line: 20
+ name: simple variable
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-002-another_simple_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-002-another_simple_var].out
new file mode 100644
index 000000000..e061471b3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-002-another_simple_var].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 2
+ line: 22
+ name: another simple var
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 45
+ line: 10
+ start:
+ character: 38
+ line: 10
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 9
+ line: 22
+ start:
+ character: 2
+ line: 22
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 63
+ start:
+ character: 37
+ line: 63
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-005-another_simple_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-005-another_simple_var].out
new file mode 100644
index 000000000..fa561199c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-005-another_simple_var].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 5
+ line: 22
+ name: another simple var
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 45
+ line: 10
+ start:
+ character: 38
+ line: 10
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 9
+ line: 22
+ start:
+ character: 2
+ line: 22
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 63
+ start:
+ character: 37
+ line: 63
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-007-another_simple_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-007-another_simple_var].out
new file mode 100644
index 000000000..21b8a8c14
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-007-another_simple_var].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 7
+ line: 22
+ name: another simple var
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 45
+ line: 10
+ start:
+ character: 38
+ line: 10
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 9
+ line: 22
+ start:
+ character: 2
+ line: 22
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 63
+ start:
+ character: 37
+ line: 63
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-015-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-015-fixture_keyword_call].out
new file mode 100644
index 000000000..bbbed9f1f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-015-fixture_keyword_call].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 15
+ line: 30
+ name: fixture keyword call
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-022-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-022-fixture_keyword_call].out
new file mode 100644
index 000000000..fcb2e0792
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-022-fixture_keyword_call].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 22
+ line: 30
+ name: fixture keyword call
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-028-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-028-fixture_keyword_call].out
new file mode 100644
index 000000000..945a82e38
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-028-fixture_keyword_call].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 28
+ line: 30
+ name: fixture keyword call
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-026-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-026-fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..14a32ce2c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-026-fixture_keyword_call_with_namespace].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 26
+ line: 32
+ name: fixture keyword call with namespace
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-033-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-033-fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..4f3a26703
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-033-fixture_keyword_call_with_namespace].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 33
+ line: 32
+ name: fixture keyword call with namespace
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-039-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-039-fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..592246f28
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-039-fixture_keyword_call_with_namespace].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 39
+ line: 32
+ name: fixture keyword call with namespace
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-004-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-004-simple_keyword_call].out
new file mode 100644
index 000000000..dbec8d309
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-004-simple_keyword_call].out
@@ -0,0 +1,221 @@
+data: !GeneratedTestData
+ character: 4
+ line: 34
+ name: simple keyword call
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 34
+ start:
+ character: 4
+ line: 34
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 41
+ start:
+ character: 4
+ line: 41
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 11
+ line: 88
+ start:
+ character: 8
+ line: 88
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 11
+ line: 91
+ start:
+ character: 8
+ line: 91
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 11
+ line: 96
+ start:
+ character: 8
+ line: 96
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 11
+ line: 99
+ start:
+ character: 8
+ line: 99
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 19
+ line: 102
+ start:
+ character: 16
+ line: 102
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 51
+ line: 102
+ start:
+ character: 48
+ line: 102
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 70
+ line: 102
+ start:
+ character: 67
+ line: 102
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 17
+ line: 106
+ start:
+ character: 14
+ line: 106
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 47
+ line: 106
+ start:
+ character: 44
+ line: 106
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 66
+ line: 106
+ start:
+ character: 63
+ line: 106
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 116
+ start:
+ character: 4
+ line: 116
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 118
+ start:
+ character: 4
+ line: 118
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 126
+ start:
+ character: 4
+ line: 126
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 128
+ start:
+ character: 4
+ line: 128
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 136
+ start:
+ character: 4
+ line: 136
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 138
+ start:
+ character: 4
+ line: 138
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 140
+ start:
+ character: 4
+ line: 140
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 151
+ start:
+ character: 4
+ line: 151
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 165
+ start:
+ character: 4
+ line: 165
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 166
+ start:
+ character: 4
+ line: 166
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 178
+ start:
+ character: 4
+ line: 178
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 179
+ start:
+ character: 4
+ line: 179
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-005-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-005-simple_keyword_call].out
new file mode 100644
index 000000000..d25c57520
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-005-simple_keyword_call].out
@@ -0,0 +1,221 @@
+data: !GeneratedTestData
+ character: 5
+ line: 34
+ name: simple keyword call
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 34
+ start:
+ character: 4
+ line: 34
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 41
+ start:
+ character: 4
+ line: 41
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 11
+ line: 88
+ start:
+ character: 8
+ line: 88
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 11
+ line: 91
+ start:
+ character: 8
+ line: 91
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 11
+ line: 96
+ start:
+ character: 8
+ line: 96
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 11
+ line: 99
+ start:
+ character: 8
+ line: 99
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 19
+ line: 102
+ start:
+ character: 16
+ line: 102
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 51
+ line: 102
+ start:
+ character: 48
+ line: 102
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 70
+ line: 102
+ start:
+ character: 67
+ line: 102
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 17
+ line: 106
+ start:
+ character: 14
+ line: 106
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 47
+ line: 106
+ start:
+ character: 44
+ line: 106
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 66
+ line: 106
+ start:
+ character: 63
+ line: 106
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 116
+ start:
+ character: 4
+ line: 116
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 118
+ start:
+ character: 4
+ line: 118
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 126
+ start:
+ character: 4
+ line: 126
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 128
+ start:
+ character: 4
+ line: 128
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 136
+ start:
+ character: 4
+ line: 136
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 138
+ start:
+ character: 4
+ line: 138
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 140
+ start:
+ character: 4
+ line: 140
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 151
+ start:
+ character: 4
+ line: 151
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 165
+ start:
+ character: 4
+ line: 165
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 166
+ start:
+ character: 4
+ line: 166
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 178
+ start:
+ character: 4
+ line: 178
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 179
+ start:
+ character: 4
+ line: 179
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-006-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-006-simple_keyword_call].out
new file mode 100644
index 000000000..db97b358b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-006-simple_keyword_call].out
@@ -0,0 +1,221 @@
+data: !GeneratedTestData
+ character: 6
+ line: 34
+ name: simple keyword call
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 34
+ start:
+ character: 4
+ line: 34
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 41
+ start:
+ character: 4
+ line: 41
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 11
+ line: 88
+ start:
+ character: 8
+ line: 88
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 11
+ line: 91
+ start:
+ character: 8
+ line: 91
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 11
+ line: 96
+ start:
+ character: 8
+ line: 96
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 11
+ line: 99
+ start:
+ character: 8
+ line: 99
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 19
+ line: 102
+ start:
+ character: 16
+ line: 102
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 51
+ line: 102
+ start:
+ character: 48
+ line: 102
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 70
+ line: 102
+ start:
+ character: 67
+ line: 102
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 17
+ line: 106
+ start:
+ character: 14
+ line: 106
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 47
+ line: 106
+ start:
+ character: 44
+ line: 106
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 66
+ line: 106
+ start:
+ character: 63
+ line: 106
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 116
+ start:
+ character: 4
+ line: 116
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 118
+ start:
+ character: 4
+ line: 118
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 126
+ start:
+ character: 4
+ line: 126
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 128
+ start:
+ character: 4
+ line: 128
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 136
+ start:
+ character: 4
+ line: 136
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 138
+ start:
+ character: 4
+ line: 138
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 140
+ start:
+ character: 4
+ line: 140
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 151
+ start:
+ character: 4
+ line: 151
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 165
+ start:
+ character: 4
+ line: 165
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 166
+ start:
+ character: 4
+ line: 166
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 178
+ start:
+ character: 4
+ line: 178
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 7
+ line: 179
+ start:
+ character: 4
+ line: 179
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-004-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-004-multiple_references].out
new file mode 100644
index 000000000..ea6334722
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-004-multiple_references].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 4
+ line: 36
+ name: multiple references
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-011-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-011-multiple_references].out
new file mode 100644
index 000000000..84daf7e1a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-011-multiple_references].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 11
+ line: 36
+ name: multiple references
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-017-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-017-multiple_references].out
new file mode 100644
index 000000000..d94da6381
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-017-multiple_references].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 17
+ line: 36
+ name: multiple references
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-012-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-012-multiple_references_with_namespace].out
new file mode 100644
index 000000000..b897f150b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-012-multiple_references_with_namespace].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 12
+ line: 38
+ name: multiple references with namespace
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-019-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-019-multiple_references_with_namespace].out
new file mode 100644
index 000000000..d539667e1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-019-multiple_references_with_namespace].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 19
+ line: 38
+ name: multiple references with namespace
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-025-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-025-multiple_references_with_namespace].out
new file mode 100644
index 000000000..44c4c1f24
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-025-multiple_references_with_namespace].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 25
+ line: 38
+ name: multiple references with namespace
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-035-multiple_variables].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-035-multiple_variables].out
new file mode 100644
index 000000000..907cedb78
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-035-multiple_variables].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 35
+ line: 38
+ name: multiple variables
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-037-multiple_variables].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-037-multiple_variables].out
new file mode 100644
index 000000000..753f44ab1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-037-multiple_variables].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 37
+ line: 38
+ name: multiple variables
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-039-multiple_variables].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-039-multiple_variables].out
new file mode 100644
index 000000000..17df9ae4c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-039-multiple_variables].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 39
+ line: 38
+ name: multiple variables
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-013-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-013-a_var_from_resource].out
new file mode 100644
index 000000000..6a1cdd453
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-013-a_var_from_resource].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 13
+ line: 41
+ name: a var from resource
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 31
+ line: 41
+ start:
+ character: 13
+ line: 41
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-022-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-022-a_var_from_resource].out
new file mode 100644
index 000000000..72a56fcfd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-022-a_var_from_resource].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 22
+ line: 41
+ name: a var from resource
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 31
+ line: 41
+ start:
+ character: 13
+ line: 41
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-030-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-030-a_var_from_resource].out
new file mode 100644
index 000000000..480f271ed
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-030-a_var_from_resource].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 30
+ line: 41
+ name: a var from resource
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 31
+ line: 41
+ start:
+ character: 13
+ line: 41
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-018-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-018-template_keyword].out
new file mode 100644
index 000000000..daad2e117
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-018-template_keyword].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 18
+ line: 45
+ name: template keyword
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-025-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-025-template_keyword].out
new file mode 100644
index 000000000..577f54d5f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-025-template_keyword].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 25
+ line: 45
+ name: template keyword
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-031-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-031-template_keyword].out
new file mode 100644
index 000000000..c33a2c57a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-031-template_keyword].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 31
+ line: 45
+ name: template keyword
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-026-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-026-template_keyword_with_namespace].out
new file mode 100644
index 000000000..636ab7376
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-026-template_keyword_with_namespace].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 26
+ line: 51
+ name: template keyword with namespace
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-033-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-033-template_keyword_with_namespace].out
new file mode 100644
index 000000000..bf6ac7067
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-033-template_keyword_with_namespace].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 33
+ line: 51
+ name: template keyword with namespace
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-039-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-039-template_keyword_with_namespace].out
new file mode 100644
index 000000000..cd2117b8e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-039-template_keyword_with_namespace].out
@@ -0,0 +1,77 @@
+data: !GeneratedTestData
+ character: 39
+ line: 51
+ name: template keyword with namespace
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-006-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-006-Keyword_assignement].out
new file mode 100644
index 000000000..277931280
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-006-Keyword_assignement].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 6
+ line: 57
+ name: Keyword assignement
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 12
+ line: 57
+ start:
+ character: 6
+ line: 57
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 31
+ line: 59
+ start:
+ character: 25
+ line: 59
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 12
+ line: 60
+ start:
+ character: 6
+ line: 60
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 31
+ line: 63
+ start:
+ character: 25
+ line: 63
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-009-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-009-Keyword_assignement].out
new file mode 100644
index 000000000..177b3d269
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-009-Keyword_assignement].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 9
+ line: 57
+ name: Keyword assignement
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 12
+ line: 57
+ start:
+ character: 6
+ line: 57
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 31
+ line: 59
+ start:
+ character: 25
+ line: 59
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 12
+ line: 60
+ start:
+ character: 6
+ line: 60
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 31
+ line: 63
+ start:
+ character: 25
+ line: 63
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-011-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-011-Keyword_assignement].out
new file mode 100644
index 000000000..a5674ac0e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-011-Keyword_assignement].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 11
+ line: 57
+ name: Keyword assignement
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 12
+ line: 57
+ start:
+ character: 6
+ line: 57
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 31
+ line: 59
+ start:
+ character: 25
+ line: 59
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 12
+ line: 60
+ start:
+ character: 6
+ line: 60
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 31
+ line: 63
+ start:
+ character: 25
+ line: 63
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-006-Keyword_assignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-006-Keyword_assignment_with_equals_sign].out
new file mode 100644
index 000000000..6c5259f98
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-006-Keyword_assignment_with_equals_sign].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 6
+ line: 60
+ name: Keyword assignment with equals sign
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 12
+ line: 57
+ start:
+ character: 6
+ line: 57
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 31
+ line: 59
+ start:
+ character: 25
+ line: 59
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 12
+ line: 60
+ start:
+ character: 6
+ line: 60
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 31
+ line: 63
+ start:
+ character: 25
+ line: 63
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-009-Keyword_assignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-009-Keyword_assignment_with_equals_sign].out
new file mode 100644
index 000000000..78ca7617b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-009-Keyword_assignment_with_equals_sign].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 9
+ line: 60
+ name: Keyword assignment with equals sign
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 12
+ line: 57
+ start:
+ character: 6
+ line: 57
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 31
+ line: 59
+ start:
+ character: 25
+ line: 59
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 12
+ line: 60
+ start:
+ character: 6
+ line: 60
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 31
+ line: 63
+ start:
+ character: 25
+ line: 63
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-011-Keyword_assignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-011-Keyword_assignment_with_equals_sign].out
new file mode 100644
index 000000000..929d6f7f8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-011-Keyword_assignment_with_equals_sign].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 11
+ line: 60
+ name: Keyword assignment with equals sign
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 12
+ line: 57
+ start:
+ character: 6
+ line: 57
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 31
+ line: 59
+ start:
+ character: 25
+ line: 59
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 12
+ line: 60
+ start:
+ character: 6
+ line: 60
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 31
+ line: 63
+ start:
+ character: 25
+ line: 63
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-018-namespace_reference_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-018-namespace_reference_with_alias].out
new file mode 100644
index 000000000..7131a734c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-018-namespace_reference_with_alias].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 18
+ line: 60
+ name: namespace reference with alias
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 24
+ line: 10
+ start:
+ character: 16
+ line: 10
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 70
+ line: 10
+ start:
+ character: 63
+ line: 10
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 25
+ line: 60
+ start:
+ character: 18
+ line: 60
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-021-namespace_reference_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-021-namespace_reference_with_alias].out
new file mode 100644
index 000000000..82f738f0a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-021-namespace_reference_with_alias].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 21
+ line: 60
+ name: namespace reference with alias
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 24
+ line: 10
+ start:
+ character: 16
+ line: 10
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 70
+ line: 10
+ start:
+ character: 63
+ line: 10
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 25
+ line: 60
+ start:
+ character: 18
+ line: 60
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-024-namespace_reference_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-024-namespace_reference_with_alias].out
new file mode 100644
index 000000000..b86513529
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-024-namespace_reference_with_alias].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 24
+ line: 60
+ name: namespace reference with alias
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 24
+ line: 10
+ start:
+ character: 16
+ line: 10
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 70
+ line: 10
+ start:
+ character: 63
+ line: 10
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 25
+ line: 60
+ start:
+ character: 18
+ line: 60
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-004-namespace_reference_with_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-004-namespace_reference_with_resource].out
new file mode 100644
index 000000000..a5ccb1d13
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-004-namespace_reference_with_resource].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 4
+ line: 70
+ name: namespace reference with resource
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 61
+ line: 6
+ start:
+ character: 16
+ line: 6
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 17
+ line: 70
+ start:
+ character: 4
+ line: 70
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-010-namespace_reference_with_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-010-namespace_reference_with_resource].out
new file mode 100644
index 000000000..bf4430439
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-010-namespace_reference_with_resource].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 10
+ line: 70
+ name: namespace reference with resource
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 61
+ line: 6
+ start:
+ character: 16
+ line: 6
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 17
+ line: 70
+ start:
+ character: 4
+ line: 70
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-016-namespace_reference_with_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-016-namespace_reference_with_resource].out
new file mode 100644
index 000000000..87d68c97f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-016-namespace_reference_with_resource].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 16
+ line: 70
+ name: namespace reference with resource
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 61
+ line: 6
+ start:
+ character: 16
+ line: 6
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 17
+ line: 70
+ start:
+ character: 4
+ line: 70
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-041-short_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-041-short_keyword_argument].out
new file mode 100644
index 000000000..4c9fb4100
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-041-short_keyword_argument].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 41
+ line: 70
+ name: short keyword argument
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 42
+ line: 70
+ start:
+ character: 41
+ line: 70
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-048-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-048-keyword_argument_with_spaces].out
new file mode 100644
index 000000000..6e3ce4060
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-048-keyword_argument_with_spaces].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 48
+ line: 70
+ name: keyword argument with spaces
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 59
+ line: 70
+ start:
+ character: 48
+ line: 70
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-053-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-053-keyword_argument_with_spaces].out
new file mode 100644
index 000000000..52d9903e2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-053-keyword_argument_with_spaces].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 53
+ line: 70
+ name: keyword argument with spaces
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 59
+ line: 70
+ start:
+ character: 48
+ line: 70
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-058-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-058-keyword_argument_with_spaces].out
new file mode 100644
index 000000000..6bad289bc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-058-keyword_argument_with_spaces].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 58
+ line: 70
+ name: keyword argument with spaces
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 59
+ line: 70
+ start:
+ character: 48
+ line: 70
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-066-another_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-066-another_keyword_argument].out
new file mode 100644
index 000000000..d80b64a21
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-066-another_keyword_argument].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 66
+ line: 70
+ name: another keyword argument
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 78
+ line: 70
+ start:
+ character: 66
+ line: 70
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-072-another_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-072-another_keyword_argument].out
new file mode 100644
index 000000000..08ed32839
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-072-another_keyword_argument].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 72
+ line: 70
+ name: another keyword argument
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 78
+ line: 70
+ start:
+ character: 66
+ line: 70
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-077-another_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-077-another_keyword_argument].out
new file mode 100644
index 000000000..671f52a8f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-077-another_keyword_argument].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 77
+ line: 70
+ name: another keyword argument
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 78
+ line: 70
+ start:
+ character: 66
+ line: 70
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-004-namespace_reference_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-004-namespace_reference_from_resource].out
new file mode 100644
index 000000000..46314f448
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-004-namespace_reference_from_resource].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 4
+ line: 75
+ name: namespace reference from resource
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 15
+ line: 75
+ start:
+ character: 4
+ line: 75
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-009-namespace_reference_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-009-namespace_reference_from_resource].out
new file mode 100644
index 000000000..b4edab49c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-009-namespace_reference_from_resource].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 9
+ line: 75
+ name: namespace reference from resource
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 15
+ line: 75
+ start:
+ character: 4
+ line: 75
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-014-namespace_reference_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-014-namespace_reference_from_resource].out
new file mode 100644
index 000000000..11976a0f9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-014-namespace_reference_from_resource].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 14
+ line: 75
+ name: namespace reference from resource
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 15
+ line: 75
+ start:
+ character: 4
+ line: 75
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-080-004-a_keyword_with_emoji_1].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-080-004-a_keyword_with_emoji_1].out
new file mode 100644
index 000000000..e2d9ae996
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-080-004-a_keyword_with_emoji_1].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 4
+ line: 80
+ name: a keyword with emoji 1
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 6
+ line: 80
+ start:
+ character: 4
+ line: 80
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 6
+ line: 82
+ start:
+ character: 4
+ line: 82
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-080-005-a_keyword_with_emoji_1].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-080-005-a_keyword_with_emoji_1].out
new file mode 100644
index 000000000..bb2656370
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-080-005-a_keyword_with_emoji_1].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 5
+ line: 80
+ name: a keyword with emoji 1
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 6
+ line: 80
+ start:
+ character: 4
+ line: 80
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 6
+ line: 82
+ start:
+ character: 4
+ line: 82
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-082-004-a_keyword_with_emoji_2].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-082-004-a_keyword_with_emoji_2].out
new file mode 100644
index 000000000..547914f60
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-082-004-a_keyword_with_emoji_2].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 4
+ line: 82
+ name: a keyword with emoji 2
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 6
+ line: 80
+ start:
+ character: 4
+ line: 80
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 6
+ line: 82
+ start:
+ character: 4
+ line: 82
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-082-005-a_keyword_with_emoji_2].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-082-005-a_keyword_with_emoji_2].out
new file mode 100644
index 000000000..f6adf43b8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-082-005-a_keyword_with_emoji_2].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 5
+ line: 82
+ name: a keyword with emoji 2
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 6
+ line: 80
+ start:
+ character: 4
+ line: 80
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 6
+ line: 82
+ start:
+ character: 4
+ line: 82
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-086-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-086-010-variable_in_if].out
new file mode 100644
index 000000000..3f4dcf363
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-086-010-variable_in_if].out
@@ -0,0 +1,68 @@
+data: !GeneratedTestData
+ character: 10
+ line: 86
+ name: variable in if
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 3
+ line: 24
+ start:
+ character: 2
+ line: 24
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 11
+ line: 86
+ start:
+ character: 10
+ line: 86
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 10
+ line: 94
+ start:
+ character: 9
+ line: 94
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 11
+ line: 102
+ start:
+ character: 10
+ line: 102
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 10
+ line: 106
+ start:
+ character: 9
+ line: 106
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 51
+ line: 164
+ start:
+ character: 50
+ line: 164
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 51
+ line: 169
+ start:
+ character: 50
+ line: 169
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-089-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-089-017-variable_in_else_if].out
new file mode 100644
index 000000000..2b0041933
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-089-017-variable_in_else_if].out
@@ -0,0 +1,50 @@
+data: !GeneratedTestData
+ character: 17
+ line: 89
+ name: variable in else if
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 3
+ line: 25
+ start:
+ character: 2
+ line: 25
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 18
+ line: 89
+ start:
+ character: 17
+ line: 89
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 17
+ line: 97
+ start:
+ character: 16
+ line: 97
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 102
+ start:
+ character: 42
+ line: 102
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 106
+ start:
+ character: 39
+ line: 106
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-094-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-094-009-variable_in_if_expression].out
new file mode 100644
index 000000000..cf0f0fbcc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-094-009-variable_in_if_expression].out
@@ -0,0 +1,68 @@
+data: !GeneratedTestData
+ character: 9
+ line: 94
+ name: variable in if expression
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 3
+ line: 24
+ start:
+ character: 2
+ line: 24
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 11
+ line: 86
+ start:
+ character: 10
+ line: 86
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 10
+ line: 94
+ start:
+ character: 9
+ line: 94
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 11
+ line: 102
+ start:
+ character: 10
+ line: 102
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 10
+ line: 106
+ start:
+ character: 9
+ line: 106
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 51
+ line: 164
+ start:
+ character: 50
+ line: 164
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 51
+ line: 169
+ start:
+ character: 50
+ line: 169
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-097-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-097-016-variable_in_else_if_expression].out
new file mode 100644
index 000000000..0d223bd92
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-097-016-variable_in_else_if_expression].out
@@ -0,0 +1,50 @@
+data: !GeneratedTestData
+ character: 16
+ line: 97
+ name: variable in else if expression
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 3
+ line: 25
+ start:
+ character: 2
+ line: 25
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 18
+ line: 89
+ start:
+ character: 17
+ line: 89
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 17
+ line: 97
+ start:
+ character: 16
+ line: 97
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 102
+ start:
+ character: 42
+ line: 102
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 106
+ start:
+ character: 39
+ line: 106
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-102-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-102-010-variable_in_inline_if_expression].out
new file mode 100644
index 000000000..6f90a1031
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-102-010-variable_in_inline_if_expression].out
@@ -0,0 +1,68 @@
+data: !GeneratedTestData
+ character: 10
+ line: 102
+ name: variable in inline if expression
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 3
+ line: 24
+ start:
+ character: 2
+ line: 24
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 11
+ line: 86
+ start:
+ character: 10
+ line: 86
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 10
+ line: 94
+ start:
+ character: 9
+ line: 94
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 11
+ line: 102
+ start:
+ character: 10
+ line: 102
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 10
+ line: 106
+ start:
+ character: 9
+ line: 106
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 51
+ line: 164
+ start:
+ character: 50
+ line: 164
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 51
+ line: 169
+ start:
+ character: 50
+ line: 169
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-102-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-102-042-variable_in_inline_else_if_expression].out
new file mode 100644
index 000000000..92e62eee1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-102-042-variable_in_inline_else_if_expression].out
@@ -0,0 +1,50 @@
+data: !GeneratedTestData
+ character: 42
+ line: 102
+ name: variable in inline else if expression
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 3
+ line: 25
+ start:
+ character: 2
+ line: 25
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 18
+ line: 89
+ start:
+ character: 17
+ line: 89
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 17
+ line: 97
+ start:
+ character: 16
+ line: 97
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 102
+ start:
+ character: 42
+ line: 102
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 106
+ start:
+ character: 39
+ line: 106
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-106-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-106-009-variable_in_inline_if_expression].out
new file mode 100644
index 000000000..ee651833e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-106-009-variable_in_inline_if_expression].out
@@ -0,0 +1,68 @@
+data: !GeneratedTestData
+ character: 9
+ line: 106
+ name: variable in inline if expression
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 3
+ line: 24
+ start:
+ character: 2
+ line: 24
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 11
+ line: 86
+ start:
+ character: 10
+ line: 86
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 10
+ line: 94
+ start:
+ character: 9
+ line: 94
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 11
+ line: 102
+ start:
+ character: 10
+ line: 102
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 10
+ line: 106
+ start:
+ character: 9
+ line: 106
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 51
+ line: 164
+ start:
+ character: 50
+ line: 164
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 51
+ line: 169
+ start:
+ character: 50
+ line: 169
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-106-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-106-039-variable_in_inline_else_if_expression].out
new file mode 100644
index 000000000..c74310b4d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-106-039-variable_in_inline_else_if_expression].out
@@ -0,0 +1,50 @@
+data: !GeneratedTestData
+ character: 39
+ line: 106
+ name: variable in inline else if expression
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 3
+ line: 25
+ start:
+ character: 2
+ line: 25
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 18
+ line: 89
+ start:
+ character: 17
+ line: 89
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 17
+ line: 97
+ start:
+ character: 16
+ line: 97
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 102
+ start:
+ character: 42
+ line: 102
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 106
+ start:
+ character: 39
+ line: 106
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-021-another_argument].out
new file mode 100644
index 000000000..eb026ff48
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-021-another_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 21
+ line: 113
+ name: another argument
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 26
+ line: 113
+ start:
+ character: 21
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 18
+ line: 118
+ start:
+ character: 13
+ line: 118
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-023-another_argument].out
new file mode 100644
index 000000000..2de4c69de
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-023-another_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 23
+ line: 113
+ name: another argument
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 26
+ line: 113
+ start:
+ character: 21
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 18
+ line: 118
+ start:
+ character: 13
+ line: 118
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-025-another_argument].out
new file mode 100644
index 000000000..ca7caa7e1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-025-another_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 25
+ line: 113
+ name: another argument
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 26
+ line: 113
+ start:
+ character: 21
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 18
+ line: 118
+ start:
+ character: 13
+ line: 118
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-030-a_default_value].out
new file mode 100644
index 000000000..cec0e937a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-030-a_default_value].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 30
+ line: 113
+ name: a default value
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-032-a_default_value].out
new file mode 100644
index 000000000..4221c4a1c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-032-a_default_value].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 32
+ line: 113
+ name: a default value
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-034-a_default_value].out
new file mode 100644
index 000000000..92d8e0a91
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-034-a_default_value].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 34
+ line: 113
+ name: a default value
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-116-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-116-013-argument_usage].out
new file mode 100644
index 000000000..3dbfceb3c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-116-013-argument_usage].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 13
+ line: 116
+ name: argument usage
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 13
+ line: 116
+ start:
+ character: 13
+ line: 116
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-116-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-116-014-argument_usage].out
new file mode 100644
index 000000000..2559341fc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-116-014-argument_usage].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 14
+ line: 116
+ name: argument usage
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 14
+ line: 116
+ start:
+ character: 14
+ line: 116
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-013-argument_usage].out
new file mode 100644
index 000000000..68823e869
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-013-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 13
+ line: 118
+ name: argument usage
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 26
+ line: 113
+ start:
+ character: 21
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 18
+ line: 118
+ start:
+ character: 13
+ line: 118
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-015-argument_usage].out
new file mode 100644
index 000000000..06127bb03
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-015-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 15
+ line: 118
+ name: argument usage
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 26
+ line: 113
+ start:
+ character: 21
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 18
+ line: 118
+ start:
+ character: 13
+ line: 118
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-017-argument_usage].out
new file mode 100644
index 000000000..b4479236f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-017-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 17
+ line: 118
+ name: argument usage
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 26
+ line: 113
+ start:
+ character: 21
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 18
+ line: 118
+ start:
+ character: 13
+ line: 118
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-021-an_argument].out
new file mode 100644
index 000000000..4592984a3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-021-an_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 21
+ line: 122
+ name: an argument
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 23
+ line: 122
+ start:
+ character: 21
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 15
+ line: 126
+ start:
+ character: 13
+ line: 126
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-022-an_argument].out
new file mode 100644
index 000000000..eee735fc5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-022-an_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 22
+ line: 122
+ name: an argument
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 23
+ line: 122
+ start:
+ character: 21
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 15
+ line: 126
+ start:
+ character: 13
+ line: 126
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-030-another_argument].out
new file mode 100644
index 000000000..194656ad4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-030-another_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 30
+ line: 122
+ name: another argument
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 35
+ line: 122
+ start:
+ character: 30
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 18
+ line: 128
+ start:
+ character: 13
+ line: 128
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-032-another_argument].out
new file mode 100644
index 000000000..b772f14c2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-032-another_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 32
+ line: 122
+ name: another argument
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 35
+ line: 122
+ start:
+ character: 30
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 18
+ line: 128
+ start:
+ character: 13
+ line: 128
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-034-another_argument].out
new file mode 100644
index 000000000..595dab8c2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-034-another_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 34
+ line: 122
+ name: another argument
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 35
+ line: 122
+ start:
+ character: 30
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 18
+ line: 128
+ start:
+ character: 13
+ line: 128
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-039-a_default_value].out
new file mode 100644
index 000000000..60853ead6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-039-a_default_value].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 39
+ line: 122
+ name: a default value
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-041-a_default_value].out
new file mode 100644
index 000000000..e06514c52
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-041-a_default_value].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 41
+ line: 122
+ name: a default value
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-043-a_default_value].out
new file mode 100644
index 000000000..4c478f919
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-043-a_default_value].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 43
+ line: 122
+ name: a default value
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-126-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-126-013-argument_usage].out
new file mode 100644
index 000000000..7200abe02
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-126-013-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 13
+ line: 126
+ name: argument usage
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 23
+ line: 122
+ start:
+ character: 21
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 15
+ line: 126
+ start:
+ character: 13
+ line: 126
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-126-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-126-014-argument_usage].out
new file mode 100644
index 000000000..dffaaa67d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-126-014-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 14
+ line: 126
+ name: argument usage
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 23
+ line: 122
+ start:
+ character: 21
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 15
+ line: 126
+ start:
+ character: 13
+ line: 126
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-013-argument_usage].out
new file mode 100644
index 000000000..2d99dfccb
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-013-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 13
+ line: 128
+ name: argument usage
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 35
+ line: 122
+ start:
+ character: 30
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 18
+ line: 128
+ start:
+ character: 13
+ line: 128
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-015-argument_usage].out
new file mode 100644
index 000000000..3a9416444
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-015-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 15
+ line: 128
+ name: argument usage
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 35
+ line: 122
+ start:
+ character: 30
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 18
+ line: 128
+ start:
+ character: 13
+ line: 128
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-017-argument_usage].out
new file mode 100644
index 000000000..48f21cd47
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-017-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 17
+ line: 128
+ name: argument usage
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 35
+ line: 122
+ start:
+ character: 30
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 18
+ line: 128
+ start:
+ character: 13
+ line: 128
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-021-an_argument].out
new file mode 100644
index 000000000..a44f4d281
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-021-an_argument].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 21
+ line: 132
+ name: an argument
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 22
+ line: 132
+ start:
+ character: 21
+ line: 132
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 132
+ start:
+ character: 34
+ line: 132
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 14
+ line: 136
+ start:
+ character: 13
+ line: 136
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 25
+ line: 143
+ start:
+ character: 24
+ line: 143
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 144
+ start:
+ character: 23
+ line: 144
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 25
+ line: 146
+ start:
+ character: 24
+ line: 146
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-029-another_argument].out
new file mode 100644
index 000000000..d981a9a5a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-029-another_argument].out
@@ -0,0 +1,50 @@
+data: !GeneratedTestData
+ character: 29
+ line: 132
+ name: another argument
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 30
+ line: 132
+ start:
+ character: 29
+ line: 132
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 48
+ line: 132
+ start:
+ character: 47
+ line: 132
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 14
+ line: 138
+ start:
+ character: 13
+ line: 138
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 52
+ line: 143
+ start:
+ character: 51
+ line: 143
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 48
+ line: 146
+ start:
+ character: 47
+ line: 146
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-034-argument_usage_in_argument].out
new file mode 100644
index 000000000..1d4adfc37
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-034-argument_usage_in_argument].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 34
+ line: 132
+ name: argument usage in argument
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 22
+ line: 132
+ start:
+ character: 21
+ line: 132
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 132
+ start:
+ character: 34
+ line: 132
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 14
+ line: 136
+ start:
+ character: 13
+ line: 136
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 25
+ line: 143
+ start:
+ character: 24
+ line: 143
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 144
+ start:
+ character: 23
+ line: 144
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 25
+ line: 146
+ start:
+ character: 24
+ line: 146
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-136-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-136-013-argument_usage].out
new file mode 100644
index 000000000..07ea91732
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-136-013-argument_usage].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 13
+ line: 136
+ name: argument usage
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 22
+ line: 132
+ start:
+ character: 21
+ line: 132
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 132
+ start:
+ character: 34
+ line: 132
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 14
+ line: 136
+ start:
+ character: 13
+ line: 136
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 25
+ line: 143
+ start:
+ character: 24
+ line: 143
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 144
+ start:
+ character: 23
+ line: 144
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 25
+ line: 146
+ start:
+ character: 24
+ line: 146
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-138-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-138-013-argument_usage].out
new file mode 100644
index 000000000..3974a54fe
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-138-013-argument_usage].out
@@ -0,0 +1,50 @@
+data: !GeneratedTestData
+ character: 13
+ line: 138
+ name: argument usage
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 30
+ line: 132
+ start:
+ character: 29
+ line: 132
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 48
+ line: 132
+ start:
+ character: 47
+ line: 132
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 14
+ line: 138
+ start:
+ character: 13
+ line: 138
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 52
+ line: 143
+ start:
+ character: 51
+ line: 143
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 48
+ line: 146
+ start:
+ character: 47
+ line: 146
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-140-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-140-013-argument_usage].out
new file mode 100644
index 000000000..c953f3f31
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-140-013-argument_usage].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 13
+ line: 140
+ name: argument usage
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 43
+ line: 132
+ start:
+ character: 42
+ line: 132
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 14
+ line: 140
+ start:
+ character: 13
+ line: 140
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 60
+ line: 143
+ start:
+ character: 59
+ line: 143
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 52
+ line: 144
+ start:
+ character: 51
+ line: 144
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 61
+ line: 144
+ start:
+ character: 60
+ line: 144
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 58
+ line: 146
+ start:
+ character: 57
+ line: 146
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-144-023-argument_usage_in_keyword_with_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-144-023-argument_usage_in_keyword_with_expression].out
new file mode 100644
index 000000000..8f476fa77
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-144-023-argument_usage_in_keyword_with_expression].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 23
+ line: 144
+ name: argument usage in keyword with expression
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 22
+ line: 132
+ start:
+ character: 21
+ line: 132
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 132
+ start:
+ character: 34
+ line: 132
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 14
+ line: 136
+ start:
+ character: 13
+ line: 136
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 25
+ line: 143
+ start:
+ character: 24
+ line: 143
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 24
+ line: 144
+ start:
+ character: 23
+ line: 144
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 25
+ line: 146
+ start:
+ character: 24
+ line: 146
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-006-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-006-Embedded_keyword].out
new file mode 100644
index 000000000..c7a56f445
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-006-Embedded_keyword].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 6
+ line: 149
+ name: Embedded keyword
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 12
+ line: 149
+ start:
+ character: 6
+ line: 149
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 25
+ line: 151
+ start:
+ character: 19
+ line: 151
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-009-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-009-Embedded_keyword].out
new file mode 100644
index 000000000..ca474b4b6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-009-Embedded_keyword].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 9
+ line: 149
+ name: Embedded keyword
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 12
+ line: 149
+ start:
+ character: 6
+ line: 149
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 25
+ line: 151
+ start:
+ character: 19
+ line: 151
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-011-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-011-Embedded_keyword].out
new file mode 100644
index 000000000..8593a5cf7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-011-Embedded_keyword].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 11
+ line: 149
+ name: Embedded keyword
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 12
+ line: 149
+ start:
+ character: 6
+ line: 149
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 25
+ line: 151
+ start:
+ character: 19
+ line: 151
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-019-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-019-embedded_argument_usage].out
new file mode 100644
index 000000000..0029bdcec
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-019-embedded_argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 19
+ line: 151
+ name: embedded argument usage
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 12
+ line: 149
+ start:
+ character: 6
+ line: 149
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 25
+ line: 151
+ start:
+ character: 19
+ line: 151
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-022-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-022-embedded_argument_usage].out
new file mode 100644
index 000000000..cfc3064e6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-022-embedded_argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 22
+ line: 151
+ name: embedded argument usage
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 12
+ line: 149
+ start:
+ character: 6
+ line: 149
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 25
+ line: 151
+ start:
+ character: 19
+ line: 151
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-024-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-024-embedded_argument_usage].out
new file mode 100644
index 000000000..70036dcfc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-024-embedded_argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 24
+ line: 151
+ name: embedded argument usage
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 12
+ line: 149
+ start:
+ character: 6
+ line: 149
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 25
+ line: 151
+ start:
+ character: 19
+ line: 151
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-038-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-038-embedded_argument_usage].out
new file mode 100644
index 000000000..d471eb48d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-038-embedded_argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 38
+ line: 151
+ name: embedded argument usage
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 37
+ line: 149
+ start:
+ character: 32
+ line: 149
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 151
+ start:
+ character: 38
+ line: 151
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-040-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-040-embedded_argument_usage].out
new file mode 100644
index 000000000..07aee6f86
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-040-embedded_argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 40
+ line: 151
+ name: embedded argument usage
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 37
+ line: 149
+ start:
+ character: 32
+ line: 149
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 151
+ start:
+ character: 38
+ line: 151
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-042-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-042-embedded_argument_usage].out
new file mode 100644
index 000000000..c5522fe6f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-042-embedded_argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 42
+ line: 151
+ name: embedded argument usage
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 37
+ line: 149
+ start:
+ character: 32
+ line: 149
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 151
+ start:
+ character: 38
+ line: 151
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-051-a_global_var_in_doc].out
new file mode 100644
index 000000000..8a62a1e24
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-051-a_global_var_in_doc].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 51
+ line: 156
+ name: a global var in doc
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-053-a_global_var_in_doc].out
new file mode 100644
index 000000000..7ba953061
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-053-a_global_var_in_doc].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 53
+ line: 156
+ name: a global var in doc
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-055-a_global_var_in_doc].out
new file mode 100644
index 000000000..3932cf2fd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-055-a_global_var_in_doc].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 55
+ line: 156
+ name: a global var in doc
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-064-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-064-an_argument_in_doc].out
new file mode 100644
index 000000000..03a5f7751
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-064-an_argument_in_doc].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 64
+ line: 156
+ name: an argument in doc
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 64
+ line: 156
+ start:
+ character: 64
+ line: 156
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-067-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-067-an_argument_in_doc].out
new file mode 100644
index 000000000..6687a0c40
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-067-an_argument_in_doc].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 67
+ line: 156
+ name: an argument in doc
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 67
+ line: 156
+ start:
+ character: 67
+ line: 156
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-069-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-069-an_argument_in_doc].out
new file mode 100644
index 000000000..1abbdc1c9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-069-an_argument_in_doc].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 69
+ line: 156
+ name: an argument in doc
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 69
+ line: 156
+ start:
+ character: 69
+ line: 156
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-159-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-159-019-an_argument_in_timeout].out
new file mode 100644
index 000000000..497776f01
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-159-019-an_argument_in_timeout].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 19
+ line: 159
+ name: an argument in timeout
+result:
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 25
+ line: 159
+ start:
+ character: 19
+ line: 159
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 27
+ line: 164
+ start:
+ character: 21
+ line: 164
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 19
+ line: 165
+ start:
+ character: 13
+ line: 165
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-016-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-016-an_argument_in_tags].out
new file mode 100644
index 000000000..ca6b68e0d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-016-an_argument_in_tags].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 16
+ line: 161
+ name: an argument in tags
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 16
+ line: 161
+ start:
+ character: 16
+ line: 161
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-019-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-019-an_argument_in_tags].out
new file mode 100644
index 000000000..3c707785f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-019-an_argument_in_tags].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 19
+ line: 161
+ name: an argument in tags
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 19
+ line: 161
+ start:
+ character: 19
+ line: 161
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-021-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-021-an_argument_in_tags].out
new file mode 100644
index 000000000..90bbfc6a3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-021-an_argument_in_tags].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 21
+ line: 161
+ name: an argument in tags
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 21
+ line: 161
+ start:
+ character: 21
+ line: 161
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-028-an_argument_in_tags].out
new file mode 100644
index 000000000..8d3237b60
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-028-an_argument_in_tags].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 28
+ line: 161
+ name: an argument in tags
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-030-an_argument_in_tags].out
new file mode 100644
index 000000000..c7ae9b54b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-030-an_argument_in_tags].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 30
+ line: 161
+ name: an argument in tags
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-032-an_argument_in_tags].out
new file mode 100644
index 000000000..2494f21e3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-032-an_argument_in_tags].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 32
+ line: 161
+ name: an argument in tags
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-051-a_global_var_in_doc].out
new file mode 100644
index 000000000..892157ce9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-051-a_global_var_in_doc].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 51
+ line: 170
+ name: a global var in doc
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-053-a_global_var_in_doc].out
new file mode 100644
index 000000000..943de642e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-053-a_global_var_in_doc].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 53
+ line: 170
+ name: a global var in doc
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-055-a_global_var_in_doc].out
new file mode 100644
index 000000000..c2b7397cc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-055-a_global_var_in_doc].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 55
+ line: 170
+ name: a global var in doc
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-064-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-064-an_argument_in_doc].out
new file mode 100644
index 000000000..4e2c37907
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-064-an_argument_in_doc].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 64
+ line: 170
+ name: an argument in doc
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 64
+ line: 170
+ start:
+ character: 64
+ line: 170
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-067-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-067-an_argument_in_doc].out
new file mode 100644
index 000000000..9565f5114
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-067-an_argument_in_doc].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 67
+ line: 170
+ name: an argument in doc
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 67
+ line: 170
+ start:
+ character: 67
+ line: 170
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-069-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-069-an_argument_in_doc].out
new file mode 100644
index 000000000..58db89395
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-069-an_argument_in_doc].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 69
+ line: 170
+ name: an argument in doc
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 69
+ line: 170
+ start:
+ character: 69
+ line: 170
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-173-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-173-019-an_argument_in_timeout].out
new file mode 100644
index 000000000..ab2fe7ca4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-173-019-an_argument_in_timeout].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 19
+ line: 173
+ name: an argument in timeout
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 27
+ line: 169
+ start:
+ character: 21
+ line: 169
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 25
+ line: 173
+ start:
+ character: 19
+ line: 173
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 19
+ line: 178
+ start:
+ character: 13
+ line: 178
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-016-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-016-an_argument_in_tags].out
new file mode 100644
index 000000000..b0c441d54
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-016-an_argument_in_tags].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 16
+ line: 175
+ name: an argument in tags
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 16
+ line: 175
+ start:
+ character: 16
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-019-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-019-an_argument_in_tags].out
new file mode 100644
index 000000000..54c8521e7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-019-an_argument_in_tags].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 19
+ line: 175
+ name: an argument in tags
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 19
+ line: 175
+ start:
+ character: 19
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-021-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-021-an_argument_in_tags].out
new file mode 100644
index 000000000..9d6737d2d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-021-an_argument_in_tags].out
@@ -0,0 +1,14 @@
+data: !GeneratedTestData
+ character: 21
+ line: 175
+ name: an argument in tags
+result:
+- !DocumentHighlight
+ kind: 1
+ range:
+ end:
+ character: 21
+ line: 175
+ start:
+ character: 21
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-028-an_argument_in_tags].out
new file mode 100644
index 000000000..4ac4ff7e7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-028-an_argument_in_tags].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 28
+ line: 175
+ name: an argument in tags
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-030-an_argument_in_tags].out
new file mode 100644
index 000000000..7af0546ba
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-030-an_argument_in_tags].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 30
+ line: 175
+ name: an argument in tags
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-032-an_argument_in_tags].out
new file mode 100644
index 000000000..efeeb381d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-032-an_argument_in_tags].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 32
+ line: 175
+ name: an argument in tags
+result:
+- !DocumentHighlight
+ kind: 3
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 43
+ line: 30
+ start:
+ character: 38
+ line: 30
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 54
+ line: 32
+ start:
+ character: 49
+ line: 32
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 21
+ line: 34
+ start:
+ character: 16
+ line: 34
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 27
+ line: 36
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 40
+ line: 38
+ start:
+ character: 35
+ line: 38
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 35
+ line: 113
+ start:
+ character: 30
+ line: 113
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 44
+ line: 122
+ start:
+ character: 39
+ line: 122
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 156
+ start:
+ character: 51
+ line: 156
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 161
+ start:
+ character: 28
+ line: 161
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 56
+ line: 170
+ start:
+ character: 51
+ line: 170
+- !DocumentHighlight
+ kind: 2
+ range:
+ end:
+ character: 33
+ line: 175
+ start:
+ character: 28
+ line: 175
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-001-settings_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-001-settings_section].out
new file mode 100644
index 000000000..db91598af
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-001-settings_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 1
+ line: 0
+ name: settings section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Settings
+ range:
+ end:
+ character: 1
+ line: 3
+ start:
+ character: 0
+ line: 0
+ selection_range:
+ end:
+ character: 1
+ line: 3
+ start:
+ character: 0
+ line: 0
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-008-settings_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-008-settings_section].out
new file mode 100644
index 000000000..644e7ea64
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-008-settings_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 8
+ line: 0
+ name: settings section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Settings
+ range:
+ end:
+ character: 1
+ line: 3
+ start:
+ character: 0
+ line: 0
+ selection_range:
+ end:
+ character: 1
+ line: 3
+ start:
+ character: 0
+ line: 0
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-015-settings_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-015-settings_section].out
new file mode 100644
index 000000000..1e26eedaf
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-015-settings_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 15
+ line: 0
+ name: settings section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Settings
+ range:
+ end:
+ character: 1
+ line: 3
+ start:
+ character: 0
+ line: 0
+ selection_range:
+ end:
+ character: 1
+ line: 3
+ start:
+ character: 0
+ line: 0
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-001-variables_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-001-variables_section].out
new file mode 100644
index 000000000..a25c6c918
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-001-variables_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 1
+ line: 4
+ name: variables section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Variables
+ range:
+ end:
+ character: 1
+ line: 8
+ start:
+ character: 0
+ line: 4
+ selection_range:
+ end:
+ character: 1
+ line: 8
+ start:
+ character: 0
+ line: 4
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-008-variables_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-008-variables_section].out
new file mode 100644
index 000000000..a21ab521f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-008-variables_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 8
+ line: 4
+ name: variables section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Variables
+ range:
+ end:
+ character: 1
+ line: 8
+ start:
+ character: 0
+ line: 4
+ selection_range:
+ end:
+ character: 1
+ line: 8
+ start:
+ character: 0
+ line: 4
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-015-variables_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-015-variables_section].out
new file mode 100644
index 000000000..15d0a2668
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-015-variables_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 15
+ line: 4
+ name: variables section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Variables
+ range:
+ end:
+ character: 1
+ line: 8
+ start:
+ character: 0
+ line: 4
+ selection_range:
+ end:
+ character: 1
+ line: 8
+ start:
+ character: 0
+ line: 4
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-001-variable_in_variables_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-001-variable_in_variables_section].out
new file mode 100644
index 000000000..0d935837e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-001-variable_in_variables_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 1
+ line: 6
+ name: variable in variables section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${A_VAR}
+ range:
+ end:
+ character: 8
+ line: 6
+ start:
+ character: 0
+ line: 6
+ selection_range:
+ end:
+ character: 8
+ line: 6
+ start:
+ character: 0
+ line: 6
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-004-variable_in_variables_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-004-variable_in_variables_section].out
new file mode 100644
index 000000000..a07b34fdf
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-004-variable_in_variables_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 4
+ line: 6
+ name: variable in variables section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${A_VAR}
+ range:
+ end:
+ character: 8
+ line: 6
+ start:
+ character: 0
+ line: 6
+ selection_range:
+ end:
+ character: 8
+ line: 6
+ start:
+ character: 0
+ line: 6
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-007-variable_in_variables_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-007-variable_in_variables_section].out
new file mode 100644
index 000000000..6250179c6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-007-variable_in_variables_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 7
+ line: 6
+ name: variable in variables section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${A_VAR}
+ range:
+ end:
+ character: 8
+ line: 6
+ start:
+ character: 0
+ line: 6
+ selection_range:
+ end:
+ character: 8
+ line: 6
+ start:
+ character: 0
+ line: 6
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-001-test_cases].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-001-test_cases].out
new file mode 100644
index 000000000..3ad943d1b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-001-test_cases].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 1
+ line: 9
+ name: test cases
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Test Cases
+ range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 9
+ selection_range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 9
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-009-test_cases].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-009-test_cases].out
new file mode 100644
index 000000000..1052b0fe4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-009-test_cases].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 9
+ line: 9
+ name: test cases
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Test Cases
+ range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 9
+ selection_range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 9
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-017-test_cases].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-017-test_cases].out
new file mode 100644
index 000000000..2b7190385
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-017-test_cases].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 17
+ line: 9
+ name: test cases
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Test Cases
+ range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 9
+ selection_range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 9
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-001-testcase].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-001-testcase].out
new file mode 100644
index 000000000..3802968c6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-001-testcase].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 1
+ line: 11
+ name: testcase
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 5
+ name: first
+ range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 11
+ selection_range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 11
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-003-testcase].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-003-testcase].out
new file mode 100644
index 000000000..1948c572b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-003-testcase].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 3
+ line: 11
+ name: testcase
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 5
+ name: first
+ range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 11
+ selection_range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 11
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-004-testcase].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-004-testcase].out
new file mode 100644
index 000000000..c3e1852b2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-004-testcase].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 4
+ line: 11
+ name: testcase
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 5
+ name: first
+ range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 11
+ selection_range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 11
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-006-keyword_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-006-keyword_assignment].out
new file mode 100644
index 000000000..53d1860c8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-006-keyword_assignment].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 6
+ line: 13
+ name: keyword assignment
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${kw_result}
+ range:
+ end:
+ character: 16
+ line: 13
+ start:
+ character: 4
+ line: 13
+ selection_range:
+ end:
+ character: 16
+ line: 13
+ start:
+ character: 4
+ line: 13
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-010-keyword_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-010-keyword_assignment].out
new file mode 100644
index 000000000..a7d401227
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-010-keyword_assignment].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 10
+ line: 13
+ name: keyword assignment
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${kw_result}
+ range:
+ end:
+ character: 16
+ line: 13
+ start:
+ character: 4
+ line: 13
+ selection_range:
+ end:
+ character: 16
+ line: 13
+ start:
+ character: 4
+ line: 13
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-014-keyword_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-014-keyword_assignment].out
new file mode 100644
index 000000000..744903221
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-014-keyword_assignment].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 14
+ line: 13
+ name: keyword assignment
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${kw_result}
+ range:
+ end:
+ character: 16
+ line: 13
+ start:
+ character: 4
+ line: 13
+ selection_range:
+ end:
+ character: 16
+ line: 13
+ start:
+ character: 4
+ line: 13
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-006-keyword_assignment_allready_defined].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-006-keyword_assignment_allready_defined].out
new file mode 100644
index 000000000..132ab42a4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-006-keyword_assignment_allready_defined].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 6
+ line: 16
+ name: keyword assignment allready defined
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 5
+ name: first
+ range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 11
+ selection_range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 11
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-010-keyword_assignment_allready_defined].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-010-keyword_assignment_allready_defined].out
new file mode 100644
index 000000000..acdee3054
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-010-keyword_assignment_allready_defined].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 10
+ line: 16
+ name: keyword assignment allready defined
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 5
+ name: first
+ range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 11
+ selection_range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 11
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-014-keyword_assignment_allready_defined].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-014-keyword_assignment_allready_defined].out
new file mode 100644
index 000000000..9aef4fdba
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-014-keyword_assignment_allready_defined].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 14
+ line: 16
+ name: keyword assignment allready defined
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 5
+ name: first
+ range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 11
+ selection_range:
+ end:
+ character: 1
+ line: 33
+ start:
+ character: 0
+ line: 11
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-022-multiple_keyword_assigns].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-022-multiple_keyword_assigns].out
new file mode 100644
index 000000000..575fa7bf7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-022-multiple_keyword_assigns].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 22
+ line: 16
+ name: multiple keyword assigns
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${kw_result1}
+ range:
+ end:
+ character: 33
+ line: 16
+ start:
+ character: 20
+ line: 16
+ selection_range:
+ end:
+ character: 33
+ line: 16
+ start:
+ character: 20
+ line: 16
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-027-multiple_keyword_assigns].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-027-multiple_keyword_assigns].out
new file mode 100644
index 000000000..e7597bb49
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-027-multiple_keyword_assigns].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 27
+ line: 16
+ name: multiple keyword assigns
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${kw_result1}
+ range:
+ end:
+ character: 33
+ line: 16
+ start:
+ character: 20
+ line: 16
+ selection_range:
+ end:
+ character: 33
+ line: 16
+ start:
+ character: 20
+ line: 16
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-031-multiple_keyword_assigns].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-031-multiple_keyword_assigns].out
new file mode 100644
index 000000000..aff6a7110
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-031-multiple_keyword_assigns].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 31
+ line: 16
+ name: multiple keyword assigns
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${kw_result1}
+ range:
+ end:
+ character: 33
+ line: 16
+ start:
+ character: 20
+ line: 16
+ selection_range:
+ end:
+ character: 33
+ line: 16
+ start:
+ character: 20
+ line: 16
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-011-local_var_RF_7].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-011-local_var_RF_7].out
new file mode 100644
index 000000000..793f98e7f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-011-local_var_RF_7].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 11
+ line: 19
+ name: local var RF 7
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${local_var}
+ range:
+ end:
+ character: 21
+ line: 19
+ start:
+ character: 9
+ line: 19
+ selection_range:
+ end:
+ character: 21
+ line: 19
+ start:
+ character: 9
+ line: 19
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-015-local_var_RF_7].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-015-local_var_RF_7].out
new file mode 100644
index 000000000..342f7ff94
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-015-local_var_RF_7].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 15
+ line: 19
+ name: local var RF 7
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${local_var}
+ range:
+ end:
+ character: 21
+ line: 19
+ start:
+ character: 9
+ line: 19
+ selection_range:
+ end:
+ character: 21
+ line: 19
+ start:
+ character: 9
+ line: 19
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-019-local_var_RF_7].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-019-local_var_RF_7].out
new file mode 100644
index 000000000..e2ee751b2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-019-local_var_RF_7].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 19
+ line: 19
+ name: local var RF 7
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${local_var}
+ range:
+ end:
+ character: 21
+ line: 19
+ start:
+ character: 9
+ line: 19
+ selection_range:
+ end:
+ character: 21
+ line: 19
+ start:
+ character: 9
+ line: 19
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-011-loop_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-011-loop_var].out
new file mode 100644
index 000000000..17bcfd3f4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-011-loop_var].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 11
+ line: 21
+ name: loop var
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${loop_var}
+ range:
+ end:
+ character: 20
+ line: 21
+ start:
+ character: 9
+ line: 21
+ selection_range:
+ end:
+ character: 20
+ line: 21
+ start:
+ character: 9
+ line: 21
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-015-loop_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-015-loop_var].out
new file mode 100644
index 000000000..3e5a3fa20
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-015-loop_var].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 15
+ line: 21
+ name: loop var
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${loop_var}
+ range:
+ end:
+ character: 20
+ line: 21
+ start:
+ character: 9
+ line: 21
+ selection_range:
+ end:
+ character: 20
+ line: 21
+ start:
+ character: 9
+ line: 21
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-018-loop_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-018-loop_var].out
new file mode 100644
index 000000000..242c210ba
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-018-loop_var].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 18
+ line: 21
+ name: loop var
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${loop_var}
+ range:
+ end:
+ character: 20
+ line: 21
+ start:
+ character: 9
+ line: 21
+ selection_range:
+ end:
+ character: 20
+ line: 21
+ start:
+ character: 9
+ line: 21
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-031-exception_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-031-exception_variable].out
new file mode 100644
index 000000000..b98fbd856
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-031-exception_variable].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 31
+ line: 28
+ name: exception variable
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${exc}
+ range:
+ end:
+ character: 35
+ line: 28
+ start:
+ character: 29
+ line: 28
+ selection_range:
+ end:
+ character: 35
+ line: 28
+ start:
+ character: 29
+ line: 28
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-032-exception_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-032-exception_variable].out
new file mode 100644
index 000000000..d73042bf2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-032-exception_variable].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 32
+ line: 28
+ name: exception variable
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${exc}
+ range:
+ end:
+ character: 35
+ line: 28
+ start:
+ character: 29
+ line: 28
+ selection_range:
+ end:
+ character: 35
+ line: 28
+ start:
+ character: 29
+ line: 28
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-033-exception_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-033-exception_variable].out
new file mode 100644
index 000000000..6c6785fc8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-033-exception_variable].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 33
+ line: 28
+ name: exception variable
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${exc}
+ range:
+ end:
+ character: 35
+ line: 28
+ start:
+ character: 29
+ line: 28
+ selection_range:
+ end:
+ character: 35
+ line: 28
+ start:
+ character: 29
+ line: 28
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-001-comments_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-001-comments_section].out
new file mode 100644
index 000000000..9faff5dd8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-001-comments_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 1
+ line: 34
+ name: comments section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Comments
+ range:
+ end:
+ character: 1
+ line: 36
+ start:
+ character: 0
+ line: 34
+ selection_range:
+ end:
+ character: 1
+ line: 36
+ start:
+ character: 0
+ line: 34
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-008-comments_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-008-comments_section].out
new file mode 100644
index 000000000..1cf9ac4ce
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-008-comments_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 8
+ line: 34
+ name: comments section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Comments
+ range:
+ end:
+ character: 1
+ line: 36
+ start:
+ character: 0
+ line: 34
+ selection_range:
+ end:
+ character: 1
+ line: 36
+ start:
+ character: 0
+ line: 34
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-015-comments_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-015-comments_section].out
new file mode 100644
index 000000000..04a8470ba
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-015-comments_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 15
+ line: 34
+ name: comments section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Comments
+ range:
+ end:
+ character: 1
+ line: 36
+ start:
+ character: 0
+ line: 34
+ selection_range:
+ end:
+ character: 1
+ line: 36
+ start:
+ character: 0
+ line: 34
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-001-keywords_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-001-keywords_section].out
new file mode 100644
index 000000000..216da3916
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-001-keywords_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 1
+ line: 37
+ name: keywords section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Keywords
+ range:
+ end:
+ character: 56
+ line: 43
+ start:
+ character: 0
+ line: 37
+ selection_range:
+ end:
+ character: 56
+ line: 43
+ start:
+ character: 0
+ line: 37
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-008-keywords_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-008-keywords_section].out
new file mode 100644
index 000000000..bd3738cf7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-008-keywords_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 8
+ line: 37
+ name: keywords section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Keywords
+ range:
+ end:
+ character: 56
+ line: 43
+ start:
+ character: 0
+ line: 37
+ selection_range:
+ end:
+ character: 56
+ line: 43
+ start:
+ character: 0
+ line: 37
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-015-keywords_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-015-keywords_section].out
new file mode 100644
index 000000000..a1275fee4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-015-keywords_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 15
+ line: 37
+ name: keywords section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Keywords
+ range:
+ end:
+ character: 56
+ line: 43
+ start:
+ character: 0
+ line: 37
+ selection_range:
+ end:
+ character: 56
+ line: 43
+ start:
+ character: 0
+ line: 37
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-001-keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-001-keyword].out
new file mode 100644
index 000000000..9018bbe65
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-001-keyword].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 1
+ line: 39
+ name: keyword
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 12
+ name: a keywords
+ range:
+ end:
+ character: 56
+ line: 43
+ start:
+ character: 0
+ line: 39
+ selection_range:
+ end:
+ character: 56
+ line: 43
+ start:
+ character: 0
+ line: 39
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-005-keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-005-keyword].out
new file mode 100644
index 000000000..49ccc56f0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-005-keyword].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 5
+ line: 39
+ name: keyword
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 12
+ name: a keywords
+ range:
+ end:
+ character: 56
+ line: 43
+ start:
+ character: 0
+ line: 39
+ selection_range:
+ end:
+ character: 56
+ line: 43
+ start:
+ character: 0
+ line: 39
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-009-keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-009-keyword].out
new file mode 100644
index 000000000..db476fb72
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-009-keyword].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 9
+ line: 39
+ name: keyword
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 12
+ name: a keywords
+ range:
+ end:
+ character: 56
+ line: 43
+ start:
+ character: 0
+ line: 39
+ selection_range:
+ end:
+ character: 56
+ line: 43
+ start:
+ character: 0
+ line: 39
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-021-first_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-021-first_argument].out
new file mode 100644
index 000000000..6be9a424b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-021-first_argument].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 21
+ line: 41
+ name: first argument
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${first}
+ range:
+ end:
+ character: 27
+ line: 41
+ start:
+ character: 19
+ line: 41
+ selection_range:
+ end:
+ character: 27
+ line: 41
+ start:
+ character: 19
+ line: 41
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-023-first_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-023-first_argument].out
new file mode 100644
index 000000000..7857dd449
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-023-first_argument].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 23
+ line: 41
+ name: first argument
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${first}
+ range:
+ end:
+ character: 27
+ line: 41
+ start:
+ character: 19
+ line: 41
+ selection_range:
+ end:
+ character: 27
+ line: 41
+ start:
+ character: 19
+ line: 41
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-025-first_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-025-first_argument].out
new file mode 100644
index 000000000..700a84558
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-025-first_argument].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 25
+ line: 41
+ name: first argument
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${first}
+ range:
+ end:
+ character: 27
+ line: 41
+ start:
+ character: 19
+ line: 41
+ selection_range:
+ end:
+ character: 27
+ line: 41
+ start:
+ character: 19
+ line: 41
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-033-second_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-033-second_argument].out
new file mode 100644
index 000000000..bcf810bc6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-033-second_argument].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 33
+ line: 41
+ name: second argument
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${second}
+ range:
+ end:
+ character: 40
+ line: 41
+ start:
+ character: 31
+ line: 41
+ selection_range:
+ end:
+ character: 40
+ line: 41
+ start:
+ character: 31
+ line: 41
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-036-second_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-036-second_argument].out
new file mode 100644
index 000000000..ed3b511b3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-036-second_argument].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 36
+ line: 41
+ name: second argument
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${second}
+ range:
+ end:
+ character: 40
+ line: 41
+ start:
+ character: 31
+ line: 41
+ selection_range:
+ end:
+ character: 40
+ line: 41
+ start:
+ character: 31
+ line: 41
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-038-second_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-038-second_argument].out
new file mode 100644
index 000000000..76592b6ed
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-038-second_argument].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 38
+ line: 41
+ name: second argument
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${second}
+ range:
+ end:
+ character: 40
+ line: 41
+ start:
+ character: 31
+ line: 41
+ selection_range:
+ end:
+ character: 40
+ line: 41
+ start:
+ character: 31
+ line: 41
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-001-another_keywords_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-001-another_keywords_section].out
new file mode 100644
index 000000000..ec06ada00
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-001-another_keywords_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 1
+ line: 44
+ name: another keywords section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Keywords
+ range:
+ end:
+ character: 1
+ line: 50
+ start:
+ character: 0
+ line: 44
+ selection_range:
+ end:
+ character: 1
+ line: 50
+ start:
+ character: 0
+ line: 44
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-008-another_keywords_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-008-another_keywords_section].out
new file mode 100644
index 000000000..df3e9a113
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-008-another_keywords_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 8
+ line: 44
+ name: another keywords section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Keywords
+ range:
+ end:
+ character: 1
+ line: 50
+ start:
+ character: 0
+ line: 44
+ selection_range:
+ end:
+ character: 1
+ line: 50
+ start:
+ character: 0
+ line: 44
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-015-another_keywords_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-015-another_keywords_section].out
new file mode 100644
index 000000000..49f96a045
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-015-another_keywords_section].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 15
+ line: 44
+ name: another keywords section
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Keywords
+ range:
+ end:
+ character: 1
+ line: 50
+ start:
+ character: 0
+ line: 44
+ selection_range:
+ end:
+ character: 1
+ line: 50
+ start:
+ character: 0
+ line: 44
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-001-another_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-001-another_keyword].out
new file mode 100644
index 000000000..47cef82c1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-001-another_keyword].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 1
+ line: 46
+ name: another keyword
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 12
+ name: another keyword
+ range:
+ end:
+ character: 1
+ line: 50
+ start:
+ character: 0
+ line: 46
+ selection_range:
+ end:
+ character: 1
+ line: 50
+ start:
+ character: 0
+ line: 46
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-008-another_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-008-another_keyword].out
new file mode 100644
index 000000000..e0b3d5841
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-008-another_keyword].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 8
+ line: 46
+ name: another keyword
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 12
+ name: another keyword
+ range:
+ end:
+ character: 1
+ line: 50
+ start:
+ character: 0
+ line: 46
+ selection_range:
+ end:
+ character: 1
+ line: 50
+ start:
+ character: 0
+ line: 46
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-014-another_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-014-another_keyword].out
new file mode 100644
index 000000000..959e6333b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-014-another_keyword].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 14
+ line: 46
+ name: another keyword
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 12
+ name: another keyword
+ range:
+ end:
+ character: 1
+ line: 50
+ start:
+ character: 0
+ line: 46
+ selection_range:
+ end:
+ character: 1
+ line: 50
+ start:
+ character: 0
+ line: 46
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-001-unreachable_test].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-001-unreachable_test].out
new file mode 100644
index 000000000..1e7754d8b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-001-unreachable_test].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 1
+ line: 52
+ name: unreachable test
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Test Cases
+ range:
+ end:
+ character: 1
+ line: 55
+ start:
+ character: 0
+ line: 51
+ selection_range:
+ end:
+ character: 1
+ line: 55
+ start:
+ character: 0
+ line: 51
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-002-unreachable_test].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-002-unreachable_test].out
new file mode 100644
index 000000000..f46c27460
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-002-unreachable_test].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 2
+ line: 52
+ name: unreachable test
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Test Cases
+ range:
+ end:
+ character: 1
+ line: 55
+ start:
+ character: 0
+ line: 51
+ selection_range:
+ end:
+ character: 1
+ line: 55
+ start:
+ character: 0
+ line: 51
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-003-unreachable_test].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-003-unreachable_test].out
new file mode 100644
index 000000000..25b3cbffe
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-003-unreachable_test].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 3
+ line: 52
+ name: unreachable test
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Test Cases
+ range:
+ end:
+ character: 1
+ line: 55
+ start:
+ character: 0
+ line: 51
+ selection_range:
+ end:
+ character: 1
+ line: 55
+ start:
+ character: 0
+ line: 51
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-001-unreachable_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-001-unreachable_keyword].out
new file mode 100644
index 000000000..ce528ed41
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-001-unreachable_keyword].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 1
+ line: 57
+ name: unreachable keyword
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Keywords
+ range:
+ end:
+ character: 1
+ line: 61
+ start:
+ character: 0
+ line: 56
+ selection_range:
+ end:
+ character: 1
+ line: 61
+ start:
+ character: 0
+ line: 56
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-002-unreachable_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-002-unreachable_keyword].out
new file mode 100644
index 000000000..5a40a0a49
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-002-unreachable_keyword].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 2
+ line: 57
+ name: unreachable keyword
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Keywords
+ range:
+ end:
+ character: 1
+ line: 61
+ start:
+ character: 0
+ line: 56
+ selection_range:
+ end:
+ character: 1
+ line: 61
+ start:
+ character: 0
+ line: 56
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-003-unreachable_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-003-unreachable_keyword].out
new file mode 100644
index 000000000..0644acb80
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-003-unreachable_keyword].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 3
+ line: 57
+ name: unreachable keyword
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 2
+ name: Keywords
+ range:
+ end:
+ character: 1
+ line: 61
+ start:
+ character: 0
+ line: 56
+ selection_range:
+ end:
+ character: 1
+ line: 61
+ start:
+ character: 0
+ line: 56
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-011-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-011-variable_with_space_and_equal_sign].out
new file mode 100644
index 000000000..0a5deace8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-011-variable_with_space_and_equal_sign].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 11
+ line: 64
+ name: variable with space and equal sign
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${var 1}=
+ range:
+ end:
+ character: 18
+ line: 64
+ start:
+ character: 9
+ line: 64
+ selection_range:
+ end:
+ character: 18
+ line: 64
+ start:
+ character: 9
+ line: 64
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-013-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-013-variable_with_space_and_equal_sign].out
new file mode 100644
index 000000000..42fbdf6ce
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-013-variable_with_space_and_equal_sign].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 13
+ line: 64
+ name: variable with space and equal sign
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${var 1}=
+ range:
+ end:
+ character: 18
+ line: 64
+ start:
+ character: 9
+ line: 64
+ selection_range:
+ end:
+ character: 18
+ line: 64
+ start:
+ character: 9
+ line: 64
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-015-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-015-variable_with_space_and_equal_sign].out
new file mode 100644
index 000000000..314d4be00
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-015-variable_with_space_and_equal_sign].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 15
+ line: 64
+ name: variable with space and equal sign
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${var 1}=
+ range:
+ end:
+ character: 18
+ line: 64
+ start:
+ character: 9
+ line: 64
+ selection_range:
+ end:
+ character: 18
+ line: 64
+ start:
+ character: 9
+ line: 64
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-011-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-011-variable_with_space_and_equal_sign].out
new file mode 100644
index 000000000..a3a7da2d9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-011-variable_with_space_and_equal_sign].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 11
+ line: 66
+ name: variable with space and equal sign
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${var 2} =
+ range:
+ end:
+ character: 19
+ line: 66
+ start:
+ character: 9
+ line: 66
+ selection_range:
+ end:
+ character: 19
+ line: 66
+ start:
+ character: 9
+ line: 66
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-013-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-013-variable_with_space_and_equal_sign].out
new file mode 100644
index 000000000..57340c762
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-013-variable_with_space_and_equal_sign].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 13
+ line: 66
+ name: variable with space and equal sign
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${var 2} =
+ range:
+ end:
+ character: 19
+ line: 66
+ start:
+ character: 9
+ line: 66
+ selection_range:
+ end:
+ character: 19
+ line: 66
+ start:
+ character: 9
+ line: 66
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-015-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-015-variable_with_space_and_equal_sign].out
new file mode 100644
index 000000000..820ba80ac
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-015-variable_with_space_and_equal_sign].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 15
+ line: 66
+ name: variable with space and equal sign
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${var 2} =
+ range:
+ end:
+ character: 19
+ line: 66
+ start:
+ character: 9
+ line: 66
+ selection_range:
+ end:
+ character: 19
+ line: 66
+ start:
+ character: 9
+ line: 66
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-006-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-006-variable_with_space_and_equal_sign].out
new file mode 100644
index 000000000..b63cdd9a9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-006-variable_with_space_and_equal_sign].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 6
+ line: 68
+ name: variable with space and equal sign
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${var 1}
+ range:
+ end:
+ character: 12
+ line: 68
+ start:
+ character: 4
+ line: 68
+ selection_range:
+ end:
+ character: 12
+ line: 68
+ start:
+ character: 4
+ line: 68
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-008-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-008-variable_with_space_and_equal_sign].out
new file mode 100644
index 000000000..54d37321c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-008-variable_with_space_and_equal_sign].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 8
+ line: 68
+ name: variable with space and equal sign
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${var 1}
+ range:
+ end:
+ character: 12
+ line: 68
+ start:
+ character: 4
+ line: 68
+ selection_range:
+ end:
+ character: 12
+ line: 68
+ start:
+ character: 4
+ line: 68
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-010-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-010-variable_with_space_and_equal_sign].out
new file mode 100644
index 000000000..b418b8053
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-010-variable_with_space_and_equal_sign].out
@@ -0,0 +1,25 @@
+data: !GeneratedTestData
+ character: 10
+ line: 68
+ name: variable with space and equal sign
+result: !DocumentSymbol
+ children: []
+ deprecated: null
+ detail: null
+ kind: 13
+ name: ${var 1}
+ range:
+ end:
+ character: 12
+ line: 68
+ start:
+ character: 4
+ line: 68
+ selection_range:
+ end:
+ character: 12
+ line: 68
+ start:
+ character: 4
+ line: 68
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-000-001-Settings_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-000-001-Settings_start].out
new file mode 100644
index 000000000..9affcbcca
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-000-001-Settings_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 0
+ name: Settings start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 1
+ end_line: 4
+ kind: section
+ start_character: 0
+ start_line: 0
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-005-001-Settings_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-005-001-Settings_end].out
new file mode 100644
index 000000000..78de4053d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-005-001-Settings_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 5
+ name: Settings end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 1
+ end_line: 4
+ kind: section
+ start_character: 0
+ start_line: 0
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-005-001-Test_Cases_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-005-001-Test_Cases_start].out
new file mode 100644
index 000000000..94c0457d4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-005-001-Test_Cases_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 5
+ name: Test Cases start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 1
+ end_line: 35
+ kind: section
+ start_character: 0
+ start_line: 5
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-008-001-Testcase_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-008-001-Testcase_start].out
new file mode 100644
index 000000000..453e10816
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-008-001-Testcase_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 8
+ name: Testcase start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 1
+ end_line: 30
+ kind: testcase
+ start_character: 0
+ start_line: 8
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-012-001-For_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-012-001-For_start].out
new file mode 100644
index 000000000..c85325235
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-012-001-For_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 12
+ name: For start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 8
+ end_line: 28
+ kind: for
+ start_character: 0
+ start_line: 12
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-014-001-If_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-014-001-If_start].out
new file mode 100644
index 000000000..7e2f967fb
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-014-001-If_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 14
+ name: If start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 25
+ end_line: 16
+ kind: if
+ start_character: 0
+ start_line: 14
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-017-001-If_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-017-001-If_start].out
new file mode 100644
index 000000000..02aac3859
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-017-001-If_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 17
+ name: If start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 25
+ end_line: 19
+ kind: if
+ start_character: 0
+ start_line: 17
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-020-001-If_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-020-001-If_start].out
new file mode 100644
index 000000000..1768a0dc0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-020-001-If_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 20
+ name: If start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 12
+ end_line: 23
+ kind: if
+ start_character: 0
+ start_line: 20
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-023-001-If_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-023-001-If_end].out
new file mode 100644
index 000000000..5798e2304
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-023-001-If_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 23
+ name: If end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 12
+ end_line: 23
+ kind: if
+ start_character: 0
+ start_line: 20
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-028-001-For_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-028-001-For_end].out
new file mode 100644
index 000000000..7c28c367d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-028-001-For_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 28
+ name: For end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 8
+ end_line: 28
+ kind: for
+ start_character: 0
+ start_line: 12
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-031-001-Testcase_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-031-001-Testcase_end].out
new file mode 100644
index 000000000..e0eb9b7db
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-031-001-Testcase_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 31
+ name: Testcase end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 1
+ end_line: 30
+ kind: testcase
+ start_character: 0
+ start_line: 8
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-031-001-Testcase_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-031-001-Testcase_start].out
new file mode 100644
index 000000000..078bd5681
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-031-001-Testcase_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 31
+ name: Testcase start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 1
+ end_line: 35
+ kind: testcase
+ start_character: 0
+ start_line: 31
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-036-001-Test_Cases_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-036-001-Test_Cases_end].out
new file mode 100644
index 000000000..2a21cf656
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-036-001-Test_Cases_end].out
@@ -0,0 +1,19 @@
+data: !GeneratedTestData
+ character: 1
+ line: 36
+ name: Test Cases end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 1
+ end_line: 35
+ kind: section
+ start_character: 0
+ start_line: 5
+- !FoldingRange
+ collapsed_text: null
+ end_character: 1
+ end_line: 35
+ kind: testcase
+ start_character: 0
+ start_line: 31
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-036-001-Testcase_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-036-001-Testcase_end].out
new file mode 100644
index 000000000..d1d51a08d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-036-001-Testcase_end].out
@@ -0,0 +1,19 @@
+data: !GeneratedTestData
+ character: 1
+ line: 36
+ name: Testcase end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 1
+ end_line: 35
+ kind: section
+ start_character: 0
+ start_line: 5
+- !FoldingRange
+ collapsed_text: null
+ end_character: 1
+ end_line: 35
+ kind: testcase
+ start_character: 0
+ start_line: 31
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-039-001-Keyword_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-039-001-Keyword_start].out
new file mode 100644
index 000000000..0a0400d0e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-039-001-Keyword_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 39
+ name: Keyword start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 1
+ end_line: 42
+ kind: keyword
+ start_character: 0
+ start_line: 39
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-043-001-Comment_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-043-001-Comment_start].out
new file mode 100644
index 000000000..d3db608f0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-043-001-Comment_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 43
+ name: Comment start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 1
+ end_line: 49
+ kind: comment
+ start_character: 0
+ start_line: 43
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-043-001-Keyword_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-043-001-Keyword_end].out
new file mode 100644
index 000000000..d35e9d23c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-043-001-Keyword_end].out
@@ -0,0 +1,19 @@
+data: !GeneratedTestData
+ character: 1
+ line: 43
+ name: Keyword end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 1
+ end_line: 42
+ kind: section
+ start_character: 0
+ start_line: 36
+- !FoldingRange
+ collapsed_text: null
+ end_character: 1
+ end_line: 42
+ kind: keyword
+ start_character: 0
+ start_line: 39
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-050-001-Comment_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-050-001-Comment_end].out
new file mode 100644
index 000000000..4a15d479f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-050-001-Comment_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 50
+ name: Comment end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 1
+ end_line: 49
+ kind: comment
+ start_character: 0
+ start_line: 43
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-054-001-simple_if_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-054-001-simple_if_start].out
new file mode 100644
index 000000000..e69dfd43f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-054-001-simple_if_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 54
+ name: simple if start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 8
+ end_line: 57
+ kind: if
+ start_character: 0
+ start_line: 54
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-057-001-simple_if_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-057-001-simple_if_end].out
new file mode 100644
index 000000000..b557b7503
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-057-001-simple_if_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 57
+ name: simple if end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 8
+ end_line: 57
+ kind: if
+ start_character: 0
+ start_line: 54
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-060-001-complex_if_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-060-001-complex_if_start].out
new file mode 100644
index 000000000..01e14a421
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-060-001-complex_if_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 60
+ name: complex if start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 21
+ end_line: 62
+ kind: if
+ start_character: 0
+ start_line: 60
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-063-001-complex_else_if_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-063-001-complex_else_if_start].out
new file mode 100644
index 000000000..ca0a693d2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-063-001-complex_else_if_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 63
+ name: complex else if start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 12
+ end_line: 70
+ kind: if
+ start_character: 0
+ start_line: 63
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-071-001-complex_second_else_if_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-071-001-complex_second_else_if_start].out
new file mode 100644
index 000000000..716f94a48
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-071-001-complex_second_else_if_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 71
+ name: complex second else if start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 21
+ end_line: 73
+ kind: if
+ start_character: 0
+ start_line: 71
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-074-001-else_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-074-001-else_start].out
new file mode 100644
index 000000000..93163416b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-074-001-else_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 74
+ name: else start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 8
+ end_line: 77
+ kind: if
+ start_character: 0
+ start_line: 74
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-077-001-else_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-077-001-else_end].out
new file mode 100644
index 000000000..eefd8a8b9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-077-001-else_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 77
+ name: else end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 8
+ end_line: 77
+ kind: if
+ start_character: 0
+ start_line: 74
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-082-001-while_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-082-001-while_start].out
new file mode 100644
index 000000000..85a114ac5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-082-001-while_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 82
+ name: while start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 8
+ end_line: 86
+ kind: while
+ start_character: 0
+ start_line: 82
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-086-001-while_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-086-001-while_end].out
new file mode 100644
index 000000000..cd0b9f516
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-086-001-while_end].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 1
+ line: 86
+ name: while end
+result: []
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-093-001-try_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-093-001-try_start].out
new file mode 100644
index 000000000..c1283d722
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-093-001-try_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 93
+ name: try start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 21
+ end_line: 95
+ kind: try
+ start_character: 0
+ start_line: 93
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-096-001-except_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-096-001-except_start].out
new file mode 100644
index 000000000..387c1e77e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-096-001-except_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 96
+ name: except start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 21
+ end_line: 98
+ kind: try
+ start_character: 0
+ start_line: 96
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-099-001-try_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-099-001-try_end].out
new file mode 100644
index 000000000..da34858bb
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-099-001-try_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 99
+ name: try end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 21
+ end_line: 98
+ kind: try
+ start_character: 0
+ start_line: 96
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-102-001-try_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-102-001-try_start].out
new file mode 100644
index 000000000..4a8713ebe
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-102-001-try_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 102
+ name: try start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 21
+ end_line: 104
+ kind: try
+ start_character: 0
+ start_line: 102
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-105-001-finally_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-105-001-finally_start].out
new file mode 100644
index 000000000..69313f1b4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-105-001-finally_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 105
+ name: finally start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 21
+ end_line: 107
+ kind: try
+ start_character: 0
+ start_line: 105
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-108-001-try_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-108-001-try_end].out
new file mode 100644
index 000000000..413969082
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-108-001-try_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 108
+ name: try end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 21
+ end_line: 107
+ kind: try
+ start_character: 0
+ start_line: 105
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-111-001-try_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-111-001-try_start].out
new file mode 100644
index 000000000..3379a57d6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-111-001-try_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 111
+ name: try start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 21
+ end_line: 113
+ kind: try
+ start_character: 0
+ start_line: 111
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-114-001-except_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-114-001-except_start].out
new file mode 100644
index 000000000..ce3c8b981
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-114-001-except_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 114
+ name: except start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 21
+ end_line: 116
+ kind: try
+ start_character: 0
+ start_line: 114
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-117-001-except_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-117-001-except_start].out
new file mode 100644
index 000000000..e7bffbd6e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-117-001-except_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 117
+ name: except start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 21
+ end_line: 119
+ kind: try
+ start_character: 0
+ start_line: 117
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-120-001-finally_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-120-001-finally_start].out
new file mode 100644
index 000000000..77fe49211
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-120-001-finally_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 120
+ name: finally start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 21
+ end_line: 122
+ kind: try
+ start_character: 0
+ start_line: 120
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-123-001-try_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-123-001-try_end].out
new file mode 100644
index 000000000..c1cfea63b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-123-001-try_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 123
+ name: try end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: 21
+ end_line: 122
+ kind: try
+ start_character: 0
+ start_line: 120
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-000-001-Settings_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-000-001-Settings_start].out
new file mode 100644
index 000000000..69de3f557
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-000-001-Settings_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 0
+ name: Settings start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 4
+ kind: section
+ start_character: null
+ start_line: 0
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-005-001-Settings_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-005-001-Settings_end].out
new file mode 100644
index 000000000..6690fec58
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-005-001-Settings_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 5
+ name: Settings end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 4
+ kind: section
+ start_character: null
+ start_line: 0
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-005-001-Test_Cases_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-005-001-Test_Cases_start].out
new file mode 100644
index 000000000..ec91a3426
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-005-001-Test_Cases_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 5
+ name: Test Cases start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 35
+ kind: section
+ start_character: null
+ start_line: 5
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-008-001-Testcase_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-008-001-Testcase_start].out
new file mode 100644
index 000000000..3ed8dbbea
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-008-001-Testcase_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 8
+ name: Testcase start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 30
+ kind: testcase
+ start_character: null
+ start_line: 8
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-012-001-For_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-012-001-For_start].out
new file mode 100644
index 000000000..602cfe11d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-012-001-For_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 12
+ name: For start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 28
+ kind: for
+ start_character: null
+ start_line: 12
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-014-001-If_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-014-001-If_start].out
new file mode 100644
index 000000000..63399babe
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-014-001-If_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 14
+ name: If start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 16
+ kind: if
+ start_character: null
+ start_line: 14
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-017-001-If_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-017-001-If_start].out
new file mode 100644
index 000000000..23696071c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-017-001-If_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 17
+ name: If start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 19
+ kind: if
+ start_character: null
+ start_line: 17
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-020-001-If_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-020-001-If_start].out
new file mode 100644
index 000000000..96af7a779
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-020-001-If_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 20
+ name: If start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 23
+ kind: if
+ start_character: null
+ start_line: 20
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-023-001-If_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-023-001-If_end].out
new file mode 100644
index 000000000..6a4bf050e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-023-001-If_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 23
+ name: If end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 23
+ kind: if
+ start_character: null
+ start_line: 20
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-028-001-For_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-028-001-For_end].out
new file mode 100644
index 000000000..9651ae605
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-028-001-For_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 28
+ name: For end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 28
+ kind: for
+ start_character: null
+ start_line: 12
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-031-001-Testcase_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-031-001-Testcase_end].out
new file mode 100644
index 000000000..8659dadca
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-031-001-Testcase_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 31
+ name: Testcase end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 30
+ kind: testcase
+ start_character: null
+ start_line: 8
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-031-001-Testcase_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-031-001-Testcase_start].out
new file mode 100644
index 000000000..be9e3e704
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-031-001-Testcase_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 31
+ name: Testcase start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 35
+ kind: testcase
+ start_character: null
+ start_line: 31
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-036-001-Test_Cases_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-036-001-Test_Cases_end].out
new file mode 100644
index 000000000..980707787
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-036-001-Test_Cases_end].out
@@ -0,0 +1,19 @@
+data: !GeneratedTestData
+ character: 1
+ line: 36
+ name: Test Cases end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 35
+ kind: section
+ start_character: null
+ start_line: 5
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 35
+ kind: testcase
+ start_character: null
+ start_line: 31
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-036-001-Testcase_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-036-001-Testcase_end].out
new file mode 100644
index 000000000..41f5c618b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-036-001-Testcase_end].out
@@ -0,0 +1,19 @@
+data: !GeneratedTestData
+ character: 1
+ line: 36
+ name: Testcase end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 35
+ kind: section
+ start_character: null
+ start_line: 5
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 35
+ kind: testcase
+ start_character: null
+ start_line: 31
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-039-001-Keyword_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-039-001-Keyword_start].out
new file mode 100644
index 000000000..eda76c66e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-039-001-Keyword_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 39
+ name: Keyword start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 42
+ kind: keyword
+ start_character: null
+ start_line: 39
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-043-001-Comment_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-043-001-Comment_start].out
new file mode 100644
index 000000000..c5d945ef1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-043-001-Comment_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 43
+ name: Comment start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 49
+ kind: comment
+ start_character: null
+ start_line: 43
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-043-001-Keyword_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-043-001-Keyword_end].out
new file mode 100644
index 000000000..81d4c6d2f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-043-001-Keyword_end].out
@@ -0,0 +1,19 @@
+data: !GeneratedTestData
+ character: 1
+ line: 43
+ name: Keyword end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 42
+ kind: section
+ start_character: null
+ start_line: 36
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 42
+ kind: keyword
+ start_character: null
+ start_line: 39
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-050-001-Comment_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-050-001-Comment_end].out
new file mode 100644
index 000000000..c963a5a4b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-050-001-Comment_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 50
+ name: Comment end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 49
+ kind: comment
+ start_character: null
+ start_line: 43
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-054-001-simple_if_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-054-001-simple_if_start].out
new file mode 100644
index 000000000..6069e8185
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-054-001-simple_if_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 54
+ name: simple if start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 57
+ kind: if
+ start_character: null
+ start_line: 54
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-057-001-simple_if_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-057-001-simple_if_end].out
new file mode 100644
index 000000000..32ee22cf8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-057-001-simple_if_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 57
+ name: simple if end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 57
+ kind: if
+ start_character: null
+ start_line: 54
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-060-001-complex_if_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-060-001-complex_if_start].out
new file mode 100644
index 000000000..e4127087d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-060-001-complex_if_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 60
+ name: complex if start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 62
+ kind: if
+ start_character: null
+ start_line: 60
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-063-001-complex_else_if_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-063-001-complex_else_if_start].out
new file mode 100644
index 000000000..84495c2f5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-063-001-complex_else_if_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 63
+ name: complex else if start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 70
+ kind: if
+ start_character: null
+ start_line: 63
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-071-001-complex_second_else_if_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-071-001-complex_second_else_if_start].out
new file mode 100644
index 000000000..7caa9de79
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-071-001-complex_second_else_if_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 71
+ name: complex second else if start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 73
+ kind: if
+ start_character: null
+ start_line: 71
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-074-001-else_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-074-001-else_start].out
new file mode 100644
index 000000000..23b944841
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-074-001-else_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 74
+ name: else start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 77
+ kind: if
+ start_character: null
+ start_line: 74
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-077-001-else_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-077-001-else_end].out
new file mode 100644
index 000000000..3dd1d9e58
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-077-001-else_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 77
+ name: else end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 77
+ kind: if
+ start_character: null
+ start_line: 74
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-082-001-while_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-082-001-while_start].out
new file mode 100644
index 000000000..dc14bc188
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-082-001-while_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 82
+ name: while start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 86
+ kind: while
+ start_character: null
+ start_line: 82
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-086-001-while_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-086-001-while_end].out
new file mode 100644
index 000000000..cd0b9f516
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-086-001-while_end].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 1
+ line: 86
+ name: while end
+result: []
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-093-001-try_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-093-001-try_start].out
new file mode 100644
index 000000000..20c0ac95f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-093-001-try_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 93
+ name: try start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 95
+ kind: try
+ start_character: null
+ start_line: 93
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-096-001-except_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-096-001-except_start].out
new file mode 100644
index 000000000..a73d4d764
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-096-001-except_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 96
+ name: except start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 98
+ kind: try
+ start_character: null
+ start_line: 96
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-099-001-try_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-099-001-try_end].out
new file mode 100644
index 000000000..97926538a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-099-001-try_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 99
+ name: try end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 98
+ kind: try
+ start_character: null
+ start_line: 96
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-102-001-try_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-102-001-try_start].out
new file mode 100644
index 000000000..e961bb196
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-102-001-try_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 102
+ name: try start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 104
+ kind: try
+ start_character: null
+ start_line: 102
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-105-001-finally_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-105-001-finally_start].out
new file mode 100644
index 000000000..0755837bf
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-105-001-finally_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 105
+ name: finally start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 107
+ kind: try
+ start_character: null
+ start_line: 105
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-108-001-try_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-108-001-try_end].out
new file mode 100644
index 000000000..c627b6eb7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-108-001-try_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 108
+ name: try end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 107
+ kind: try
+ start_character: null
+ start_line: 105
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-111-001-try_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-111-001-try_start].out
new file mode 100644
index 000000000..ccabcfb49
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-111-001-try_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 111
+ name: try start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 113
+ kind: try
+ start_character: null
+ start_line: 111
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-114-001-except_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-114-001-except_start].out
new file mode 100644
index 000000000..b2d14029d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-114-001-except_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 114
+ name: except start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 116
+ kind: try
+ start_character: null
+ start_line: 114
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-117-001-except_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-117-001-except_start].out
new file mode 100644
index 000000000..e1c0abd62
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-117-001-except_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 117
+ name: except start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 119
+ kind: try
+ start_character: null
+ start_line: 117
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-120-001-finally_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-120-001-finally_start].out
new file mode 100644
index 000000000..74497c942
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-120-001-finally_start].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 120
+ name: finally start
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 122
+ kind: try
+ start_character: null
+ start_line: 120
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-123-001-try_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-123-001-try_end].out
new file mode 100644
index 000000000..5d2ea1f74
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-123-001-try_end].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 1
+ line: 123
+ name: try end
+result:
+- !FoldingRange
+ collapsed_text: null
+ end_character: null
+ end_line: 122
+ kind: try
+ start_character: null
+ start_line: 120
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-007-Separator].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-007-Separator].out
new file mode 100644
index 000000000..9517e44a7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-007-Separator].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 7
+ line: 1
+ name: Separator
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-012-Separator].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-012-Separator].out
new file mode 100644
index 000000000..9f375f6de
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-012-Separator].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 12
+ line: 1
+ name: Separator
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-017-Separator].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-017-Separator].out
new file mode 100644
index 000000000..047eb2e22
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-017-Separator].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 17
+ line: 1
+ name: Separator
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-018-Robot_Library_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-018-Robot_Library_Import].out
new file mode 100644
index 000000000..71a09bbec
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-018-Robot_Library_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 18
+ line: 1
+ name: Robot Library Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_range:
+ end:
+ character: 0
+ line: 988
+ start:
+ character: 0
+ line: 987
+ target_selection_range:
+ end:
+ character: 0
+ line: 988
+ start:
+ character: 0
+ line: 987
+ target_uri: Collections.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-023-Robot_Library_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-023-Robot_Library_Import].out
new file mode 100644
index 000000000..6f258fca6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-023-Robot_Library_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 1
+ name: Robot Library Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_range:
+ end:
+ character: 0
+ line: 988
+ start:
+ character: 0
+ line: 987
+ target_selection_range:
+ end:
+ character: 0
+ line: 988
+ start:
+ character: 0
+ line: 987
+ target_uri: Collections.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-028-Robot_Library_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-028-Robot_Library_Import].out
new file mode 100644
index 000000000..8f118c5d1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-028-Robot_Library_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 28
+ line: 1
+ name: Robot Library Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_range:
+ end:
+ character: 0
+ line: 988
+ start:
+ character: 0
+ line: 987
+ target_selection_range:
+ end:
+ character: 0
+ line: 988
+ start:
+ character: 0
+ line: 987
+ target_uri: Collections.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-018-library_import_by_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-018-library_import_by_path].out
new file mode 100644
index 000000000..82678e998
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-018-library_import_by_path].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 18
+ line: 4
+ name: library import by path
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 4
+ start:
+ character: 18
+ line: 4
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-020-var_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-020-var_in_library_import].out
new file mode 100644
index 000000000..4a92df18a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-020-var_in_library_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 4
+ name: var in library import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 4
+ start:
+ character: 18
+ line: 4
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-023-var_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-023-var_in_library_import].out
new file mode 100644
index 000000000..2bdff36c4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-023-var_in_library_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 4
+ name: var in library import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 4
+ start:
+ character: 18
+ line: 4
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-025-var_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-025-var_in_library_import].out
new file mode 100644
index 000000000..d4d38f93c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-025-var_in_library_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 25
+ line: 4
+ name: var in library import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 4
+ start:
+ character: 18
+ line: 4
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-033-library_import_by_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-033-library_import_by_path].out
new file mode 100644
index 000000000..cd863d523
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-033-library_import_by_path].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 33
+ line: 4
+ name: library import by path
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 4
+ start:
+ character: 18
+ line: 4
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-048-library_import_by_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-048-library_import_by_path].out
new file mode 100644
index 000000000..8fd7ce54a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-048-library_import_by_path].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 48
+ line: 4
+ name: library import by path
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 4
+ start:
+ character: 18
+ line: 4
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-018-Variables_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-018-Variables_Import].out
new file mode 100644
index 000000000..1754a6189
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-018-Variables_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 18
+ line: 7
+ name: Variables Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 7
+ start:
+ character: 18
+ line: 7
+ target_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
new file mode 100644
index 000000000..226df7e43
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 7
+ name: var in variables import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
+ target_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_selection_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
new file mode 100644
index 000000000..a8415375e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 7
+ name: var in variables import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
+ target_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_selection_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
new file mode 100644
index 000000000..6eaa2e935
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 25
+ line: 7
+ name: var in variables import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
+ target_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_selection_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-033-Variables_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-033-Variables_Import].out
new file mode 100644
index 000000000..233f13838
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-033-Variables_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 33
+ line: 7
+ name: Variables Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 7
+ start:
+ character: 18
+ line: 7
+ target_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-048-Variables_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-048-Variables_Import].out
new file mode 100644
index 000000000..b4b46b869
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-048-Variables_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 48
+ line: 7
+ name: Variables Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 7
+ start:
+ character: 18
+ line: 7
+ target_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-018-built_in_var_in_Resource_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-018-built_in_var_in_Resource_Import].out
new file mode 100644
index 000000000..44b2f3ce7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-018-built_in_var_in_Resource_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 18
+ line: 10
+ name: built in var in Resource Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
new file mode 100644
index 000000000..7ca591687
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 10
+ name: var in resource import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
+ target_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_selection_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
new file mode 100644
index 000000000..e5efffaa2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 10
+ name: var in resource import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
+ target_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_selection_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
new file mode 100644
index 000000000..d54497f31
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 25
+ line: 10
+ name: var in resource import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
+ target_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_selection_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-040-built_in_var_in_Resource_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-040-built_in_var_in_Resource_Import].out
new file mode 100644
index 000000000..4ca0a0a56
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-040-built_in_var_in_Resource_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 40
+ line: 10
+ name: built in var in Resource Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-062-built_in_var_in_Resource_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-062-built_in_var_in_Resource_Import].out
new file mode 100644
index 000000000..c90ffbdef
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-062-built_in_var_in_Resource_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 62
+ line: 10
+ name: built in var in Resource Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
new file mode 100644
index 000000000..7efe9727c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 14
+ name: var in Libary import path
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 23
+ line: 14
+ start:
+ character: 20
+ line: 14
+ target_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
new file mode 100644
index 000000000..8f988fde6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 14
+ name: var in Libary import path
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 23
+ line: 14
+ start:
+ character: 20
+ line: 14
+ target_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
new file mode 100644
index 000000000..204e3a526
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 22
+ line: 14
+ name: var in Libary import path
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 23
+ line: 14
+ start:
+ character: 20
+ line: 14
+ target_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
new file mode 100644
index 000000000..392d76d05
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 57
+ line: 14
+ name: var in library parameters
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 64
+ line: 14
+ start:
+ character: 57
+ line: 14
+ target_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
new file mode 100644
index 000000000..595a25015
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 60
+ line: 14
+ name: var in library parameters
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 64
+ line: 14
+ start:
+ character: 57
+ line: 14
+ target_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
new file mode 100644
index 000000000..ec8d67203
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 63
+ line: 14
+ name: var in library parameters
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 64
+ line: 14
+ start:
+ character: 57
+ line: 14
+ target_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-082-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-082-library_alias].out
new file mode 100644
index 000000000..2b0644fdf
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-082-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 82
+ line: 14
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-085-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-085-library_alias].out
new file mode 100644
index 000000000..1a4d3be22
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-085-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 85
+ line: 14
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-088-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-088-library_alias].out
new file mode 100644
index 000000000..8261c104a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-088-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 88
+ line: 14
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
new file mode 100644
index 000000000..2a4594d9d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 2
+ line: 23
+ name: Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
new file mode 100644
index 000000000..931b651ca
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 5
+ line: 23
+ name: Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
new file mode 100644
index 000000000..ca5f519ea
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 8
+ line: 23
+ name: Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
new file mode 100644
index 000000000..db4eadd00
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 2
+ line: 25
+ name: Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
new file mode 100644
index 000000000..9fc8dc9da
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 3
+ line: 25
+ name: Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
new file mode 100644
index 000000000..96464fc0a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 25
+ name: Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
new file mode 100644
index 000000000..b1eff5801
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 2
+ line: 27
+ name: List Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
new file mode 100644
index 000000000..980598cd7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 6
+ line: 27
+ name: List Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
new file mode 100644
index 000000000..0c5b96935
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 9
+ line: 27
+ name: List Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
new file mode 100644
index 000000000..e02339b62
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 2
+ line: 29
+ name: Dict Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
new file mode 100644
index 000000000..ffe8f95ee
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 6
+ line: 29
+ name: Dict Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
new file mode 100644
index 000000000..67711a05f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 9
+ line: 29
+ name: Dict Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
new file mode 100644
index 000000000..8bb3347a7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 32
+ start:
+ character: 21
+ line: 32
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
new file mode 100644
index 000000000..79b0ab951
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 32
+ start:
+ character: 21
+ line: 32
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
new file mode 100644
index 000000000..e9fe50e25
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 25
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 32
+ start:
+ character: 21
+ line: 32
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
new file mode 100644
index 000000000..cf3d34dea
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 30
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 38
+ line: 32
+ start:
+ character: 30
+ line: 32
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
new file mode 100644
index 000000000..62f4aceb1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 34
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 38
+ line: 32
+ start:
+ character: 30
+ line: 32
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
new file mode 100644
index 000000000..107def919
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 37
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 38
+ line: 32
+ start:
+ character: 30
+ line: 32
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
new file mode 100644
index 000000000..8d2ca8626
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 42
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 32
+ start:
+ character: 42
+ line: 32
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
new file mode 100644
index 000000000..1feeeb40c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 45
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 32
+ start:
+ character: 42
+ line: 32
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
new file mode 100644
index 000000000..f5ec1c457
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 48
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 32
+ start:
+ character: 42
+ line: 32
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-004-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-004-BuiltIn_Keyword].out
new file mode 100644
index 000000000..6c0d96dc7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-004-BuiltIn_Keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 43
+ name: BuiltIn Keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 7
+ line: 43
+ start:
+ character: 4
+ line: 43
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-005-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-005-BuiltIn_Keyword].out
new file mode 100644
index 000000000..7d4470d9d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-005-BuiltIn_Keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 5
+ line: 43
+ name: BuiltIn Keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 7
+ line: 43
+ start:
+ character: 4
+ line: 43
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-006-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-006-BuiltIn_Keyword].out
new file mode 100644
index 000000000..9e24df4c0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-006-BuiltIn_Keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 6
+ line: 43
+ name: BuiltIn Keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 7
+ line: 43
+ start:
+ character: 4
+ line: 43
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
new file mode 100644
index 000000000..bea1d3906
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-019-Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 19
+ line: 43
+ name: Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 24
+ line: 43
+ start:
+ character: 19
+ line: 43
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
new file mode 100644
index 000000000..a62d80df3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-021-Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 43
+ name: Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 24
+ line: 43
+ start:
+ character: 19
+ line: 43
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
new file mode 100644
index 000000000..e34b79a0f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-023-Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 43
+ name: Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 24
+ line: 43
+ start:
+ character: 19
+ line: 43
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
new file mode 100644
index 000000000..17ec05e27
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 47
+ name: List Var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 47
+ start:
+ character: 13
+ line: 47
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
new file mode 100644
index 000000000..04e70985b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 47
+ name: List Var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 47
+ start:
+ character: 13
+ line: 47
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
new file mode 100644
index 000000000..9e6dfd8d7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 47
+ name: List Var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 47
+ start:
+ character: 13
+ line: 47
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
new file mode 100644
index 000000000..b7cf80414
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 49
+ name: List Var as normal var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 49
+ start:
+ character: 13
+ line: 49
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
new file mode 100644
index 000000000..3244fdcd1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 49
+ name: List Var as normal var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 49
+ start:
+ character: 13
+ line: 49
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
new file mode 100644
index 000000000..a94d36226
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 49
+ name: List Var as normal var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 49
+ start:
+ character: 13
+ line: 49
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
new file mode 100644
index 000000000..fece8b2aa
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 52
+ name: Dict Var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 52
+ start:
+ character: 13
+ line: 52
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
new file mode 100644
index 000000000..b0235ca01
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 52
+ name: Dict Var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 52
+ start:
+ character: 13
+ line: 52
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
new file mode 100644
index 000000000..ac50687b3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 52
+ name: Dict Var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 52
+ start:
+ character: 13
+ line: 52
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
new file mode 100644
index 000000000..23bb8aaf3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 54
+ name: Dict Var as normal var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 54
+ start:
+ character: 13
+ line: 54
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
new file mode 100644
index 000000000..3b0e98cec
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 54
+ name: Dict Var as normal var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 54
+ start:
+ character: 13
+ line: 54
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
new file mode 100644
index 000000000..325e16336
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 54
+ name: Dict Var as normal var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 54
+ start:
+ character: 13
+ line: 54
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-004-Robot_Namespace_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-004-Robot_Namespace_from_Library].out
new file mode 100644
index 000000000..0645860ff
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-004-Robot_Namespace_from_Library].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 59
+ name: Robot Namespace from Library
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 59
+ start:
+ character: 4
+ line: 59
+ target_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_selection_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-009-Robot_Namespace_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-009-Robot_Namespace_from_Library].out
new file mode 100644
index 000000000..ca490f2a9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-009-Robot_Namespace_from_Library].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 9
+ line: 59
+ name: Robot Namespace from Library
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 59
+ start:
+ character: 4
+ line: 59
+ target_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_selection_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-014-Robot_Namespace_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-014-Robot_Namespace_from_Library].out
new file mode 100644
index 000000000..4b6f0bb82
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-014-Robot_Namespace_from_Library].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 14
+ line: 59
+ name: Robot Namespace from Library
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 59
+ start:
+ character: 4
+ line: 59
+ target_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_selection_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-016-Robot_Library_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-016-Robot_Library_Keyword].out
new file mode 100644
index 000000000..ce6984de7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-016-Robot_Library_Keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 16
+ line: 59
+ name: Robot Library Keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 30
+ line: 59
+ start:
+ character: 16
+ line: 59
+ target_range:
+ end:
+ character: 0
+ line: 958
+ start:
+ character: 0
+ line: 957
+ target_selection_range:
+ end:
+ character: 0
+ line: 958
+ start:
+ character: 0
+ line: 957
+ target_uri: Collections.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-023-Robot_Library_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-023-Robot_Library_Keyword].out
new file mode 100644
index 000000000..11c1b6880
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-023-Robot_Library_Keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 59
+ name: Robot Library Keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 30
+ line: 59
+ start:
+ character: 16
+ line: 59
+ target_range:
+ end:
+ character: 0
+ line: 958
+ start:
+ character: 0
+ line: 957
+ target_selection_range:
+ end:
+ character: 0
+ line: 958
+ start:
+ character: 0
+ line: 957
+ target_uri: Collections.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-029-Robot_Library_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-029-Robot_Library_Keyword].out
new file mode 100644
index 000000000..c71975236
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-029-Robot_Library_Keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 29
+ line: 59
+ name: Robot Library Keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 30
+ line: 59
+ start:
+ character: 16
+ line: 59
+ target_range:
+ end:
+ character: 0
+ line: 958
+ start:
+ character: 0
+ line: 957
+ target_selection_range:
+ end:
+ character: 0
+ line: 958
+ start:
+ character: 0
+ line: 957
+ target_uri: Collections.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
new file mode 100644
index 000000000..40a3bfb4b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-036-Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 36
+ line: 59
+ name: Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 42
+ line: 59
+ start:
+ character: 36
+ line: 59
+ target_range:
+ end:
+ character: 8
+ line: 22
+ start:
+ character: 2
+ line: 22
+ target_selection_range:
+ end:
+ character: 8
+ line: 22
+ start:
+ character: 2
+ line: 22
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
new file mode 100644
index 000000000..9dcf09b8d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-039-Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 39
+ line: 59
+ name: Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 42
+ line: 59
+ start:
+ character: 36
+ line: 59
+ target_range:
+ end:
+ character: 8
+ line: 22
+ start:
+ character: 2
+ line: 22
+ target_selection_range:
+ end:
+ character: 8
+ line: 22
+ start:
+ character: 2
+ line: 22
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
new file mode 100644
index 000000000..a60432e01
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-041-Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 41
+ line: 59
+ name: Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 42
+ line: 59
+ start:
+ character: 36
+ line: 59
+ target_range:
+ end:
+ character: 8
+ line: 22
+ start:
+ character: 2
+ line: 22
+ target_selection_range:
+ end:
+ character: 8
+ line: 22
+ start:
+ character: 2
+ line: 22
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-004-Robot_BuilIn_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-004-Robot_BuilIn_Namespace].out
new file mode 100644
index 000000000..d47b37ba8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-004-Robot_BuilIn_Namespace].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 64
+ name: Robot BuilIn Namespace
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 64
+ start:
+ character: 4
+ line: 64
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-007-Robot_BuilIn_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-007-Robot_BuilIn_Namespace].out
new file mode 100644
index 000000000..a5e5764ee
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-007-Robot_BuilIn_Namespace].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 7
+ line: 64
+ name: Robot BuilIn Namespace
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 64
+ start:
+ character: 4
+ line: 64
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-010-Robot_BuilIn_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-010-Robot_BuilIn_Namespace].out
new file mode 100644
index 000000000..41bdcccbd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-010-Robot_BuilIn_Namespace].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 10
+ line: 64
+ name: Robot BuilIn Namespace
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 64
+ start:
+ character: 4
+ line: 64
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-012-BuiltIn_Keyword_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-012-BuiltIn_Keyword_with_Namespace].out
new file mode 100644
index 000000000..e096836ec
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-012-BuiltIn_Keyword_with_Namespace].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 12
+ line: 64
+ name: BuiltIn Keyword with Namespace
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 64
+ start:
+ character: 12
+ line: 64
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-013-BuiltIn_Keyword_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-013-BuiltIn_Keyword_with_Namespace].out
new file mode 100644
index 000000000..dc16a0fd9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-013-BuiltIn_Keyword_with_Namespace].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 64
+ name: BuiltIn Keyword with Namespace
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 64
+ start:
+ character: 12
+ line: 64
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-014-BuiltIn_Keyword_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-014-BuiltIn_Keyword_with_Namespace].out
new file mode 100644
index 000000000..6f824a509
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-014-BuiltIn_Keyword_with_Namespace].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 14
+ line: 64
+ name: BuiltIn Keyword with Namespace
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 64
+ start:
+ character: 12
+ line: 64
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
new file mode 100644
index 000000000..52e38c418
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 68
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
new file mode 100644
index 000000000..afad4b22e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 14
+ line: 68
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
new file mode 100644
index 000000000..79c6190d8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 15
+ line: 68
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
new file mode 100644
index 000000000..a1e856600
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 68
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
new file mode 100644
index 000000000..b1cb2126a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 25
+ line: 68
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
new file mode 100644
index 000000000..de0d59df6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 27
+ line: 68
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
new file mode 100644
index 000000000..23b9b8a1f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 71
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 20
+ line: 71
+ start:
+ character: 17
+ line: 71
+ target_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
new file mode 100644
index 000000000..17be9c684
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 18
+ line: 71
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 20
+ line: 71
+ start:
+ character: 17
+ line: 71
+ target_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
new file mode 100644
index 000000000..7d355d48d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 19
+ line: 71
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 20
+ line: 71
+ start:
+ character: 17
+ line: 71
+ target_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
new file mode 100644
index 000000000..e0c65040f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 24
+ line: 71
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 71
+ start:
+ character: 24
+ line: 71
+ target_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
new file mode 100644
index 000000000..e73a085ea
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 26
+ line: 71
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 71
+ start:
+ character: 24
+ line: 71
+ target_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
new file mode 100644
index 000000000..fe1822274
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 28
+ line: 71
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 71
+ start:
+ character: 24
+ line: 71
+ target_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-013-Imported_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-013-Imported_Variable].out
new file mode 100644
index 000000000..ed9e2c89e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-013-Imported_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 75
+ name: Imported Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 27
+ line: 75
+ start:
+ character: 13
+ line: 75
+ target_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-020-Imported_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-020-Imported_Variable].out
new file mode 100644
index 000000000..d59510da8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-020-Imported_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 75
+ name: Imported Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 27
+ line: 75
+ start:
+ character: 13
+ line: 75
+ target_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-026-Imported_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-026-Imported_Variable].out
new file mode 100644
index 000000000..7c53a95ac
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-026-Imported_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 26
+ line: 75
+ name: Imported Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 27
+ line: 75
+ start:
+ character: 13
+ line: 75
+ target_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-004-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-004-Keyword_from_resource].out
new file mode 100644
index 000000000..206ba21a2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-004-Keyword_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 78
+ name: Keyword from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 30
+ line: 78
+ start:
+ character: 4
+ line: 78
+ target_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-017-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-017-Keyword_from_resource].out
new file mode 100644
index 000000000..3f0d3acbc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-017-Keyword_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 78
+ name: Keyword from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 30
+ line: 78
+ start:
+ character: 4
+ line: 78
+ target_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-029-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-029-Keyword_from_resource].out
new file mode 100644
index 000000000..aec11ca49
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-029-Keyword_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 29
+ line: 78
+ name: Keyword from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 30
+ line: 78
+ start:
+ character: 4
+ line: 78
+ target_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-004-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-004-Namespace_from_resource].out
new file mode 100644
index 000000000..404e7cee0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-004-Namespace_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 81
+ name: Namespace from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 17
+ line: 81
+ start:
+ character: 4
+ line: 81
+ target_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_selection_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-010-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-010-Namespace_from_resource].out
new file mode 100644
index 000000000..e5a3098c3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-010-Namespace_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 10
+ line: 81
+ name: Namespace from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 17
+ line: 81
+ start:
+ character: 4
+ line: 81
+ target_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_selection_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-016-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-016-Namespace_from_resource].out
new file mode 100644
index 000000000..fc1fb0601
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-016-Namespace_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 16
+ line: 81
+ name: Namespace from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 17
+ line: 81
+ start:
+ character: 4
+ line: 81
+ target_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_selection_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-018-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-018-Keyword_from_resource].out
new file mode 100644
index 000000000..ce995ea4e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-018-Keyword_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 18
+ line: 81
+ name: Keyword from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 44
+ line: 81
+ start:
+ character: 18
+ line: 81
+ target_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-031-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-031-Keyword_from_resource].out
new file mode 100644
index 000000000..3e3bb1197
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-031-Keyword_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 31
+ line: 81
+ name: Keyword from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 44
+ line: 81
+ start:
+ character: 18
+ line: 81
+ target_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-043-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-043-Keyword_from_resource].out
new file mode 100644
index 000000000..9a755bdf4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-043-Keyword_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 43
+ line: 81
+ name: Keyword from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 44
+ line: 81
+ start:
+ character: 18
+ line: 81
+ target_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-004-call_a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-004-call_a_simple_keyword].out
new file mode 100644
index 000000000..79cc2aa9e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-004-call_a_simple_keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 84
+ name: call a simple keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 20
+ line: 84
+ start:
+ character: 4
+ line: 84
+ target_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-012-call_a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-012-call_a_simple_keyword].out
new file mode 100644
index 000000000..f235997e2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-012-call_a_simple_keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 12
+ line: 84
+ name: call a simple keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 20
+ line: 84
+ start:
+ character: 4
+ line: 84
+ target_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-019-call_a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-019-call_a_simple_keyword].out
new file mode 100644
index 000000000..644fb3192
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-019-call_a_simple_keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 19
+ line: 84
+ name: call a simple keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 20
+ line: 84
+ start:
+ character: 4
+ line: 84
+ target_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-004-unknown_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-004-unknown_keyword].out
new file mode 100644
index 000000000..025ff0b0f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-004-unknown_keyword].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 4
+ line: 86
+ name: unknown keyword
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-013-unknown_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-013-unknown_keyword].out
new file mode 100644
index 000000000..c45011285
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-013-unknown_keyword].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 13
+ line: 86
+ name: unknown keyword
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-021-unknown_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-021-unknown_keyword].out
new file mode 100644
index 000000000..b48151e28
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-021-unknown_keyword].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 21
+ line: 86
+ name: unknown keyword
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-015-a_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-015-a_keyword_in_setup].out
new file mode 100644
index 000000000..db90a6592
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-015-a_keyword_in_setup].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 15
+ line: 92
+ name: a keyword in setup
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 92
+ start:
+ character: 15
+ line: 92
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-016-a_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-016-a_keyword_in_setup].out
new file mode 100644
index 000000000..e2a2edfee
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-016-a_keyword_in_setup].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 16
+ line: 92
+ name: a keyword in setup
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 92
+ start:
+ character: 15
+ line: 92
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-017-a_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-017-a_keyword_in_setup].out
new file mode 100644
index 000000000..055c64617
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-017-a_keyword_in_setup].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 92
+ name: a keyword in setup
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 92
+ start:
+ character: 15
+ line: 92
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-018-a_namespace_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-018-a_namespace_in_teardown].out
new file mode 100644
index 000000000..077ea5fe2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-018-a_namespace_in_teardown].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 18
+ line: 94
+ name: a namespace in teardown
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 25
+ line: 94
+ start:
+ character: 18
+ line: 94
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-021-a_namespace_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-021-a_namespace_in_teardown].out
new file mode 100644
index 000000000..86a8d6dbe
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-021-a_namespace_in_teardown].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 94
+ name: a namespace in teardown
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 25
+ line: 94
+ start:
+ character: 18
+ line: 94
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-024-a_namespace_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-024-a_namespace_in_teardown].out
new file mode 100644
index 000000000..787427c85
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-024-a_namespace_in_teardown].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 24
+ line: 94
+ name: a namespace in teardown
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 25
+ line: 94
+ start:
+ character: 18
+ line: 94
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-026-a_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-026-a_keyword_in_teardown].out
new file mode 100644
index 000000000..1fbe675d5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-026-a_keyword_in_teardown].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 26
+ line: 94
+ name: a keyword in teardown
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 94
+ start:
+ character: 26
+ line: 94
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-027-a_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-027-a_keyword_in_teardown].out
new file mode 100644
index 000000000..21221bc7b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-027-a_keyword_in_teardown].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 27
+ line: 94
+ name: a keyword in teardown
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 94
+ start:
+ character: 26
+ line: 94
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-028-a_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-028-a_keyword_in_teardown].out
new file mode 100644
index 000000000..6937087a0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-028-a_keyword_in_teardown].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 28
+ line: 94
+ name: a keyword in teardown
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 94
+ start:
+ character: 26
+ line: 94
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-018-a_namespace_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-018-a_namespace_in_template].out
new file mode 100644
index 000000000..be095a96d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-018-a_namespace_in_template].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 18
+ line: 99
+ name: a namespace in template
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 25
+ line: 99
+ start:
+ character: 18
+ line: 99
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-021-a_namespace_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-021-a_namespace_in_template].out
new file mode 100644
index 000000000..1728845bc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-021-a_namespace_in_template].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 99
+ name: a namespace in template
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 25
+ line: 99
+ start:
+ character: 18
+ line: 99
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-024-a_namespace_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-024-a_namespace_in_template].out
new file mode 100644
index 000000000..dbca761c9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-024-a_namespace_in_template].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 24
+ line: 99
+ name: a namespace in template
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 25
+ line: 99
+ start:
+ character: 18
+ line: 99
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-026-a_keyword_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-026-a_keyword_in_template].out
new file mode 100644
index 000000000..6325a90fd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-026-a_keyword_in_template].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 26
+ line: 99
+ name: a keyword in template
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 99
+ start:
+ character: 26
+ line: 99
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-027-a_keyword_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-027-a_keyword_in_template].out
new file mode 100644
index 000000000..05c38e999
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-027-a_keyword_in_template].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 27
+ line: 99
+ name: a keyword in template
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 99
+ start:
+ character: 26
+ line: 99
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-028-a_keyword_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-028-a_keyword_in_template].out
new file mode 100644
index 000000000..64707c9dc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-028-a_keyword_in_template].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 28
+ line: 99
+ name: a keyword in template
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 99
+ start:
+ character: 26
+ line: 99
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-109-004-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-109-004-a_keyword_with_emoji].out
new file mode 100644
index 000000000..f87155267
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-109-004-a_keyword_with_emoji].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 109
+ name: a keyword with emoji
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 6
+ line: 109
+ start:
+ character: 4
+ line: 109
+ target_range:
+ end:
+ character: 2
+ line: 26
+ start:
+ character: 0
+ line: 26
+ target_selection_range:
+ end:
+ character: 2
+ line: 26
+ start:
+ character: 0
+ line: 26
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-109-005-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-109-005-a_keyword_with_emoji].out
new file mode 100644
index 000000000..44ce504b4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-109-005-a_keyword_with_emoji].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 5
+ line: 109
+ name: a keyword with emoji
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 6
+ line: 109
+ start:
+ character: 4
+ line: 109
+ target_range:
+ end:
+ character: 2
+ line: 26
+ start:
+ character: 0
+ line: 26
+ target_selection_range:
+ end:
+ character: 2
+ line: 26
+ start:
+ character: 0
+ line: 26
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
new file mode 100644
index 000000000..7083c0456
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 10
+ line: 113
+ name: variable in if
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 113
+ start:
+ character: 10
+ line: 113
+ target_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_selection_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
new file mode 100644
index 000000000..7805da4bc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 116
+ name: variable in else if
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 116
+ start:
+ character: 17
+ line: 116
+ target_range:
+ end:
+ character: 3
+ line: 37
+ start:
+ character: 2
+ line: 37
+ target_selection_range:
+ end:
+ character: 3
+ line: 37
+ start:
+ character: 2
+ line: 37
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
new file mode 100644
index 000000000..e2b4e3ec5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 9
+ line: 121
+ name: variable in if expression
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 10
+ line: 121
+ start:
+ character: 9
+ line: 121
+ target_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_selection_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
new file mode 100644
index 000000000..3053203b2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 16
+ line: 124
+ name: variable in else if expression
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 17
+ line: 124
+ start:
+ character: 16
+ line: 124
+ target_range:
+ end:
+ character: 3
+ line: 37
+ start:
+ character: 2
+ line: 37
+ target_selection_range:
+ end:
+ character: 3
+ line: 37
+ start:
+ character: 2
+ line: 37
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
new file mode 100644
index 000000000..3aa98776d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 10
+ line: 129
+ name: variable in inline if expression
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 129
+ start:
+ character: 10
+ line: 129
+ target_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_selection_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
new file mode 100644
index 000000000..1d82bbf19
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 42
+ line: 129
+ name: variable in inline else if expression
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 43
+ line: 129
+ start:
+ character: 42
+ line: 129
+ target_range:
+ end:
+ character: 3
+ line: 37
+ start:
+ character: 2
+ line: 37
+ target_selection_range:
+ end:
+ character: 3
+ line: 37
+ start:
+ character: 2
+ line: 37
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
new file mode 100644
index 000000000..69ac841ce
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 9
+ line: 133
+ name: variable in inline if expression
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 10
+ line: 133
+ start:
+ character: 9
+ line: 133
+ target_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_selection_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
new file mode 100644
index 000000000..89d2d8a9a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 39
+ line: 133
+ name: variable in inline else if expression
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 40
+ line: 133
+ start:
+ character: 39
+ line: 133
+ target_range:
+ end:
+ character: 3
+ line: 37
+ start:
+ character: 2
+ line: 37
+ target_selection_range:
+ end:
+ character: 3
+ line: 37
+ start:
+ character: 2
+ line: 37
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
new file mode 100644
index 000000000..220538b57
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 25
+ line: 136
+ name: expression in keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 136
+ start:
+ character: 25
+ line: 136
+ target_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_selection_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-041-short_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-041-short_keyword_argument].out
new file mode 100644
index 000000000..f274783de
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-041-short_keyword_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 41
+ line: 143
+ name: short keyword argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 42
+ line: 143
+ start:
+ character: 41
+ line: 143
+ target_range:
+ end:
+ character: 23
+ line: 23
+ start:
+ character: 19
+ line: 23
+ target_selection_range:
+ end:
+ character: 22
+ line: 23
+ start:
+ character: 21
+ line: 23
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-048-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-048-keyword_argument_with_spaces].out
new file mode 100644
index 000000000..510b20404
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-048-keyword_argument_with_spaces].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 48
+ line: 143
+ name: keyword argument with spaces
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 59
+ line: 143
+ start:
+ character: 48
+ line: 143
+ target_range:
+ end:
+ character: 41
+ line: 23
+ start:
+ character: 27
+ line: 23
+ target_selection_range:
+ end:
+ character: 40
+ line: 23
+ start:
+ character: 29
+ line: 23
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-053-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-053-keyword_argument_with_spaces].out
new file mode 100644
index 000000000..6503cd257
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-053-keyword_argument_with_spaces].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 53
+ line: 143
+ name: keyword argument with spaces
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 59
+ line: 143
+ start:
+ character: 48
+ line: 143
+ target_range:
+ end:
+ character: 41
+ line: 23
+ start:
+ character: 27
+ line: 23
+ target_selection_range:
+ end:
+ character: 40
+ line: 23
+ start:
+ character: 29
+ line: 23
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-058-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-058-keyword_argument_with_spaces].out
new file mode 100644
index 000000000..c679c631a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-058-keyword_argument_with_spaces].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 58
+ line: 143
+ name: keyword argument with spaces
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 59
+ line: 143
+ start:
+ character: 48
+ line: 143
+ target_range:
+ end:
+ character: 41
+ line: 23
+ start:
+ character: 27
+ line: 23
+ target_selection_range:
+ end:
+ character: 40
+ line: 23
+ start:
+ character: 29
+ line: 23
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-001-a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-001-a_simple_keyword].out
new file mode 100644
index 000000000..2e8b30701
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-001-a_simple_keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 1
+ line: 149
+ name: a simple keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-008-a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-008-a_simple_keyword].out
new file mode 100644
index 000000000..84bc27169
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-008-a_simple_keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 8
+ line: 149
+ name: a simple keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-015-a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-015-a_simple_keyword].out
new file mode 100644
index 000000000..dbd22f9bc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-015-a_simple_keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 15
+ line: 149
+ name: a simple keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
new file mode 100644
index 000000000..c0d8cab53
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 155
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
new file mode 100644
index 000000000..e5b45a749
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 155
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
new file mode 100644
index 000000000..f5bd445a5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 25
+ line: 155
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
new file mode 100644
index 000000000..2ce131597
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 30
+ line: 155
+ name: a default value
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 35
+ line: 155
+ start:
+ character: 30
+ line: 155
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
new file mode 100644
index 000000000..9d51f1860
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 32
+ line: 155
+ name: a default value
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 35
+ line: 155
+ start:
+ character: 30
+ line: 155
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
new file mode 100644
index 000000000..452a44add
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 34
+ line: 155
+ name: a default value
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 35
+ line: 155
+ start:
+ character: 30
+ line: 155
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-158-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-158-013-argument_usage].out
new file mode 100644
index 000000000..fdc8d0e18
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-158-013-argument_usage].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 13
+ line: 158
+ name: argument usage
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-158-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-158-014-argument_usage].out
new file mode 100644
index 000000000..aa1d011cf
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-158-014-argument_usage].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 14
+ line: 158
+ name: argument usage
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
new file mode 100644
index 000000000..865e4fe5a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 160
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 160
+ start:
+ character: 13
+ line: 160
+ target_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
new file mode 100644
index 000000000..67501186c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 15
+ line: 160
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 160
+ start:
+ character: 13
+ line: 160
+ target_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
new file mode 100644
index 000000000..f0ad689e2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 160
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 160
+ start:
+ character: 13
+ line: 160
+ target_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
new file mode 100644
index 000000000..3b1f57c25
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 164
+ name: an argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_selection_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
new file mode 100644
index 000000000..868e40459
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 22
+ line: 164
+ name: an argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_selection_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
new file mode 100644
index 000000000..c6855781f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 30
+ line: 164
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
new file mode 100644
index 000000000..bc6603370
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 32
+ line: 164
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
new file mode 100644
index 000000000..f5299abab
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 34
+ line: 164
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
new file mode 100644
index 000000000..4cf7f16da
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 39
+ line: 164
+ name: a default value
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 44
+ line: 164
+ start:
+ character: 39
+ line: 164
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
new file mode 100644
index 000000000..ae530e453
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 41
+ line: 164
+ name: a default value
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 44
+ line: 164
+ start:
+ character: 39
+ line: 164
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
new file mode 100644
index 000000000..e48ac204d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 43
+ line: 164
+ name: a default value
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 44
+ line: 164
+ start:
+ character: 39
+ line: 164
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
new file mode 100644
index 000000000..67436f28b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 168
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 168
+ start:
+ character: 13
+ line: 168
+ target_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_selection_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
new file mode 100644
index 000000000..8489525fc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 14
+ line: 168
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 168
+ start:
+ character: 13
+ line: 168
+ target_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_selection_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
new file mode 100644
index 000000000..aeb46e115
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 170
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 170
+ start:
+ character: 13
+ line: 170
+ target_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
new file mode 100644
index 000000000..ff5922211
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 15
+ line: 170
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 170
+ start:
+ character: 13
+ line: 170
+ target_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
new file mode 100644
index 000000000..518933599
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 170
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 170
+ start:
+ character: 13
+ line: 170
+ target_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
new file mode 100644
index 000000000..1389c2ae6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 174
+ name: an argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_selection_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
new file mode 100644
index 000000000..91386967d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 22
+ line: 174
+ name: an argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_selection_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
new file mode 100644
index 000000000..ba3e6351b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 30
+ line: 174
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
new file mode 100644
index 000000000..14c6de2b7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 33
+ line: 174
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
new file mode 100644
index 000000000..145813fd0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 35
+ line: 174
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-039-a_default_value].out
new file mode 100644
index 000000000..594b8478e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-039-a_default_value].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 39
+ line: 174
+ name: a default value
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
new file mode 100644
index 000000000..001e62bda
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 40
+ line: 174
+ name: a default value
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 42
+ line: 174
+ start:
+ character: 40
+ line: 174
+ target_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_selection_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-048-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-048-an_overridden_argument].out
new file mode 100644
index 000000000..c85c0a7e4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-048-an_overridden_argument].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 48
+ line: 174
+ name: an overridden argument
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
new file mode 100644
index 000000000..2f9ed615a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 49
+ line: 174
+ name: an overridden argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 51
+ line: 174
+ start:
+ character: 49
+ line: 174
+ target_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_selection_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-054-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-054-a_default_value_from_overriden_argument].out
new file mode 100644
index 000000000..3ad3538d8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-054-a_default_value_from_overriden_argument].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 54
+ line: 174
+ name: a default value from overriden argument
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
new file mode 100644
index 000000000..8f60adbfe
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 56
+ line: 174
+ name: a default value from overriden argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 61
+ line: 174
+ start:
+ character: 55
+ line: 174
+ target_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
new file mode 100644
index 000000000..e58d291f5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 58
+ line: 174
+ name: a default value from overriden argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 61
+ line: 174
+ start:
+ character: 55
+ line: 174
+ target_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
new file mode 100644
index 000000000..79b34a22b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 180
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 180
+ start:
+ character: 13
+ line: 180
+ target_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_selection_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
new file mode 100644
index 000000000..6aafa0cf7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 14
+ line: 180
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 180
+ start:
+ character: 13
+ line: 180
+ target_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_selection_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
new file mode 100644
index 000000000..99b407107
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 182
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 19
+ line: 182
+ start:
+ character: 13
+ line: 182
+ target_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
new file mode 100644
index 000000000..a2d19cd1a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 15
+ line: 182
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 19
+ line: 182
+ start:
+ character: 13
+ line: 182
+ target_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
new file mode 100644
index 000000000..b90b18f53
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 182
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 19
+ line: 182
+ start:
+ character: 13
+ line: 182
+ target_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
new file mode 100644
index 000000000..5be0a2e62
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 187
+ name: an argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 22
+ line: 187
+ start:
+ character: 21
+ line: 187
+ target_range:
+ end:
+ character: 22
+ line: 187
+ start:
+ character: 21
+ line: 187
+ target_selection_range:
+ end:
+ character: 22
+ line: 187
+ start:
+ character: 21
+ line: 187
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
new file mode 100644
index 000000000..44fda0315
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 29
+ line: 187
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 30
+ line: 187
+ start:
+ character: 29
+ line: 187
+ target_range:
+ end:
+ character: 30
+ line: 187
+ start:
+ character: 29
+ line: 187
+ target_selection_range:
+ end:
+ character: 30
+ line: 187
+ start:
+ character: 29
+ line: 187
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
new file mode 100644
index 000000000..3499f3dc6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 34
+ line: 187
+ name: argument usage in argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 35
+ line: 187
+ start:
+ character: 34
+ line: 187
+ target_range:
+ end:
+ character: 22
+ line: 187
+ start:
+ character: 21
+ line: 187
+ target_selection_range:
+ end:
+ character: 22
+ line: 187
+ start:
+ character: 21
+ line: 187
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
new file mode 100644
index 000000000..800293ec2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 191
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 14
+ line: 191
+ start:
+ character: 13
+ line: 191
+ target_range:
+ end:
+ character: 22
+ line: 187
+ start:
+ character: 21
+ line: 187
+ target_selection_range:
+ end:
+ character: 22
+ line: 187
+ start:
+ character: 21
+ line: 187
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
new file mode 100644
index 000000000..e4a2311a1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 193
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 14
+ line: 193
+ start:
+ character: 13
+ line: 193
+ target_range:
+ end:
+ character: 30
+ line: 187
+ start:
+ character: 29
+ line: 187
+ target_selection_range:
+ end:
+ character: 30
+ line: 187
+ start:
+ character: 29
+ line: 187
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-004-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-004-library_alias].out
new file mode 100644
index 000000000..a0743929a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-004-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 197
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 197
+ start:
+ character: 4
+ line: 197
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-007-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-007-library_alias].out
new file mode 100644
index 000000000..dd0ab8d85
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-007-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 7
+ line: 197
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 197
+ start:
+ character: 4
+ line: 197
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-010-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-010-library_alias].out
new file mode 100644
index 000000000..08b0d544c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-010-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 10
+ line: 197
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 197
+ start:
+ character: 4
+ line: 197
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-004-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-004-library_alias].out
new file mode 100644
index 000000000..4d8419472
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-004-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 199
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 199
+ start:
+ character: 4
+ line: 199
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-007-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-007-library_alias].out
new file mode 100644
index 000000000..daf96590f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-007-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 7
+ line: 199
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 199
+ start:
+ character: 4
+ line: 199
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-010-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-010-library_alias].out
new file mode 100644
index 000000000..6672d1c48
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-010-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 10
+ line: 199
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 199
+ start:
+ character: 4
+ line: 199
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-004-library_alias_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-004-library_alias_from_resource].out
new file mode 100644
index 000000000..d417e0d41
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-004-library_alias_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 201
+ name: library alias from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 201
+ start:
+ character: 4
+ line: 201
+ target_range:
+ end:
+ character: 71
+ line: 1
+ start:
+ character: 60
+ line: 1
+ target_selection_range:
+ end:
+ character: 71
+ line: 1
+ start:
+ character: 60
+ line: 1
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-009-library_alias_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-009-library_alias_from_resource].out
new file mode 100644
index 000000000..52c662e86
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-009-library_alias_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 9
+ line: 201
+ name: library alias from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 201
+ start:
+ character: 4
+ line: 201
+ target_range:
+ end:
+ character: 71
+ line: 1
+ start:
+ character: 60
+ line: 1
+ target_selection_range:
+ end:
+ character: 71
+ line: 1
+ start:
+ character: 60
+ line: 1
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-014-library_alias_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-014-library_alias_from_resource].out
new file mode 100644
index 000000000..886126ef9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-014-library_alias_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 14
+ line: 201
+ name: library alias from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 201
+ start:
+ character: 4
+ line: 201
+ target_range:
+ end:
+ character: 71
+ line: 1
+ start:
+ character: 60
+ line: 1
+ target_selection_range:
+ end:
+ character: 71
+ line: 1
+ start:
+ character: 60
+ line: 1
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
new file mode 100644
index 000000000..18898925e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 51
+ line: 205
+ name: a global var in doc
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 56
+ line: 205
+ start:
+ character: 51
+ line: 205
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
new file mode 100644
index 000000000..e00559044
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 53
+ line: 205
+ name: a global var in doc
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 56
+ line: 205
+ start:
+ character: 51
+ line: 205
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
new file mode 100644
index 000000000..e8255ec5f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 55
+ line: 205
+ name: a global var in doc
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 56
+ line: 205
+ start:
+ character: 51
+ line: 205
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-064-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-064-an_argument_in_doc].out
new file mode 100644
index 000000000..c062929c5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-064-an_argument_in_doc].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 64
+ line: 205
+ name: an argument in doc
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-067-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-067-an_argument_in_doc].out
new file mode 100644
index 000000000..01c73703e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-067-an_argument_in_doc].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 67
+ line: 205
+ name: an argument in doc
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-069-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-069-an_argument_in_doc].out
new file mode 100644
index 000000000..9138a62a1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-069-an_argument_in_doc].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 69
+ line: 205
+ name: an argument in doc
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
new file mode 100644
index 000000000..4a85bbe85
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 19
+ line: 208
+ name: an argument in timeout
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 25
+ line: 208
+ start:
+ character: 19
+ line: 208
+ target_range:
+ end:
+ character: 27
+ line: 213
+ start:
+ character: 21
+ line: 213
+ target_selection_range:
+ end:
+ character: 27
+ line: 213
+ start:
+ character: 21
+ line: 213
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-016-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-016-an_argument_in_tags].out
new file mode 100644
index 000000000..c07768d61
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-016-an_argument_in_tags].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 16
+ line: 210
+ name: an argument in tags
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-019-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-019-an_argument_in_tags].out
new file mode 100644
index 000000000..e4879ed2c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-019-an_argument_in_tags].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 19
+ line: 210
+ name: an argument in tags
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-021-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-021-an_argument_in_tags].out
new file mode 100644
index 000000000..e1c07910f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-021-an_argument_in_tags].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 21
+ line: 210
+ name: an argument in tags
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
new file mode 100644
index 000000000..39faffbcf
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 28
+ line: 210
+ name: an argument in tags
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 33
+ line: 210
+ start:
+ character: 28
+ line: 210
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
new file mode 100644
index 000000000..4fd41dc65
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 30
+ line: 210
+ name: an argument in tags
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 33
+ line: 210
+ start:
+ character: 28
+ line: 210
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
new file mode 100644
index 000000000..98f059f2a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 32
+ line: 210
+ name: an argument in tags
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 33
+ line: 210
+ start:
+ character: 28
+ line: 210
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
new file mode 100644
index 000000000..3165c0fc6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 51
+ line: 219
+ name: a global var in doc
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 56
+ line: 219
+ start:
+ character: 51
+ line: 219
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
new file mode 100644
index 000000000..c34433d9f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 53
+ line: 219
+ name: a global var in doc
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 56
+ line: 219
+ start:
+ character: 51
+ line: 219
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
new file mode 100644
index 000000000..c15fef092
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 55
+ line: 219
+ name: a global var in doc
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 56
+ line: 219
+ start:
+ character: 51
+ line: 219
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-064-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-064-an_argument_in_doc].out
new file mode 100644
index 000000000..0f54cdfce
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-064-an_argument_in_doc].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 64
+ line: 219
+ name: an argument in doc
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-067-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-067-an_argument_in_doc].out
new file mode 100644
index 000000000..bd564fe0e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-067-an_argument_in_doc].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 67
+ line: 219
+ name: an argument in doc
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-069-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-069-an_argument_in_doc].out
new file mode 100644
index 000000000..1f0ea0128
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-069-an_argument_in_doc].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 69
+ line: 219
+ name: an argument in doc
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
new file mode 100644
index 000000000..83529a203
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 19
+ line: 222
+ name: an argument in timeout
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 25
+ line: 222
+ start:
+ character: 19
+ line: 222
+ target_range:
+ end:
+ character: 27
+ line: 218
+ start:
+ character: 21
+ line: 218
+ target_selection_range:
+ end:
+ character: 27
+ line: 218
+ start:
+ character: 21
+ line: 218
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-016-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-016-an_argument_in_tags].out
new file mode 100644
index 000000000..33d511a9e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-016-an_argument_in_tags].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 16
+ line: 224
+ name: an argument in tags
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-019-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-019-an_argument_in_tags].out
new file mode 100644
index 000000000..f656a8df7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-019-an_argument_in_tags].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 19
+ line: 224
+ name: an argument in tags
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-021-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-021-an_argument_in_tags].out
new file mode 100644
index 000000000..8ac9085d6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-021-an_argument_in_tags].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 21
+ line: 224
+ name: an argument in tags
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
new file mode 100644
index 000000000..3cbc16c4f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 28
+ line: 224
+ name: an argument in tags
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 33
+ line: 224
+ start:
+ character: 28
+ line: 224
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
new file mode 100644
index 000000000..1514a2e57
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 30
+ line: 224
+ name: an argument in tags
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 33
+ line: 224
+ start:
+ character: 28
+ line: 224
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
new file mode 100644
index 000000000..99b72499e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 32
+ line: 224
+ name: an argument in tags
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 33
+ line: 224
+ start:
+ character: 28
+ line: 224
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-007-Separator].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-007-Separator].out
new file mode 100644
index 000000000..9517e44a7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-007-Separator].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 7
+ line: 1
+ name: Separator
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-012-Separator].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-012-Separator].out
new file mode 100644
index 000000000..9f375f6de
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-012-Separator].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 12
+ line: 1
+ name: Separator
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-017-Separator].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-017-Separator].out
new file mode 100644
index 000000000..047eb2e22
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-017-Separator].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 17
+ line: 1
+ name: Separator
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-018-Robot_Library_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-018-Robot_Library_Import].out
new file mode 100644
index 000000000..71a09bbec
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-018-Robot_Library_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 18
+ line: 1
+ name: Robot Library Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_range:
+ end:
+ character: 0
+ line: 988
+ start:
+ character: 0
+ line: 987
+ target_selection_range:
+ end:
+ character: 0
+ line: 988
+ start:
+ character: 0
+ line: 987
+ target_uri: Collections.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-023-Robot_Library_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-023-Robot_Library_Import].out
new file mode 100644
index 000000000..6f258fca6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-023-Robot_Library_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 1
+ name: Robot Library Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_range:
+ end:
+ character: 0
+ line: 988
+ start:
+ character: 0
+ line: 987
+ target_selection_range:
+ end:
+ character: 0
+ line: 988
+ start:
+ character: 0
+ line: 987
+ target_uri: Collections.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-028-Robot_Library_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-028-Robot_Library_Import].out
new file mode 100644
index 000000000..8f118c5d1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-028-Robot_Library_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 28
+ line: 1
+ name: Robot Library Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_range:
+ end:
+ character: 0
+ line: 988
+ start:
+ character: 0
+ line: 987
+ target_selection_range:
+ end:
+ character: 0
+ line: 988
+ start:
+ character: 0
+ line: 987
+ target_uri: Collections.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-018-library_import_by_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-018-library_import_by_path].out
new file mode 100644
index 000000000..82678e998
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-018-library_import_by_path].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 18
+ line: 4
+ name: library import by path
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 4
+ start:
+ character: 18
+ line: 4
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-020-var_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-020-var_in_library_import].out
new file mode 100644
index 000000000..4a92df18a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-020-var_in_library_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 4
+ name: var in library import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 4
+ start:
+ character: 18
+ line: 4
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-023-var_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-023-var_in_library_import].out
new file mode 100644
index 000000000..2bdff36c4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-023-var_in_library_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 4
+ name: var in library import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 4
+ start:
+ character: 18
+ line: 4
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-025-var_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-025-var_in_library_import].out
new file mode 100644
index 000000000..d4d38f93c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-025-var_in_library_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 25
+ line: 4
+ name: var in library import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 4
+ start:
+ character: 18
+ line: 4
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-033-library_import_by_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-033-library_import_by_path].out
new file mode 100644
index 000000000..cd863d523
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-033-library_import_by_path].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 33
+ line: 4
+ name: library import by path
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 4
+ start:
+ character: 18
+ line: 4
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-048-library_import_by_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-048-library_import_by_path].out
new file mode 100644
index 000000000..8fd7ce54a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-048-library_import_by_path].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 48
+ line: 4
+ name: library import by path
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 4
+ start:
+ character: 18
+ line: 4
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-018-Variables_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-018-Variables_Import].out
new file mode 100644
index 000000000..1754a6189
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-018-Variables_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 18
+ line: 7
+ name: Variables Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 7
+ start:
+ character: 18
+ line: 7
+ target_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
new file mode 100644
index 000000000..226df7e43
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 7
+ name: var in variables import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
+ target_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_selection_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
new file mode 100644
index 000000000..a8415375e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 7
+ name: var in variables import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
+ target_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_selection_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
new file mode 100644
index 000000000..6eaa2e935
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 25
+ line: 7
+ name: var in variables import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
+ target_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_selection_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-033-Variables_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-033-Variables_Import].out
new file mode 100644
index 000000000..233f13838
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-033-Variables_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 33
+ line: 7
+ name: Variables Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 7
+ start:
+ character: 18
+ line: 7
+ target_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-048-Variables_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-048-Variables_Import].out
new file mode 100644
index 000000000..b4b46b869
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-048-Variables_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 48
+ line: 7
+ name: Variables Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 7
+ start:
+ character: 18
+ line: 7
+ target_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-018-built_in_var_in_Resource_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-018-built_in_var_in_Resource_Import].out
new file mode 100644
index 000000000..44b2f3ce7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-018-built_in_var_in_Resource_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 18
+ line: 10
+ name: built in var in Resource Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
new file mode 100644
index 000000000..7ca591687
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 10
+ name: var in resource import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
+ target_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_selection_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
new file mode 100644
index 000000000..e5efffaa2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 10
+ name: var in resource import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
+ target_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_selection_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
new file mode 100644
index 000000000..d54497f31
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 25
+ line: 10
+ name: var in resource import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
+ target_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_selection_range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-040-built_in_var_in_Resource_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-040-built_in_var_in_Resource_Import].out
new file mode 100644
index 000000000..4ca0a0a56
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-040-built_in_var_in_Resource_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 40
+ line: 10
+ name: built in var in Resource Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-062-built_in_var_in_Resource_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-062-built_in_var_in_Resource_Import].out
new file mode 100644
index 000000000..c90ffbdef
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-062-built_in_var_in_Resource_Import].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 62
+ line: 10
+ name: built in var in Resource Import
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 1
+ start:
+ character: 0
+ line: 0
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
new file mode 100644
index 000000000..7efe9727c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 14
+ name: var in Libary import path
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 23
+ line: 14
+ start:
+ character: 20
+ line: 14
+ target_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
new file mode 100644
index 000000000..8f988fde6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 14
+ name: var in Libary import path
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 23
+ line: 14
+ start:
+ character: 20
+ line: 14
+ target_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
new file mode 100644
index 000000000..204e3a526
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 22
+ line: 14
+ name: var in Libary import path
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 23
+ line: 14
+ start:
+ character: 20
+ line: 14
+ target_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
new file mode 100644
index 000000000..392d76d05
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 57
+ line: 14
+ name: var in library parameters
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 64
+ line: 14
+ start:
+ character: 57
+ line: 14
+ target_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
new file mode 100644
index 000000000..595a25015
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 60
+ line: 14
+ name: var in library parameters
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 64
+ line: 14
+ start:
+ character: 57
+ line: 14
+ target_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
new file mode 100644
index 000000000..ec8d67203
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 63
+ line: 14
+ name: var in library parameters
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 64
+ line: 14
+ start:
+ character: 57
+ line: 14
+ target_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-082-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-082-library_alias].out
new file mode 100644
index 000000000..2b0644fdf
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-082-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 82
+ line: 14
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-085-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-085-library_alias].out
new file mode 100644
index 000000000..1a4d3be22
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-085-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 85
+ line: 14
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-088-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-088-library_alias].out
new file mode 100644
index 000000000..8261c104a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-088-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 88
+ line: 14
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
new file mode 100644
index 000000000..2a4594d9d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 2
+ line: 23
+ name: Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
new file mode 100644
index 000000000..931b651ca
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 5
+ line: 23
+ name: Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
new file mode 100644
index 000000000..ca5f519ea
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 8
+ line: 23
+ name: Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_selection_range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
new file mode 100644
index 000000000..db4eadd00
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 2
+ line: 25
+ name: Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
new file mode 100644
index 000000000..9fc8dc9da
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 3
+ line: 25
+ name: Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
new file mode 100644
index 000000000..96464fc0a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 25
+ name: Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_selection_range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
new file mode 100644
index 000000000..b1eff5801
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 2
+ line: 27
+ name: List Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
new file mode 100644
index 000000000..980598cd7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 6
+ line: 27
+ name: List Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
new file mode 100644
index 000000000..0c5b96935
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 9
+ line: 27
+ name: List Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
new file mode 100644
index 000000000..e02339b62
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 2
+ line: 29
+ name: Dict Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
new file mode 100644
index 000000000..ffe8f95ee
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 6
+ line: 29
+ name: Dict Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
new file mode 100644
index 000000000..67711a05f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 9
+ line: 29
+ name: Dict Var declaration
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
new file mode 100644
index 000000000..8bb3347a7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 32
+ start:
+ character: 21
+ line: 32
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
new file mode 100644
index 000000000..79b0ab951
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 32
+ start:
+ character: 21
+ line: 32
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
new file mode 100644
index 000000000..e9fe50e25
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 25
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 32
+ start:
+ character: 21
+ line: 32
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
new file mode 100644
index 000000000..cf3d34dea
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 30
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 38
+ line: 32
+ start:
+ character: 30
+ line: 32
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
new file mode 100644
index 000000000..62f4aceb1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 34
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 38
+ line: 32
+ start:
+ character: 30
+ line: 32
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
new file mode 100644
index 000000000..107def919
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 37
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 38
+ line: 32
+ start:
+ character: 30
+ line: 32
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
new file mode 100644
index 000000000..8d2ca8626
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 42
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 32
+ start:
+ character: 42
+ line: 32
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
new file mode 100644
index 000000000..1feeeb40c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 45
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 32
+ start:
+ character: 42
+ line: 32
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
new file mode 100644
index 000000000..f5ec1c457
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 48
+ line: 32
+ name: var usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 49
+ line: 32
+ start:
+ character: 42
+ line: 32
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-004-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-004-BuiltIn_Keyword].out
new file mode 100644
index 000000000..6c0d96dc7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-004-BuiltIn_Keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 43
+ name: BuiltIn Keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 7
+ line: 43
+ start:
+ character: 4
+ line: 43
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-005-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-005-BuiltIn_Keyword].out
new file mode 100644
index 000000000..7d4470d9d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-005-BuiltIn_Keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 5
+ line: 43
+ name: BuiltIn Keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 7
+ line: 43
+ start:
+ character: 4
+ line: 43
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-006-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-006-BuiltIn_Keyword].out
new file mode 100644
index 000000000..9e24df4c0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-006-BuiltIn_Keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 6
+ line: 43
+ name: BuiltIn Keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 7
+ line: 43
+ start:
+ character: 4
+ line: 43
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
new file mode 100644
index 000000000..bea1d3906
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 19
+ line: 43
+ name: Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 24
+ line: 43
+ start:
+ character: 19
+ line: 43
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
new file mode 100644
index 000000000..a62d80df3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 43
+ name: Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 24
+ line: 43
+ start:
+ character: 19
+ line: 43
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
new file mode 100644
index 000000000..e34b79a0f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 43
+ name: Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 24
+ line: 43
+ start:
+ character: 19
+ line: 43
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
new file mode 100644
index 000000000..17ec05e27
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 47
+ name: List Var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 47
+ start:
+ character: 13
+ line: 47
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
new file mode 100644
index 000000000..04e70985b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 47
+ name: List Var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 47
+ start:
+ character: 13
+ line: 47
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
new file mode 100644
index 000000000..9e6dfd8d7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 47
+ name: List Var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 47
+ start:
+ character: 13
+ line: 47
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
new file mode 100644
index 000000000..b7cf80414
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 49
+ name: List Var as normal var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 49
+ start:
+ character: 13
+ line: 49
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
new file mode 100644
index 000000000..3244fdcd1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 49
+ name: List Var as normal var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 49
+ start:
+ character: 13
+ line: 49
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
new file mode 100644
index 000000000..a94d36226
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 49
+ name: List Var as normal var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 49
+ start:
+ character: 13
+ line: 49
+ target_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_selection_range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
new file mode 100644
index 000000000..fece8b2aa
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 52
+ name: Dict Var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 52
+ start:
+ character: 13
+ line: 52
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
new file mode 100644
index 000000000..b0235ca01
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 52
+ name: Dict Var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 52
+ start:
+ character: 13
+ line: 52
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
new file mode 100644
index 000000000..ac50687b3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 52
+ name: Dict Var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 52
+ start:
+ character: 13
+ line: 52
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
new file mode 100644
index 000000000..23bb8aaf3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 54
+ name: Dict Var as normal var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 54
+ start:
+ character: 13
+ line: 54
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
new file mode 100644
index 000000000..3b0e98cec
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 54
+ name: Dict Var as normal var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 54
+ start:
+ character: 13
+ line: 54
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
new file mode 100644
index 000000000..325e16336
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 54
+ name: Dict Var as normal var
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 21
+ line: 54
+ start:
+ character: 13
+ line: 54
+ target_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_selection_range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-004-Robot_Namespace_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-004-Robot_Namespace_from_Library].out
new file mode 100644
index 000000000..0645860ff
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-004-Robot_Namespace_from_Library].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 59
+ name: Robot Namespace from Library
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 59
+ start:
+ character: 4
+ line: 59
+ target_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_selection_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-009-Robot_Namespace_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-009-Robot_Namespace_from_Library].out
new file mode 100644
index 000000000..ca490f2a9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-009-Robot_Namespace_from_Library].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 9
+ line: 59
+ name: Robot Namespace from Library
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 59
+ start:
+ character: 4
+ line: 59
+ target_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_selection_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-014-Robot_Namespace_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-014-Robot_Namespace_from_Library].out
new file mode 100644
index 000000000..4b6f0bb82
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-014-Robot_Namespace_from_Library].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 14
+ line: 59
+ name: Robot Namespace from Library
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 59
+ start:
+ character: 4
+ line: 59
+ target_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_selection_range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-016-Robot_Library_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-016-Robot_Library_Keyword].out
new file mode 100644
index 000000000..ce6984de7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-016-Robot_Library_Keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 16
+ line: 59
+ name: Robot Library Keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 30
+ line: 59
+ start:
+ character: 16
+ line: 59
+ target_range:
+ end:
+ character: 0
+ line: 958
+ start:
+ character: 0
+ line: 957
+ target_selection_range:
+ end:
+ character: 0
+ line: 958
+ start:
+ character: 0
+ line: 957
+ target_uri: Collections.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-023-Robot_Library_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-023-Robot_Library_Keyword].out
new file mode 100644
index 000000000..11c1b6880
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-023-Robot_Library_Keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 59
+ name: Robot Library Keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 30
+ line: 59
+ start:
+ character: 16
+ line: 59
+ target_range:
+ end:
+ character: 0
+ line: 958
+ start:
+ character: 0
+ line: 957
+ target_selection_range:
+ end:
+ character: 0
+ line: 958
+ start:
+ character: 0
+ line: 957
+ target_uri: Collections.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-029-Robot_Library_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-029-Robot_Library_Keyword].out
new file mode 100644
index 000000000..c71975236
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-029-Robot_Library_Keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 29
+ line: 59
+ name: Robot Library Keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 30
+ line: 59
+ start:
+ character: 16
+ line: 59
+ target_range:
+ end:
+ character: 0
+ line: 958
+ start:
+ character: 0
+ line: 957
+ target_selection_range:
+ end:
+ character: 0
+ line: 958
+ start:
+ character: 0
+ line: 957
+ target_uri: Collections.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
new file mode 100644
index 000000000..40a3bfb4b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 36
+ line: 59
+ name: Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 42
+ line: 59
+ start:
+ character: 36
+ line: 59
+ target_range:
+ end:
+ character: 8
+ line: 22
+ start:
+ character: 2
+ line: 22
+ target_selection_range:
+ end:
+ character: 8
+ line: 22
+ start:
+ character: 2
+ line: 22
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
new file mode 100644
index 000000000..9dcf09b8d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 39
+ line: 59
+ name: Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 42
+ line: 59
+ start:
+ character: 36
+ line: 59
+ target_range:
+ end:
+ character: 8
+ line: 22
+ start:
+ character: 2
+ line: 22
+ target_selection_range:
+ end:
+ character: 8
+ line: 22
+ start:
+ character: 2
+ line: 22
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
new file mode 100644
index 000000000..a60432e01
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 41
+ line: 59
+ name: Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 42
+ line: 59
+ start:
+ character: 36
+ line: 59
+ target_range:
+ end:
+ character: 8
+ line: 22
+ start:
+ character: 2
+ line: 22
+ target_selection_range:
+ end:
+ character: 8
+ line: 22
+ start:
+ character: 2
+ line: 22
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-004-Robot_BuilIn_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-004-Robot_BuilIn_Namespace].out
new file mode 100644
index 000000000..d47b37ba8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-004-Robot_BuilIn_Namespace].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 64
+ name: Robot BuilIn Namespace
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 64
+ start:
+ character: 4
+ line: 64
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-007-Robot_BuilIn_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-007-Robot_BuilIn_Namespace].out
new file mode 100644
index 000000000..a5e5764ee
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-007-Robot_BuilIn_Namespace].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 7
+ line: 64
+ name: Robot BuilIn Namespace
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 64
+ start:
+ character: 4
+ line: 64
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-010-Robot_BuilIn_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-010-Robot_BuilIn_Namespace].out
new file mode 100644
index 000000000..41bdcccbd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-010-Robot_BuilIn_Namespace].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 10
+ line: 64
+ name: Robot BuilIn Namespace
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 64
+ start:
+ character: 4
+ line: 64
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-012-BuiltIn_Keyword_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-012-BuiltIn_Keyword_with_Namespace].out
new file mode 100644
index 000000000..e096836ec
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-012-BuiltIn_Keyword_with_Namespace].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 12
+ line: 64
+ name: BuiltIn Keyword with Namespace
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 64
+ start:
+ character: 12
+ line: 64
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-013-BuiltIn_Keyword_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-013-BuiltIn_Keyword_with_Namespace].out
new file mode 100644
index 000000000..dc16a0fd9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-013-BuiltIn_Keyword_with_Namespace].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 64
+ name: BuiltIn Keyword with Namespace
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 64
+ start:
+ character: 12
+ line: 64
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-014-BuiltIn_Keyword_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-014-BuiltIn_Keyword_with_Namespace].out
new file mode 100644
index 000000000..6f824a509
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-014-BuiltIn_Keyword_with_Namespace].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 14
+ line: 64
+ name: BuiltIn Keyword with Namespace
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 64
+ start:
+ character: 12
+ line: 64
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
new file mode 100644
index 000000000..52e38c418
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 68
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
new file mode 100644
index 000000000..afad4b22e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 14
+ line: 68
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
new file mode 100644
index 000000000..79c6190d8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 15
+ line: 68
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
new file mode 100644
index 000000000..a1e856600
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 68
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
new file mode 100644
index 000000000..b1cb2126a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 25
+ line: 68
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
new file mode 100644
index 000000000..de0d59df6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 27
+ line: 68
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
new file mode 100644
index 000000000..23b9b8a1f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 71
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 20
+ line: 71
+ start:
+ character: 17
+ line: 71
+ target_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
new file mode 100644
index 000000000..17be9c684
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 18
+ line: 71
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 20
+ line: 71
+ start:
+ character: 17
+ line: 71
+ target_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
new file mode 100644
index 000000000..7d355d48d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 19
+ line: 71
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 20
+ line: 71
+ start:
+ character: 17
+ line: 71
+ target_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_selection_range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
new file mode 100644
index 000000000..e0c65040f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 24
+ line: 71
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 71
+ start:
+ character: 24
+ line: 71
+ target_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
new file mode 100644
index 000000000..e73a085ea
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 26
+ line: 71
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 71
+ start:
+ character: 24
+ line: 71
+ target_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
new file mode 100644
index 000000000..fe1822274
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 28
+ line: 71
+ name: For Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 71
+ start:
+ character: 24
+ line: 71
+ target_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_selection_range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-013-Imported_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-013-Imported_Variable].out
new file mode 100644
index 000000000..ed9e2c89e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-013-Imported_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 75
+ name: Imported Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 27
+ line: 75
+ start:
+ character: 13
+ line: 75
+ target_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-020-Imported_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-020-Imported_Variable].out
new file mode 100644
index 000000000..d59510da8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-020-Imported_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 20
+ line: 75
+ name: Imported Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 27
+ line: 75
+ start:
+ character: 13
+ line: 75
+ target_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-026-Imported_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-026-Imported_Variable].out
new file mode 100644
index 000000000..7c53a95ac
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-026-Imported_Variable].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 26
+ line: 75
+ name: Imported Variable
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 27
+ line: 75
+ start:
+ character: 13
+ line: 75
+ target_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_selection_range:
+ end:
+ character: 0
+ line: 0
+ start:
+ character: 0
+ line: 0
+ target_uri: myvariables.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-004-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-004-Keyword_from_resource].out
new file mode 100644
index 000000000..206ba21a2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-004-Keyword_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 78
+ name: Keyword from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 30
+ line: 78
+ start:
+ character: 4
+ line: 78
+ target_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-017-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-017-Keyword_from_resource].out
new file mode 100644
index 000000000..3f0d3acbc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-017-Keyword_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 78
+ name: Keyword from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 30
+ line: 78
+ start:
+ character: 4
+ line: 78
+ target_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-029-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-029-Keyword_from_resource].out
new file mode 100644
index 000000000..aec11ca49
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-029-Keyword_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 29
+ line: 78
+ name: Keyword from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 30
+ line: 78
+ start:
+ character: 4
+ line: 78
+ target_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-004-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-004-Namespace_from_resource].out
new file mode 100644
index 000000000..404e7cee0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-004-Namespace_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 81
+ name: Namespace from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 17
+ line: 81
+ start:
+ character: 4
+ line: 81
+ target_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_selection_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-010-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-010-Namespace_from_resource].out
new file mode 100644
index 000000000..e5a3098c3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-010-Namespace_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 10
+ line: 81
+ name: Namespace from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 17
+ line: 81
+ start:
+ character: 4
+ line: 81
+ target_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_selection_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-016-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-016-Namespace_from_resource].out
new file mode 100644
index 000000000..fc1fb0601
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-016-Namespace_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 16
+ line: 81
+ name: Namespace from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 17
+ line: 81
+ start:
+ character: 4
+ line: 81
+ target_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_selection_range:
+ end:
+ character: 63
+ line: 10
+ start:
+ character: 18
+ line: 10
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-018-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-018-Keyword_from_resource].out
new file mode 100644
index 000000000..ce995ea4e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-018-Keyword_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 18
+ line: 81
+ name: Keyword from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 44
+ line: 81
+ start:
+ character: 18
+ line: 81
+ target_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-031-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-031-Keyword_from_resource].out
new file mode 100644
index 000000000..3e3bb1197
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-031-Keyword_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 31
+ line: 81
+ name: Keyword from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 44
+ line: 81
+ start:
+ character: 18
+ line: 81
+ target_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-043-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-043-Keyword_from_resource].out
new file mode 100644
index 000000000..9a755bdf4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-043-Keyword_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 43
+ line: 81
+ name: Keyword from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 44
+ line: 81
+ start:
+ character: 18
+ line: 81
+ target_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_selection_range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-004-call_a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-004-call_a_simple_keyword].out
new file mode 100644
index 000000000..79cc2aa9e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-004-call_a_simple_keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 84
+ name: call a simple keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 20
+ line: 84
+ start:
+ character: 4
+ line: 84
+ target_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-012-call_a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-012-call_a_simple_keyword].out
new file mode 100644
index 000000000..f235997e2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-012-call_a_simple_keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 12
+ line: 84
+ name: call a simple keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 20
+ line: 84
+ start:
+ character: 4
+ line: 84
+ target_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-019-call_a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-019-call_a_simple_keyword].out
new file mode 100644
index 000000000..644fb3192
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-019-call_a_simple_keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 19
+ line: 84
+ name: call a simple keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 20
+ line: 84
+ start:
+ character: 4
+ line: 84
+ target_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-004-unknown_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-004-unknown_keyword].out
new file mode 100644
index 000000000..025ff0b0f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-004-unknown_keyword].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 4
+ line: 86
+ name: unknown keyword
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-013-unknown_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-013-unknown_keyword].out
new file mode 100644
index 000000000..c45011285
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-013-unknown_keyword].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 13
+ line: 86
+ name: unknown keyword
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-021-unknown_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-021-unknown_keyword].out
new file mode 100644
index 000000000..b48151e28
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-021-unknown_keyword].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 21
+ line: 86
+ name: unknown keyword
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-015-a_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-015-a_keyword_in_setup].out
new file mode 100644
index 000000000..db90a6592
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-015-a_keyword_in_setup].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 15
+ line: 92
+ name: a keyword in setup
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 92
+ start:
+ character: 15
+ line: 92
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-016-a_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-016-a_keyword_in_setup].out
new file mode 100644
index 000000000..e2a2edfee
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-016-a_keyword_in_setup].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 16
+ line: 92
+ name: a keyword in setup
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 92
+ start:
+ character: 15
+ line: 92
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-017-a_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-017-a_keyword_in_setup].out
new file mode 100644
index 000000000..055c64617
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-017-a_keyword_in_setup].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 92
+ name: a keyword in setup
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 92
+ start:
+ character: 15
+ line: 92
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-018-a_namespace_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-018-a_namespace_in_teardown].out
new file mode 100644
index 000000000..077ea5fe2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-018-a_namespace_in_teardown].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 18
+ line: 94
+ name: a namespace in teardown
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 25
+ line: 94
+ start:
+ character: 18
+ line: 94
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-021-a_namespace_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-021-a_namespace_in_teardown].out
new file mode 100644
index 000000000..86a8d6dbe
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-021-a_namespace_in_teardown].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 94
+ name: a namespace in teardown
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 25
+ line: 94
+ start:
+ character: 18
+ line: 94
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-024-a_namespace_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-024-a_namespace_in_teardown].out
new file mode 100644
index 000000000..787427c85
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-024-a_namespace_in_teardown].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 24
+ line: 94
+ name: a namespace in teardown
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 25
+ line: 94
+ start:
+ character: 18
+ line: 94
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-026-a_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-026-a_keyword_in_teardown].out
new file mode 100644
index 000000000..1fbe675d5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-026-a_keyword_in_teardown].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 26
+ line: 94
+ name: a keyword in teardown
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 94
+ start:
+ character: 26
+ line: 94
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-027-a_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-027-a_keyword_in_teardown].out
new file mode 100644
index 000000000..21221bc7b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-027-a_keyword_in_teardown].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 27
+ line: 94
+ name: a keyword in teardown
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 94
+ start:
+ character: 26
+ line: 94
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-028-a_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-028-a_keyword_in_teardown].out
new file mode 100644
index 000000000..6937087a0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-028-a_keyword_in_teardown].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 28
+ line: 94
+ name: a keyword in teardown
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 94
+ start:
+ character: 26
+ line: 94
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-018-a_namespace_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-018-a_namespace_in_template].out
new file mode 100644
index 000000000..be095a96d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-018-a_namespace_in_template].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 18
+ line: 99
+ name: a namespace in template
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 25
+ line: 99
+ start:
+ character: 18
+ line: 99
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-021-a_namespace_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-021-a_namespace_in_template].out
new file mode 100644
index 000000000..1728845bc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-021-a_namespace_in_template].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 99
+ name: a namespace in template
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 25
+ line: 99
+ start:
+ character: 18
+ line: 99
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-024-a_namespace_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-024-a_namespace_in_template].out
new file mode 100644
index 000000000..dbca761c9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-024-a_namespace_in_template].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 24
+ line: 99
+ name: a namespace in template
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 25
+ line: 99
+ start:
+ character: 18
+ line: 99
+ target_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_selection_range:
+ end:
+ character: 0
+ line: 4095
+ start:
+ character: 0
+ line: 4094
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-026-a_keyword_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-026-a_keyword_in_template].out
new file mode 100644
index 000000000..6325a90fd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-026-a_keyword_in_template].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 26
+ line: 99
+ name: a keyword in template
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 99
+ start:
+ character: 26
+ line: 99
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-027-a_keyword_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-027-a_keyword_in_template].out
new file mode 100644
index 000000000..05c38e999
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-027-a_keyword_in_template].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 27
+ line: 99
+ name: a keyword in template
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 99
+ start:
+ character: 26
+ line: 99
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-028-a_keyword_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-028-a_keyword_in_template].out
new file mode 100644
index 000000000..64707c9dc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-028-a_keyword_in_template].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 28
+ line: 99
+ name: a keyword in template
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 29
+ line: 99
+ start:
+ character: 26
+ line: 99
+ target_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_selection_range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ target_uri: BuiltIn.py
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-109-004-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-109-004-a_keyword_with_emoji].out
new file mode 100644
index 000000000..f87155267
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-109-004-a_keyword_with_emoji].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 109
+ name: a keyword with emoji
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 6
+ line: 109
+ start:
+ character: 4
+ line: 109
+ target_range:
+ end:
+ character: 2
+ line: 26
+ start:
+ character: 0
+ line: 26
+ target_selection_range:
+ end:
+ character: 2
+ line: 26
+ start:
+ character: 0
+ line: 26
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-109-005-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-109-005-a_keyword_with_emoji].out
new file mode 100644
index 000000000..44ce504b4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-109-005-a_keyword_with_emoji].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 5
+ line: 109
+ name: a keyword with emoji
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 6
+ line: 109
+ start:
+ character: 4
+ line: 109
+ target_range:
+ end:
+ character: 2
+ line: 26
+ start:
+ character: 0
+ line: 26
+ target_selection_range:
+ end:
+ character: 2
+ line: 26
+ start:
+ character: 0
+ line: 26
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
new file mode 100644
index 000000000..7083c0456
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 10
+ line: 113
+ name: variable in if
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 113
+ start:
+ character: 10
+ line: 113
+ target_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_selection_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
new file mode 100644
index 000000000..7805da4bc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 116
+ name: variable in else if
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 116
+ start:
+ character: 17
+ line: 116
+ target_range:
+ end:
+ character: 3
+ line: 37
+ start:
+ character: 2
+ line: 37
+ target_selection_range:
+ end:
+ character: 3
+ line: 37
+ start:
+ character: 2
+ line: 37
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
new file mode 100644
index 000000000..e2b4e3ec5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 9
+ line: 121
+ name: variable in if expression
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 10
+ line: 121
+ start:
+ character: 9
+ line: 121
+ target_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_selection_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
new file mode 100644
index 000000000..3053203b2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 16
+ line: 124
+ name: variable in else if expression
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 17
+ line: 124
+ start:
+ character: 16
+ line: 124
+ target_range:
+ end:
+ character: 3
+ line: 37
+ start:
+ character: 2
+ line: 37
+ target_selection_range:
+ end:
+ character: 3
+ line: 37
+ start:
+ character: 2
+ line: 37
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
new file mode 100644
index 000000000..3aa98776d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 10
+ line: 129
+ name: variable in inline if expression
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 129
+ start:
+ character: 10
+ line: 129
+ target_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_selection_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
new file mode 100644
index 000000000..1d82bbf19
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 42
+ line: 129
+ name: variable in inline else if expression
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 43
+ line: 129
+ start:
+ character: 42
+ line: 129
+ target_range:
+ end:
+ character: 3
+ line: 37
+ start:
+ character: 2
+ line: 37
+ target_selection_range:
+ end:
+ character: 3
+ line: 37
+ start:
+ character: 2
+ line: 37
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
new file mode 100644
index 000000000..69ac841ce
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 9
+ line: 133
+ name: variable in inline if expression
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 10
+ line: 133
+ start:
+ character: 9
+ line: 133
+ target_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_selection_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
new file mode 100644
index 000000000..89d2d8a9a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 39
+ line: 133
+ name: variable in inline else if expression
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 40
+ line: 133
+ start:
+ character: 39
+ line: 133
+ target_range:
+ end:
+ character: 3
+ line: 37
+ start:
+ character: 2
+ line: 37
+ target_selection_range:
+ end:
+ character: 3
+ line: 37
+ start:
+ character: 2
+ line: 37
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
new file mode 100644
index 000000000..220538b57
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 25
+ line: 136
+ name: expression in keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 136
+ start:
+ character: 25
+ line: 136
+ target_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_selection_range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-041-short_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-041-short_keyword_argument].out
new file mode 100644
index 000000000..f274783de
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-041-short_keyword_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 41
+ line: 143
+ name: short keyword argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 42
+ line: 143
+ start:
+ character: 41
+ line: 143
+ target_range:
+ end:
+ character: 23
+ line: 23
+ start:
+ character: 19
+ line: 23
+ target_selection_range:
+ end:
+ character: 22
+ line: 23
+ start:
+ character: 21
+ line: 23
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-048-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-048-keyword_argument_with_spaces].out
new file mode 100644
index 000000000..510b20404
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-048-keyword_argument_with_spaces].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 48
+ line: 143
+ name: keyword argument with spaces
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 59
+ line: 143
+ start:
+ character: 48
+ line: 143
+ target_range:
+ end:
+ character: 41
+ line: 23
+ start:
+ character: 27
+ line: 23
+ target_selection_range:
+ end:
+ character: 40
+ line: 23
+ start:
+ character: 29
+ line: 23
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-053-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-053-keyword_argument_with_spaces].out
new file mode 100644
index 000000000..6503cd257
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-053-keyword_argument_with_spaces].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 53
+ line: 143
+ name: keyword argument with spaces
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 59
+ line: 143
+ start:
+ character: 48
+ line: 143
+ target_range:
+ end:
+ character: 41
+ line: 23
+ start:
+ character: 27
+ line: 23
+ target_selection_range:
+ end:
+ character: 40
+ line: 23
+ start:
+ character: 29
+ line: 23
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-058-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-058-keyword_argument_with_spaces].out
new file mode 100644
index 000000000..c679c631a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-058-keyword_argument_with_spaces].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 58
+ line: 143
+ name: keyword argument with spaces
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 59
+ line: 143
+ start:
+ character: 48
+ line: 143
+ target_range:
+ end:
+ character: 41
+ line: 23
+ start:
+ character: 27
+ line: 23
+ target_selection_range:
+ end:
+ character: 40
+ line: 23
+ start:
+ character: 29
+ line: 23
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-001-a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-001-a_simple_keyword].out
new file mode 100644
index 000000000..2e8b30701
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-001-a_simple_keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 1
+ line: 149
+ name: a simple keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-008-a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-008-a_simple_keyword].out
new file mode 100644
index 000000000..84bc27169
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-008-a_simple_keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 8
+ line: 149
+ name: a simple keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-015-a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-015-a_simple_keyword].out
new file mode 100644
index 000000000..dbd22f9bc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-015-a_simple_keyword].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 15
+ line: 149
+ name: a simple keyword
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_selection_range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
new file mode 100644
index 000000000..c0d8cab53
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 155
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
new file mode 100644
index 000000000..e5b45a749
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 23
+ line: 155
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
new file mode 100644
index 000000000..f5bd445a5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 25
+ line: 155
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
new file mode 100644
index 000000000..2ce131597
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 30
+ line: 155
+ name: a default value
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 35
+ line: 155
+ start:
+ character: 30
+ line: 155
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
new file mode 100644
index 000000000..9d51f1860
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 32
+ line: 155
+ name: a default value
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 35
+ line: 155
+ start:
+ character: 30
+ line: 155
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
new file mode 100644
index 000000000..452a44add
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 34
+ line: 155
+ name: a default value
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 35
+ line: 155
+ start:
+ character: 30
+ line: 155
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-158-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-158-013-argument_usage].out
new file mode 100644
index 000000000..fdc8d0e18
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-158-013-argument_usage].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 13
+ line: 158
+ name: argument usage
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-158-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-158-014-argument_usage].out
new file mode 100644
index 000000000..aa1d011cf
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-158-014-argument_usage].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 14
+ line: 158
+ name: argument usage
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
new file mode 100644
index 000000000..865e4fe5a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 160
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 160
+ start:
+ character: 13
+ line: 160
+ target_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
new file mode 100644
index 000000000..67501186c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 15
+ line: 160
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 160
+ start:
+ character: 13
+ line: 160
+ target_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
new file mode 100644
index 000000000..f0ad689e2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 160
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 160
+ start:
+ character: 13
+ line: 160
+ target_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_selection_range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
new file mode 100644
index 000000000..3b1f57c25
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 164
+ name: an argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_selection_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
new file mode 100644
index 000000000..868e40459
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 22
+ line: 164
+ name: an argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_selection_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
new file mode 100644
index 000000000..c6855781f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 30
+ line: 164
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
new file mode 100644
index 000000000..bc6603370
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 32
+ line: 164
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
new file mode 100644
index 000000000..f5299abab
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 34
+ line: 164
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
new file mode 100644
index 000000000..4cf7f16da
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 39
+ line: 164
+ name: a default value
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 44
+ line: 164
+ start:
+ character: 39
+ line: 164
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
new file mode 100644
index 000000000..ae530e453
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 41
+ line: 164
+ name: a default value
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 44
+ line: 164
+ start:
+ character: 39
+ line: 164
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
new file mode 100644
index 000000000..e48ac204d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 43
+ line: 164
+ name: a default value
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 44
+ line: 164
+ start:
+ character: 39
+ line: 164
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
new file mode 100644
index 000000000..67436f28b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 168
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 168
+ start:
+ character: 13
+ line: 168
+ target_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_selection_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
new file mode 100644
index 000000000..8489525fc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 14
+ line: 168
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 168
+ start:
+ character: 13
+ line: 168
+ target_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_selection_range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
new file mode 100644
index 000000000..aeb46e115
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 170
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 170
+ start:
+ character: 13
+ line: 170
+ target_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
new file mode 100644
index 000000000..ff5922211
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 15
+ line: 170
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 170
+ start:
+ character: 13
+ line: 170
+ target_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
new file mode 100644
index 000000000..518933599
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 170
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 18
+ line: 170
+ start:
+ character: 13
+ line: 170
+ target_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_selection_range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
new file mode 100644
index 000000000..1389c2ae6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 174
+ name: an argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_selection_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
new file mode 100644
index 000000000..91386967d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 22
+ line: 174
+ name: an argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_selection_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
new file mode 100644
index 000000000..ba3e6351b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 30
+ line: 174
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
new file mode 100644
index 000000000..14c6de2b7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 33
+ line: 174
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
new file mode 100644
index 000000000..145813fd0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 35
+ line: 174
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-039-a_default_value].out
new file mode 100644
index 000000000..594b8478e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-039-a_default_value].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 39
+ line: 174
+ name: a default value
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
new file mode 100644
index 000000000..001e62bda
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 40
+ line: 174
+ name: a default value
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 42
+ line: 174
+ start:
+ character: 40
+ line: 174
+ target_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_selection_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-048-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-048-an_overridden_argument].out
new file mode 100644
index 000000000..c85c0a7e4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-048-an_overridden_argument].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 48
+ line: 174
+ name: an overridden argument
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
new file mode 100644
index 000000000..2f9ed615a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 49
+ line: 174
+ name: an overridden argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 51
+ line: 174
+ start:
+ character: 49
+ line: 174
+ target_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_selection_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-054-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-054-a_default_value_from_overriden_argument].out
new file mode 100644
index 000000000..3ad3538d8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-054-a_default_value_from_overriden_argument].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 54
+ line: 174
+ name: a default value from overriden argument
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
new file mode 100644
index 000000000..8f60adbfe
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 56
+ line: 174
+ name: a default value from overriden argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 61
+ line: 174
+ start:
+ character: 55
+ line: 174
+ target_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
new file mode 100644
index 000000000..e58d291f5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 58
+ line: 174
+ name: a default value from overriden argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 61
+ line: 174
+ start:
+ character: 55
+ line: 174
+ target_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
new file mode 100644
index 000000000..79b34a22b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 180
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 180
+ start:
+ character: 13
+ line: 180
+ target_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_selection_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
new file mode 100644
index 000000000..6aafa0cf7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 14
+ line: 180
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 180
+ start:
+ character: 13
+ line: 180
+ target_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_selection_range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
new file mode 100644
index 000000000..99b407107
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 182
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 19
+ line: 182
+ start:
+ character: 13
+ line: 182
+ target_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
new file mode 100644
index 000000000..a2d19cd1a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 15
+ line: 182
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 19
+ line: 182
+ start:
+ character: 13
+ line: 182
+ target_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
new file mode 100644
index 000000000..b90b18f53
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 17
+ line: 182
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 19
+ line: 182
+ start:
+ character: 13
+ line: 182
+ target_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_selection_range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
new file mode 100644
index 000000000..5be0a2e62
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 21
+ line: 187
+ name: an argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 22
+ line: 187
+ start:
+ character: 21
+ line: 187
+ target_range:
+ end:
+ character: 22
+ line: 187
+ start:
+ character: 21
+ line: 187
+ target_selection_range:
+ end:
+ character: 22
+ line: 187
+ start:
+ character: 21
+ line: 187
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
new file mode 100644
index 000000000..44fda0315
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 29
+ line: 187
+ name: another argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 30
+ line: 187
+ start:
+ character: 29
+ line: 187
+ target_range:
+ end:
+ character: 30
+ line: 187
+ start:
+ character: 29
+ line: 187
+ target_selection_range:
+ end:
+ character: 30
+ line: 187
+ start:
+ character: 29
+ line: 187
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
new file mode 100644
index 000000000..3499f3dc6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 34
+ line: 187
+ name: argument usage in argument
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 35
+ line: 187
+ start:
+ character: 34
+ line: 187
+ target_range:
+ end:
+ character: 22
+ line: 187
+ start:
+ character: 21
+ line: 187
+ target_selection_range:
+ end:
+ character: 22
+ line: 187
+ start:
+ character: 21
+ line: 187
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
new file mode 100644
index 000000000..800293ec2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 191
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 14
+ line: 191
+ start:
+ character: 13
+ line: 191
+ target_range:
+ end:
+ character: 22
+ line: 187
+ start:
+ character: 21
+ line: 187
+ target_selection_range:
+ end:
+ character: 22
+ line: 187
+ start:
+ character: 21
+ line: 187
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
new file mode 100644
index 000000000..e4a2311a1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 13
+ line: 193
+ name: argument usage
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 14
+ line: 193
+ start:
+ character: 13
+ line: 193
+ target_range:
+ end:
+ character: 30
+ line: 187
+ start:
+ character: 29
+ line: 187
+ target_selection_range:
+ end:
+ character: 30
+ line: 187
+ start:
+ character: 29
+ line: 187
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-004-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-004-library_alias].out
new file mode 100644
index 000000000..a0743929a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-004-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 197
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 197
+ start:
+ character: 4
+ line: 197
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-007-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-007-library_alias].out
new file mode 100644
index 000000000..dd0ab8d85
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-007-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 7
+ line: 197
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 197
+ start:
+ character: 4
+ line: 197
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-010-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-010-library_alias].out
new file mode 100644
index 000000000..08b0d544c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-010-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 10
+ line: 197
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 197
+ start:
+ character: 4
+ line: 197
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-004-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-004-library_alias].out
new file mode 100644
index 000000000..4d8419472
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-004-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 199
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 199
+ start:
+ character: 4
+ line: 199
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-007-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-007-library_alias].out
new file mode 100644
index 000000000..daf96590f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-007-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 7
+ line: 199
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 199
+ start:
+ character: 4
+ line: 199
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-010-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-010-library_alias].out
new file mode 100644
index 000000000..6672d1c48
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-010-library_alias].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 10
+ line: 199
+ name: library alias
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 11
+ line: 199
+ start:
+ character: 4
+ line: 199
+ target_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_selection_range:
+ end:
+ character: 89
+ line: 14
+ start:
+ character: 82
+ line: 14
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-004-library_alias_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-004-library_alias_from_resource].out
new file mode 100644
index 000000000..d417e0d41
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-004-library_alias_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 4
+ line: 201
+ name: library alias from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 201
+ start:
+ character: 4
+ line: 201
+ target_range:
+ end:
+ character: 71
+ line: 1
+ start:
+ character: 60
+ line: 1
+ target_selection_range:
+ end:
+ character: 71
+ line: 1
+ start:
+ character: 60
+ line: 1
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-009-library_alias_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-009-library_alias_from_resource].out
new file mode 100644
index 000000000..52c662e86
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-009-library_alias_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 9
+ line: 201
+ name: library alias from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 201
+ start:
+ character: 4
+ line: 201
+ target_range:
+ end:
+ character: 71
+ line: 1
+ start:
+ character: 60
+ line: 1
+ target_selection_range:
+ end:
+ character: 71
+ line: 1
+ start:
+ character: 60
+ line: 1
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-014-library_alias_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-014-library_alias_from_resource].out
new file mode 100644
index 000000000..886126ef9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-014-library_alias_from_resource].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 14
+ line: 201
+ name: library alias from resource
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 15
+ line: 201
+ start:
+ character: 4
+ line: 201
+ target_range:
+ end:
+ character: 71
+ line: 1
+ start:
+ character: 60
+ line: 1
+ target_selection_range:
+ end:
+ character: 71
+ line: 1
+ start:
+ character: 60
+ line: 1
+ target_uri: firstresource.resource
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
new file mode 100644
index 000000000..18898925e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 51
+ line: 205
+ name: a global var in doc
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 56
+ line: 205
+ start:
+ character: 51
+ line: 205
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
new file mode 100644
index 000000000..e00559044
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 53
+ line: 205
+ name: a global var in doc
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 56
+ line: 205
+ start:
+ character: 51
+ line: 205
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
new file mode 100644
index 000000000..e8255ec5f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 55
+ line: 205
+ name: a global var in doc
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 56
+ line: 205
+ start:
+ character: 51
+ line: 205
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-064-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-064-an_argument_in_doc].out
new file mode 100644
index 000000000..c062929c5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-064-an_argument_in_doc].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 64
+ line: 205
+ name: an argument in doc
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-067-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-067-an_argument_in_doc].out
new file mode 100644
index 000000000..01c73703e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-067-an_argument_in_doc].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 67
+ line: 205
+ name: an argument in doc
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-069-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-069-an_argument_in_doc].out
new file mode 100644
index 000000000..9138a62a1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-069-an_argument_in_doc].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 69
+ line: 205
+ name: an argument in doc
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
new file mode 100644
index 000000000..4a85bbe85
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 19
+ line: 208
+ name: an argument in timeout
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 25
+ line: 208
+ start:
+ character: 19
+ line: 208
+ target_range:
+ end:
+ character: 27
+ line: 213
+ start:
+ character: 21
+ line: 213
+ target_selection_range:
+ end:
+ character: 27
+ line: 213
+ start:
+ character: 21
+ line: 213
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-016-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-016-an_argument_in_tags].out
new file mode 100644
index 000000000..c07768d61
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-016-an_argument_in_tags].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 16
+ line: 210
+ name: an argument in tags
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-019-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-019-an_argument_in_tags].out
new file mode 100644
index 000000000..e4879ed2c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-019-an_argument_in_tags].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 19
+ line: 210
+ name: an argument in tags
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-021-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-021-an_argument_in_tags].out
new file mode 100644
index 000000000..e1c07910f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-021-an_argument_in_tags].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 21
+ line: 210
+ name: an argument in tags
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
new file mode 100644
index 000000000..39faffbcf
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 28
+ line: 210
+ name: an argument in tags
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 33
+ line: 210
+ start:
+ character: 28
+ line: 210
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
new file mode 100644
index 000000000..4fd41dc65
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 30
+ line: 210
+ name: an argument in tags
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 33
+ line: 210
+ start:
+ character: 28
+ line: 210
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
new file mode 100644
index 000000000..98f059f2a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 32
+ line: 210
+ name: an argument in tags
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 33
+ line: 210
+ start:
+ character: 28
+ line: 210
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
new file mode 100644
index 000000000..3165c0fc6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 51
+ line: 219
+ name: a global var in doc
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 56
+ line: 219
+ start:
+ character: 51
+ line: 219
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
new file mode 100644
index 000000000..c34433d9f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 53
+ line: 219
+ name: a global var in doc
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 56
+ line: 219
+ start:
+ character: 51
+ line: 219
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
new file mode 100644
index 000000000..c15fef092
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 55
+ line: 219
+ name: a global var in doc
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 56
+ line: 219
+ start:
+ character: 51
+ line: 219
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-064-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-064-an_argument_in_doc].out
new file mode 100644
index 000000000..0f54cdfce
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-064-an_argument_in_doc].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 64
+ line: 219
+ name: an argument in doc
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-067-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-067-an_argument_in_doc].out
new file mode 100644
index 000000000..bd564fe0e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-067-an_argument_in_doc].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 67
+ line: 219
+ name: an argument in doc
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-069-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-069-an_argument_in_doc].out
new file mode 100644
index 000000000..1f0ea0128
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-069-an_argument_in_doc].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 69
+ line: 219
+ name: an argument in doc
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
new file mode 100644
index 000000000..83529a203
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 19
+ line: 222
+ name: an argument in timeout
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 25
+ line: 222
+ start:
+ character: 19
+ line: 222
+ target_range:
+ end:
+ character: 27
+ line: 218
+ start:
+ character: 21
+ line: 218
+ target_selection_range:
+ end:
+ character: 27
+ line: 218
+ start:
+ character: 21
+ line: 218
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-016-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-016-an_argument_in_tags].out
new file mode 100644
index 000000000..33d511a9e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-016-an_argument_in_tags].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 16
+ line: 224
+ name: an argument in tags
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-019-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-019-an_argument_in_tags].out
new file mode 100644
index 000000000..f656a8df7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-019-an_argument_in_tags].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 19
+ line: 224
+ name: an argument in tags
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-021-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-021-an_argument_in_tags].out
new file mode 100644
index 000000000..8ac9085d6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-021-an_argument_in_tags].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 21
+ line: 224
+ name: an argument in tags
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
new file mode 100644
index 000000000..3cbc16c4f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 28
+ line: 224
+ name: an argument in tags
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 33
+ line: 224
+ start:
+ character: 28
+ line: 224
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
new file mode 100644
index 000000000..1514a2e57
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 30
+ line: 224
+ name: an argument in tags
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 33
+ line: 224
+ start:
+ character: 28
+ line: 224
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
new file mode 100644
index 000000000..99b72499e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out
@@ -0,0 +1,28 @@
+data: !GeneratedTestData
+ character: 32
+ line: 224
+ name: an argument in tags
+result:
+- !LocationLink
+ origin_selection_range:
+ end:
+ character: 33
+ line: 224
+ start:
+ character: 28
+ line: 224
+ target_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_selection_range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ target_uri: goto.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-018-library_import_by_module_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-018-library_import_by_module_name].out
new file mode 100644
index 000000000..f7b6e3f5e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-018-library_import_by_module_name].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 18
+ line: 1
+ name: library import by module name
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *Collections*'
+ range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-023-library_import_by_module_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-023-library_import_by_module_name].out
new file mode 100644
index 000000000..b7a47bd9c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-023-library_import_by_module_name].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 23
+ line: 1
+ name: library import by module name
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *Collections*'
+ range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-028-library_import_by_module_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-028-library_import_by_module_name].out
new file mode 100644
index 000000000..5c6a3fa86
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-028-library_import_by_module_name].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 28
+ line: 1
+ name: library import by module name
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *Collections*'
+ range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-065-lib_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-065-lib_with_alias].out
new file mode 100644
index 000000000..94e46420f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-065-lib_with_alias].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 65
+ line: 3
+ name: lib with alias
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *alibrary*'
+ range:
+ end:
+ character: 74
+ line: 3
+ start:
+ character: 65
+ line: 3
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-069-lib_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-069-lib_with_alias].out
new file mode 100644
index 000000000..4232c0d12
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-069-lib_with_alias].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 69
+ line: 3
+ name: lib with alias
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *alibrary*'
+ range:
+ end:
+ character: 74
+ line: 3
+ start:
+ character: 65
+ line: 3
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-073-lib_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-073-lib_with_alias].out
new file mode 100644
index 000000000..8672aef2e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-073-lib_with_alias].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 73
+ line: 3
+ name: lib with alias
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *alibrary*'
+ range:
+ end:
+ character: 74
+ line: 3
+ start:
+ character: 65
+ line: 3
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-040-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-040-Variable_in_library_params].out
new file mode 100644
index 000000000..93bcc8ea8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-040-Variable_in_library_params].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 40
+ line: 5
+ name: Variable in library params
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${LIB_ARG}`'
+ range:
+ end:
+ character: 47
+ line: 5
+ start:
+ character: 40
+ line: 5
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-043-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-043-Variable_in_library_params].out
new file mode 100644
index 000000000..f46f9d176
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-043-Variable_in_library_params].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 43
+ line: 5
+ name: Variable in library params
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${LIB_ARG}`'
+ range:
+ end:
+ character: 47
+ line: 5
+ start:
+ character: 40
+ line: 5
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-046-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-046-Variable_in_library_params].out
new file mode 100644
index 000000000..72edc161a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-046-Variable_in_library_params].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 46
+ line: 5
+ name: Variable in library params
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${LIB_ARG}`'
+ range:
+ end:
+ character: 47
+ line: 5
+ start:
+ character: 40
+ line: 5
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-020-variable_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-020-variable_in_library_import].out
new file mode 100644
index 000000000..e4dcc0732
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-020-variable_in_library_import].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 20
+ line: 7
+ name: variable in library import
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Builtin Variable `${CURDIR}`'
+ range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-023-variable_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-023-variable_in_library_import].out
new file mode 100644
index 000000000..2e733e60c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-023-variable_in_library_import].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 23
+ line: 7
+ name: variable in library import
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Builtin Variable `${CURDIR}`'
+ range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-025-variable_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-025-variable_in_library_import].out
new file mode 100644
index 000000000..50373bdcd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-025-variable_in_library_import].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 25
+ line: 7
+ name: variable in library import
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Builtin Variable `${CURDIR}`'
+ range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-035-library_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-035-library_import_by_path_name].out
new file mode 100644
index 000000000..2bd2968aa
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-035-library_import_by_path_name].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 35
+ line: 7
+ name: library import by path name
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *myvariables*'
+ range:
+ end:
+ character: 49
+ line: 7
+ start:
+ character: 18
+ line: 7
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-042-library_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-042-library_import_by_path_name].out
new file mode 100644
index 000000000..99b7b2a99
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-042-library_import_by_path_name].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 42
+ line: 7
+ name: library import by path name
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *myvariables*'
+ range:
+ end:
+ character: 49
+ line: 7
+ start:
+ character: 18
+ line: 7
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-048-library_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-048-library_import_by_path_name].out
new file mode 100644
index 000000000..1c93f044c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-048-library_import_by_path_name].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 48
+ line: 7
+ name: library import by path name
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *myvariables*'
+ range:
+ end:
+ character: 49
+ line: 7
+ start:
+ character: 18
+ line: 7
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-020-variable_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-020-variable_in_variables_import].out
new file mode 100644
index 000000000..962044dd4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-020-variable_in_variables_import].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 20
+ line: 10
+ name: variable in variables import
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Builtin Variable `${CURDIR}`'
+ range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-023-variable_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-023-variable_in_variables_import].out
new file mode 100644
index 000000000..3c4e9f4ec
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-023-variable_in_variables_import].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 23
+ line: 10
+ name: variable in variables import
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Builtin Variable `${CURDIR}`'
+ range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-025-variable_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-025-variable_in_variables_import].out
new file mode 100644
index 000000000..4c184f519
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-025-variable_in_variables_import].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 25
+ line: 10
+ name: variable in variables import
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Builtin Variable `${CURDIR}`'
+ range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-035-variable_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-035-variable_import_by_path_name].out
new file mode 100644
index 000000000..3c6959e5f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-035-variable_import_by_path_name].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 35
+ line: 10
+ name: variable import by path name
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Variables *myvariables*'
+ range:
+ end:
+ character: 49
+ line: 10
+ start:
+ character: 18
+ line: 10
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-042-variable_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-042-variable_import_by_path_name].out
new file mode 100644
index 000000000..cd60e01b5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-042-variable_import_by_path_name].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 42
+ line: 10
+ name: variable import by path name
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Variables *myvariables*'
+ range:
+ end:
+ character: 49
+ line: 10
+ start:
+ character: 18
+ line: 10
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-048-variable_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-048-variable_import_by_path_name].out
new file mode 100644
index 000000000..724069476
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-048-variable_import_by_path_name].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 48
+ line: 10
+ name: variable import by path name
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Variables *myvariables*'
+ range:
+ end:
+ character: 49
+ line: 10
+ start:
+ character: 18
+ line: 10
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-020-variable_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-020-variable_in_resource_import].out
new file mode 100644
index 000000000..2f24d6f3c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-020-variable_in_resource_import].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 20
+ line: 13
+ name: variable in resource import
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Builtin Variable `${CURDIR}`'
+ range:
+ end:
+ character: 26
+ line: 13
+ start:
+ character: 20
+ line: 13
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-023-variable_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-023-variable_in_resource_import].out
new file mode 100644
index 000000000..af610c2f1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-023-variable_in_resource_import].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 23
+ line: 13
+ name: variable in resource import
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Builtin Variable `${CURDIR}`'
+ range:
+ end:
+ character: 26
+ line: 13
+ start:
+ character: 20
+ line: 13
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-025-variable_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-025-variable_in_resource_import].out
new file mode 100644
index 000000000..fc10805d0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-025-variable_in_resource_import].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 25
+ line: 13
+ name: variable in resource import
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Builtin Variable `${CURDIR}`'
+ range:
+ end:
+ character: 26
+ line: 13
+ start:
+ character: 20
+ line: 13
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-040-resource_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-040-resource_import_by_path_name].out
new file mode 100644
index 000000000..34021892a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-040-resource_import_by_path_name].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 40
+ line: 13
+ name: resource import by path name
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Resource *firstresource*'
+ range:
+ end:
+ character: 63
+ line: 13
+ start:
+ character: 18
+ line: 13
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-047-resource_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-047-resource_import_by_path_name].out
new file mode 100644
index 000000000..6352a6808
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-047-resource_import_by_path_name].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 47
+ line: 13
+ name: resource import by path name
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Resource *firstresource*'
+ range:
+ end:
+ character: 63
+ line: 13
+ start:
+ character: 18
+ line: 13
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-053-resource_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-053-resource_import_by_path_name].out
new file mode 100644
index 000000000..832c6f586
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-053-resource_import_by_path_name].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 53
+ line: 13
+ name: resource import by path name
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Resource *firstresource*'
+ range:
+ end:
+ character: 63
+ line: 13
+ start:
+ character: 18
+ line: 13
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-015-unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-015-unknown_lib].out
new file mode 100644
index 000000000..2312cc315
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-015-unknown_lib].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 15
+ line: 19
+ name: unknown lib
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *UnknownLibrary*'
+ range:
+ end:
+ character: 29
+ line: 19
+ start:
+ character: 15
+ line: 19
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-022-unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-022-unknown_lib].out
new file mode 100644
index 000000000..9d8a3d445
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-022-unknown_lib].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 22
+ line: 19
+ name: unknown lib
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *UnknownLibrary*'
+ range:
+ end:
+ character: 29
+ line: 19
+ start:
+ character: 15
+ line: 19
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-028-unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-028-unknown_lib].out
new file mode 100644
index 000000000..cac1fb6c7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-028-unknown_lib].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 28
+ line: 19
+ name: unknown lib
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *UnknownLibrary*'
+ range:
+ end:
+ character: 29
+ line: 19
+ start:
+ character: 15
+ line: 19
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-046-unknown_lib_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-046-unknown_lib_namespace].out
new file mode 100644
index 000000000..22977a6c0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-046-unknown_lib_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 46
+ line: 19
+ name: unknown lib namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *UnknownLibrary*'
+ range:
+ end:
+ character: 53
+ line: 19
+ start:
+ character: 46
+ line: 19
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-050-unknown_lib_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-050-unknown_lib_namespace].out
new file mode 100644
index 000000000..f3dd781ab
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-050-unknown_lib_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 50
+ line: 19
+ name: unknown lib namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *UnknownLibrary*'
+ range:
+ end:
+ character: 53
+ line: 19
+ start:
+ character: 46
+ line: 19
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-053-unknown_lib_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-053-unknown_lib_namespace].out
new file mode 100644
index 000000000..f2a586ec5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-053-unknown_lib_namespace].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 53
+ line: 19
+ name: unknown lib namespace
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-015-lib_with_errors].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-015-lib_with_errors].out
new file mode 100644
index 000000000..35e8eccb3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-015-lib_with_errors].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 15
+ line: 22
+ name: lib with errors
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 32
+ line: 22
+ start:
+ character: 15
+ line: 22
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-023-lib_with_errors].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-023-lib_with_errors].out
new file mode 100644
index 000000000..21e7e61f8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-023-lib_with_errors].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 23
+ line: 22
+ name: lib with errors
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 32
+ line: 22
+ start:
+ character: 15
+ line: 22
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-031-lib_with_errors].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-031-lib_with_errors].out
new file mode 100644
index 000000000..a65347056
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-031-lib_with_errors].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 31
+ line: 22
+ name: lib with errors
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 32
+ line: 22
+ start:
+ character: 15
+ line: 22
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-057-lib_with_errors_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-057-lib_with_errors_alias].out
new file mode 100644
index 000000000..45eddbb23
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-057-lib_with_errors_alias].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 57
+ line: 22
+ name: lib with errors alias
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 65
+ line: 22
+ start:
+ character: 57
+ line: 22
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-061-lib_with_errors_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-061-lib_with_errors_alias].out
new file mode 100644
index 000000000..8c642fc6c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-061-lib_with_errors_alias].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 61
+ line: 22
+ name: lib with errors alias
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 65
+ line: 22
+ start:
+ character: 57
+ line: 22
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-064-lib_with_errors_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-064-lib_with_errors_alias].out
new file mode 100644
index 000000000..deeec03ff
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-064-lib_with_errors_alias].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 64
+ line: 22
+ name: lib with errors alias
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 65
+ line: 22
+ start:
+ character: 57
+ line: 22
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-015-lib_with_no_errors].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-015-lib_with_no_errors].out
new file mode 100644
index 000000000..c368907d2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-015-lib_with_no_errors].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 15
+ line: 25
+ name: lib with no errors
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 32
+ line: 25
+ start:
+ character: 15
+ line: 25
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-023-lib_with_no_errors].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-023-lib_with_no_errors].out
new file mode 100644
index 000000000..b44d1ffe5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-023-lib_with_no_errors].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 23
+ line: 25
+ name: lib with no errors
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 32
+ line: 25
+ start:
+ character: 15
+ line: 25
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-031-lib_with_no_errors].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-031-lib_with_no_errors].out
new file mode 100644
index 000000000..a14c323a3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-031-lib_with_no_errors].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 31
+ line: 25
+ name: lib with no errors
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 32
+ line: 25
+ start:
+ character: 15
+ line: 25
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-058-lib_with_no_errors_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-058-lib_with_no_errors_alias].out
new file mode 100644
index 000000000..946ab9dc9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-058-lib_with_no_errors_alias].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 58
+ line: 25
+ name: lib with no errors alias
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 68
+ line: 25
+ start:
+ character: 58
+ line: 25
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-063-lib_with_no_errors_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-063-lib_with_no_errors_alias].out
new file mode 100644
index 000000000..d95eb8d5d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-063-lib_with_no_errors_alias].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 63
+ line: 25
+ name: lib with no errors alias
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 68
+ line: 25
+ start:
+ character: 58
+ line: 25
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-067-lib_with_no_errors_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-067-lib_with_no_errors_alias].out
new file mode 100644
index 000000000..783ac228d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-067-lib_with_no_errors_alias].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 67
+ line: 25
+ name: lib with no errors alias
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 68
+ line: 25
+ start:
+ character: 58
+ line: 25
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-002-variable_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-002-variable_declaration].out
new file mode 100644
index 000000000..2189dd394
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-002-variable_declaration].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 2
+ line: 30
+ name: variable declaration
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${A VAR}`'
+ range:
+ end:
+ character: 7
+ line: 30
+ start:
+ character: 2
+ line: 30
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-004-variable_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-004-variable_declaration].out
new file mode 100644
index 000000000..8f6fe5637
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-004-variable_declaration].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 30
+ name: variable declaration
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${A VAR}`'
+ range:
+ end:
+ character: 7
+ line: 30
+ start:
+ character: 2
+ line: 30
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-006-variable_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-006-variable_declaration].out
new file mode 100644
index 000000000..a1f1c961c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-006-variable_declaration].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 6
+ line: 30
+ name: variable declaration
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${A VAR}`'
+ range:
+ end:
+ character: 7
+ line: 30
+ start:
+ character: 2
+ line: 30
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-008-not_the_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-008-not_the_equal_sign].out
new file mode 100644
index 000000000..f1908c891
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-008-not_the_equal_sign].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 8
+ line: 30
+ name: not the equal sign
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-002-variable_declarations].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-002-variable_declarations].out
new file mode 100644
index 000000000..0b1ce0d6d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-002-variable_declarations].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 2
+ line: 33
+ name: variable declarations
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `&{A DICT}`'
+ range:
+ end:
+ character: 8
+ line: 33
+ start:
+ character: 2
+ line: 33
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-005-variable_declarations].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-005-variable_declarations].out
new file mode 100644
index 000000000..7e009292f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-005-variable_declarations].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 5
+ line: 33
+ name: variable declarations
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `&{A DICT}`'
+ range:
+ end:
+ character: 8
+ line: 33
+ start:
+ character: 2
+ line: 33
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-007-variable_declarations].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-007-variable_declarations].out
new file mode 100644
index 000000000..49a7ccc61
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-007-variable_declarations].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 7
+ line: 33
+ name: variable declarations
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `&{A DICT}`'
+ range:
+ end:
+ character: 8
+ line: 33
+ start:
+ character: 2
+ line: 33
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out
new file mode 100644
index 000000000..e61ae5a48
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 2
+ line: 38
+ name: no hover for invalid variable
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out
new file mode 100644
index 000000000..28410e141
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 9
+ line: 38
+ name: no hover for invalid variable
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out
new file mode 100644
index 000000000..52e5648d8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 16
+ line: 38
+ name: no hover for invalid variable
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-010-complex_var_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-010-complex_var_expression].out
new file mode 100644
index 000000000..386208c4a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-010-complex_var_expression].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 43
+ name: complex var expression
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${A}`'
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 10
+ line: 43
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-017-inner_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-017-inner_var].out
new file mode 100644
index 000000000..c185c8e0d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-017-inner_var].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 17
+ line: 43
+ name: inner var
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${B}`'
+ range:
+ end:
+ character: 18
+ line: 43
+ start:
+ character: 17
+ line: 43
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-022-inner_inner_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-022-inner_inner_var].out
new file mode 100644
index 000000000..859bf0261
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-022-inner_inner_var].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 22
+ line: 43
+ name: inner inner var
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${D}`'
+ range:
+ end:
+ character: 23
+ line: 43
+ start:
+ character: 22
+ line: 43
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-010-complex_var_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-010-complex_var_expression].out
new file mode 100644
index 000000000..ee58e7263
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-010-complex_var_expression].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 48
+ name: complex var expression
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${A}`'
+ range:
+ end:
+ character: 11
+ line: 48
+ start:
+ character: 10
+ line: 48
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-014-inner_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-014-inner_var].out
new file mode 100644
index 000000000..5bc0902d1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-014-inner_var].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 14
+ line: 48
+ name: inner var
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-018-inner_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-018-inner_var].out
new file mode 100644
index 000000000..cc96e0f93
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-018-inner_var].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 18
+ line: 48
+ name: inner var
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-022-inner_inner_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-022-inner_inner_var].out
new file mode 100644
index 000000000..fc839a6aa
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-022-inner_inner_var].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 22
+ line: 48
+ name: inner inner var
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-029-outer_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-029-outer_var].out
new file mode 100644
index 000000000..663928517
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-029-outer_var].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 29
+ line: 48
+ name: outer var
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${D}`'
+ range:
+ end:
+ character: 30
+ line: 48
+ start:
+ character: 29
+ line: 48
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-036-extra_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-036-extra_var].out
new file mode 100644
index 000000000..d211ca6bf
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-036-extra_var].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 36
+ line: 48
+ name: extra var
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${C}`'
+ range:
+ end:
+ character: 37
+ line: 48
+ start:
+ character: 36
+ line: 48
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-002-number_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-002-number_variable].out
new file mode 100644
index 000000000..9ebcc810e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-002-number_variable].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 2
+ line: 58
+ name: number variable
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${F}`'
+ range:
+ end:
+ character: 3
+ line: 58
+ start:
+ character: 2
+ line: 58
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-010-number_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-010-number_expression].out
new file mode 100644
index 000000000..3fbacb080
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-010-number_expression].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 10
+ line: 58
+ name: number expression
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-011-number_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-011-number_expression].out
new file mode 100644
index 000000000..d94b88723
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-011-number_expression].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 11
+ line: 58
+ name: number expression
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-012-number_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-012-number_expression].out
new file mode 100644
index 000000000..a34ef75e1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-012-number_expression].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 12
+ line: 58
+ name: number expression
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-013-Keyword_in_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-013-Keyword_in_Setup].out
new file mode 100644
index 000000000..835336258
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-013-Keyword_in_Setup].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 13
+ line: 64
+ name: Keyword in Setup
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 16
+ line: 64
+ start:
+ character: 13
+ line: 64
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-014-Keyword_in_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-014-Keyword_in_Setup].out
new file mode 100644
index 000000000..02afc4cf1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-014-Keyword_in_Setup].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 14
+ line: 64
+ name: Keyword in Setup
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 16
+ line: 64
+ start:
+ character: 13
+ line: 64
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-015-Keyword_in_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-015-Keyword_in_Setup].out
new file mode 100644
index 000000000..94a2af405
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-015-Keyword_in_Setup].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 15
+ line: 64
+ name: Keyword in Setup
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 16
+ line: 64
+ start:
+ character: 13
+ line: 64
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-016-Namespace_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-016-Namespace_in_Teardown].out
new file mode 100644
index 000000000..c012e6582
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-016-Namespace_in_Teardown].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 16
+ line: 66
+ name: Namespace in Teardown
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *BuiltIn*'
+ range:
+ end:
+ character: 23
+ line: 66
+ start:
+ character: 16
+ line: 66
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-019-Namespace_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-019-Namespace_in_Teardown].out
new file mode 100644
index 000000000..18cc8449b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-019-Namespace_in_Teardown].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 19
+ line: 66
+ name: Namespace in Teardown
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *BuiltIn*'
+ range:
+ end:
+ character: 23
+ line: 66
+ start:
+ character: 16
+ line: 66
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-022-Namespace_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-022-Namespace_in_Teardown].out
new file mode 100644
index 000000000..eaaf334bd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-022-Namespace_in_Teardown].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 22
+ line: 66
+ name: Namespace in Teardown
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *BuiltIn*'
+ range:
+ end:
+ character: 23
+ line: 66
+ start:
+ character: 16
+ line: 66
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-024-Keyword_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-024-Keyword_in_Teardown].out
new file mode 100644
index 000000000..d72f399e3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-024-Keyword_in_Teardown].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 24
+ line: 66
+ name: Keyword in Teardown
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 27
+ line: 66
+ start:
+ character: 24
+ line: 66
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-025-Keyword_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-025-Keyword_in_Teardown].out
new file mode 100644
index 000000000..2cf6db311
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-025-Keyword_in_Teardown].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 25
+ line: 66
+ name: Keyword in Teardown
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 27
+ line: 66
+ start:
+ character: 24
+ line: 66
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-026-Keyword_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-026-Keyword_in_Teardown].out
new file mode 100644
index 000000000..7b1321e1a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-026-Keyword_in_Teardown].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 26
+ line: 66
+ name: Keyword in Teardown
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 27
+ line: 66
+ start:
+ character: 24
+ line: 66
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-012-no_hover_for_invalid_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-012-no_hover_for_invalid_variable_reference].out
new file mode 100644
index 000000000..753931c65
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-012-no_hover_for_invalid_variable_reference].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 12
+ line: 72
+ name: no hover for invalid variable reference
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out
new file mode 100644
index 000000000..5238819ba
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 20
+ line: 72
+ name: no hover for invalid variable reference
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 28
+ line: 72
+ start:
+ character: 13
+ line: 72
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out
new file mode 100644
index 000000000..1b0b0551b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 27
+ line: 72
+ name: no hover for invalid variable reference
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${INVALID VAR ${}}`'
+ range:
+ end:
+ character: 28
+ line: 72
+ start:
+ character: 13
+ line: 72
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-004-Keyword_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-004-Keyword_from_Library].out
new file mode 100644
index 000000000..8e6942782
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-004-Keyword_from_Library].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 75
+ name: Keyword from Library
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 7
+ line: 75
+ start:
+ character: 4
+ line: 75
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-005-Keyword_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-005-Keyword_from_Library].out
new file mode 100644
index 000000000..901be7322
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-005-Keyword_from_Library].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 5
+ line: 75
+ name: Keyword from Library
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 7
+ line: 75
+ start:
+ character: 4
+ line: 75
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-006-Keyword_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-006-Keyword_from_Library].out
new file mode 100644
index 000000000..0f4dd6913
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-006-Keyword_from_Library].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 6
+ line: 75
+ name: Keyword from Library
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 7
+ line: 75
+ start:
+ character: 4
+ line: 75
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-004-namespace_before_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-004-namespace_before_keyword].out
new file mode 100644
index 000000000..73999c1dd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-004-namespace_before_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 78
+ name: namespace before keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *Collections*'
+ range:
+ end:
+ character: 15
+ line: 78
+ start:
+ character: 4
+ line: 78
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-009-namespace_before_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-009-namespace_before_keyword].out
new file mode 100644
index 000000000..d761222e7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-009-namespace_before_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 9
+ line: 78
+ name: namespace before keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *Collections*'
+ range:
+ end:
+ character: 15
+ line: 78
+ start:
+ character: 4
+ line: 78
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-014-namespace_before_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-014-namespace_before_keyword].out
new file mode 100644
index 000000000..5e1b5c5dd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-014-namespace_before_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 14
+ line: 78
+ name: namespace before keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *Collections*'
+ range:
+ end:
+ character: 15
+ line: 78
+ start:
+ character: 4
+ line: 78
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-016-Keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-016-Keyword_with_namespace].out
new file mode 100644
index 000000000..2f7c08263
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-016-Keyword_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 16
+ line: 78
+ name: Keyword with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log Dictionary*'
+ range:
+ end:
+ character: 30
+ line: 78
+ start:
+ character: 16
+ line: 78
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-023-Keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-023-Keyword_with_namespace].out
new file mode 100644
index 000000000..9438c5100
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-023-Keyword_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 23
+ line: 78
+ name: Keyword with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log Dictionary*'
+ range:
+ end:
+ character: 30
+ line: 78
+ start:
+ character: 16
+ line: 78
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-029-Keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-029-Keyword_with_namespace].out
new file mode 100644
index 000000000..97b4c83b9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-029-Keyword_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 29
+ line: 78
+ name: Keyword with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log Dictionary*'
+ range:
+ end:
+ character: 30
+ line: 78
+ start:
+ character: 16
+ line: 78
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-012-FOR_loop_variable_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-012-FOR_loop_variable_declaration].out
new file mode 100644
index 000000000..a0a6ee96e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-012-FOR_loop_variable_declaration].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 12
+ line: 81
+ name: FOR loop variable declaration
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-014-FOR_loop_variable_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-014-FOR_loop_variable_declaration].out
new file mode 100644
index 000000000..013ca1de1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-014-FOR_loop_variable_declaration].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 14
+ line: 81
+ name: FOR loop variable declaration
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Local Variable `${key}`'
+ range:
+ end:
+ character: 16
+ line: 81
+ start:
+ character: 13
+ line: 81
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-015-FOR_loop_variable_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-015-FOR_loop_variable_declaration].out
new file mode 100644
index 000000000..e8c121913
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-015-FOR_loop_variable_declaration].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 15
+ line: 81
+ name: FOR loop variable declaration
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Local Variable `${key}`'
+ range:
+ end:
+ character: 16
+ line: 81
+ start:
+ character: 13
+ line: 81
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-008-Keyword_in_FOR_loop].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-008-Keyword_in_FOR_loop].out
new file mode 100644
index 000000000..4f46c7ccd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-008-Keyword_in_FOR_loop].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 8
+ line: 83
+ name: Keyword in FOR loop
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 11
+ line: 83
+ start:
+ character: 8
+ line: 83
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-009-Keyword_in_FOR_loop].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-009-Keyword_in_FOR_loop].out
new file mode 100644
index 000000000..ba68623df
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-009-Keyword_in_FOR_loop].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 9
+ line: 83
+ name: Keyword in FOR loop
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 11
+ line: 83
+ start:
+ character: 8
+ line: 83
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-010-Keyword_in_FOR_loop].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-010-Keyword_in_FOR_loop].out
new file mode 100644
index 000000000..efcd8f3b7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-010-Keyword_in_FOR_loop].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 83
+ name: Keyword in FOR loop
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 11
+ line: 83
+ start:
+ character: 8
+ line: 83
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-004-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-004-BuiltIn_Keyword].out
new file mode 100644
index 000000000..0543391ef
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-004-BuiltIn_Keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 86
+ name: BuiltIn Keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 7
+ line: 86
+ start:
+ character: 4
+ line: 86
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-005-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-005-BuiltIn_Keyword].out
new file mode 100644
index 000000000..e66df0b8f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-005-BuiltIn_Keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 5
+ line: 86
+ name: BuiltIn Keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 7
+ line: 86
+ start:
+ character: 4
+ line: 86
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-006-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-006-BuiltIn_Keyword].out
new file mode 100644
index 000000000..aeea8472e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-006-BuiltIn_Keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 6
+ line: 86
+ name: BuiltIn Keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 7
+ line: 86
+ start:
+ character: 4
+ line: 86
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-013-Command_line_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-013-Command_line_variable].out
new file mode 100644
index 000000000..b96c7a4c0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-013-Command_line_variable].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 13
+ line: 86
+ name: Command line variable
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Global Variable [Command Line] `${CMD_VAR}`'
+ range:
+ end:
+ character: 20
+ line: 86
+ start:
+ character: 13
+ line: 86
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-016-Command_line_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-016-Command_line_variable].out
new file mode 100644
index 000000000..63ef68b10
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-016-Command_line_variable].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 16
+ line: 86
+ name: Command line variable
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Global Variable [Command Line] `${CMD_VAR}`'
+ range:
+ end:
+ character: 20
+ line: 86
+ start:
+ character: 13
+ line: 86
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-019-Command_line_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-019-Command_line_variable].out
new file mode 100644
index 000000000..34f9dcbcf
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-019-Command_line_variable].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 19
+ line: 86
+ name: Command line variable
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Global Variable [Command Line] `${CMD_VAR}`'
+ range:
+ end:
+ character: 20
+ line: 86
+ start:
+ character: 13
+ line: 86
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-001-Spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-001-Spaces].out
new file mode 100644
index 000000000..361a9e086
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-001-Spaces].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 1
+ line: 89
+ name: Spaces
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-002-Spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-002-Spaces].out
new file mode 100644
index 000000000..1087544dd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-002-Spaces].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 2
+ line: 89
+ name: Spaces
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-003-Spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-003-Spaces].out
new file mode 100644
index 000000000..a81111a7d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-003-Spaces].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 3
+ line: 89
+ name: Spaces
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-013-BuiltIn_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-013-BuiltIn_variable].out
new file mode 100644
index 000000000..dc48f37f0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-013-BuiltIn_variable].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 13
+ line: 89
+ name: BuiltIn variable
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Builtin Variable `${CURDIR}`'
+ range:
+ end:
+ character: 19
+ line: 89
+ start:
+ character: 13
+ line: 89
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-016-BuiltIn_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-016-BuiltIn_variable].out
new file mode 100644
index 000000000..03ddc6445
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-016-BuiltIn_variable].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 16
+ line: 89
+ name: BuiltIn variable
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Builtin Variable `${CURDIR}`'
+ range:
+ end:
+ character: 19
+ line: 89
+ start:
+ character: 13
+ line: 89
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-018-BuiltIn_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-018-BuiltIn_variable].out
new file mode 100644
index 000000000..274d1316f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-018-BuiltIn_variable].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 18
+ line: 89
+ name: BuiltIn variable
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Builtin Variable `${CURDIR}`'
+ range:
+ end:
+ character: 19
+ line: 89
+ start:
+ character: 13
+ line: 89
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-013-variable_from_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-013-variable_from_lib].out
new file mode 100644
index 000000000..84d86ee46
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-013-variable_from_lib].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 13
+ line: 92
+ name: variable from lib
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable [Imported] `${A_VAR_FROM_LIB}`'
+ range:
+ end:
+ character: 27
+ line: 92
+ start:
+ character: 13
+ line: 92
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-020-variable_from_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-020-variable_from_lib].out
new file mode 100644
index 000000000..2d637e5a1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-020-variable_from_lib].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 20
+ line: 92
+ name: variable from lib
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable [Imported] `${A_VAR_FROM_LIB}`'
+ range:
+ end:
+ character: 27
+ line: 92
+ start:
+ character: 13
+ line: 92
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-026-variable_from_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-026-variable_from_lib].out
new file mode 100644
index 000000000..84247c4e7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-026-variable_from_lib].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 26
+ line: 92
+ name: variable from lib
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable [Imported] `${A_VAR_FROM_LIB}`'
+ range:
+ end:
+ character: 27
+ line: 92
+ start:
+ character: 13
+ line: 92
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-004-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-004-Keyword_from_resource].out
new file mode 100644
index 000000000..8c5e26769
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-004-Keyword_from_resource].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 95
+ name: Keyword from resource
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *do something in a resource*'
+ range:
+ end:
+ character: 30
+ line: 95
+ start:
+ character: 4
+ line: 95
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-017-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-017-Keyword_from_resource].out
new file mode 100644
index 000000000..6f92bff0d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-017-Keyword_from_resource].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 17
+ line: 95
+ name: Keyword from resource
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *do something in a resource*'
+ range:
+ end:
+ character: 30
+ line: 95
+ start:
+ character: 4
+ line: 95
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-029-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-029-Keyword_from_resource].out
new file mode 100644
index 000000000..683f69968
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-029-Keyword_from_resource].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 29
+ line: 95
+ name: Keyword from resource
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *do something in a resource*'
+ range:
+ end:
+ character: 30
+ line: 95
+ start:
+ character: 4
+ line: 95
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-004-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-004-Namespace_from_resource].out
new file mode 100644
index 000000000..f2989a2db
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-004-Namespace_from_resource].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 98
+ name: Namespace from resource
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Resource *firstresource*'
+ range:
+ end:
+ character: 17
+ line: 98
+ start:
+ character: 4
+ line: 98
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-010-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-010-Namespace_from_resource].out
new file mode 100644
index 000000000..2556a6e3c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-010-Namespace_from_resource].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 98
+ name: Namespace from resource
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Resource *firstresource*'
+ range:
+ end:
+ character: 17
+ line: 98
+ start:
+ character: 4
+ line: 98
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-016-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-016-Namespace_from_resource].out
new file mode 100644
index 000000000..ac0059c40
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-016-Namespace_from_resource].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 16
+ line: 98
+ name: Namespace from resource
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Resource *firstresource*'
+ range:
+ end:
+ character: 17
+ line: 98
+ start:
+ character: 4
+ line: 98
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-018-KeywordCall_from_resource_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-018-KeywordCall_from_resource_with_Namespace].out
new file mode 100644
index 000000000..373b7072e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-018-KeywordCall_from_resource_with_Namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 18
+ line: 98
+ name: KeywordCall from resource with Namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *do something in a resource*'
+ range:
+ end:
+ character: 44
+ line: 98
+ start:
+ character: 18
+ line: 98
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-031-KeywordCall_from_resource_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-031-KeywordCall_from_resource_with_Namespace].out
new file mode 100644
index 000000000..7d0379450
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-031-KeywordCall_from_resource_with_Namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 31
+ line: 98
+ name: KeywordCall from resource with Namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *do something in a resource*'
+ range:
+ end:
+ character: 44
+ line: 98
+ start:
+ character: 18
+ line: 98
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-043-KeywordCall_from_resource_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-043-KeywordCall_from_resource_with_Namespace].out
new file mode 100644
index 000000000..e51bd76f2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-043-KeywordCall_from_resource_with_Namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 43
+ line: 98
+ name: KeywordCall from resource with Namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *do something in a resource*'
+ range:
+ end:
+ character: 44
+ line: 98
+ start:
+ character: 18
+ line: 98
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-001-Test_Case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-001-Test_Case].out
new file mode 100644
index 000000000..9389f921e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-001-Test_Case].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 1
+ line: 102
+ name: Test Case
+result: !Hover
+ contents:
+ kind: markdown
+ value: '## Test Case *second*'
+ range:
+ end:
+ character: 6
+ line: 102
+ start:
+ character: 0
+ line: 102
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-003-Test_Case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-003-Test_Case].out
new file mode 100644
index 000000000..f87fabba4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-003-Test_Case].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 3
+ line: 102
+ name: Test Case
+result: !Hover
+ contents:
+ kind: markdown
+ value: '## Test Case *second*'
+ range:
+ end:
+ character: 6
+ line: 102
+ start:
+ character: 0
+ line: 102
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-005-Test_Case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-005-Test_Case].out
new file mode 100644
index 000000000..f7bf9a1dd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-005-Test_Case].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 5
+ line: 102
+ name: Test Case
+result: !Hover
+ contents:
+ kind: markdown
+ value: '## Test Case *second*'
+ range:
+ end:
+ character: 6
+ line: 102
+ start:
+ character: 0
+ line: 102
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-018-Namespace_in_Template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-018-Namespace_in_Template].out
new file mode 100644
index 000000000..7f78aa0f3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-018-Namespace_in_Template].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 18
+ line: 104
+ name: Namespace in Template
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *BuiltIn*'
+ range:
+ end:
+ character: 25
+ line: 104
+ start:
+ character: 18
+ line: 104
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-021-Namespace_in_Template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-021-Namespace_in_Template].out
new file mode 100644
index 000000000..738ea8548
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-021-Namespace_in_Template].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 21
+ line: 104
+ name: Namespace in Template
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *BuiltIn*'
+ range:
+ end:
+ character: 25
+ line: 104
+ start:
+ character: 18
+ line: 104
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-024-Namespace_in_Template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-024-Namespace_in_Template].out
new file mode 100644
index 000000000..a40f9ab81
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-024-Namespace_in_Template].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 24
+ line: 104
+ name: Namespace in Template
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *BuiltIn*'
+ range:
+ end:
+ character: 25
+ line: 104
+ start:
+ character: 18
+ line: 104
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-026-Keyword_in_Template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-026-Keyword_in_Template].out
new file mode 100644
index 000000000..e598cd1ee
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-026-Keyword_in_Template].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 26
+ line: 104
+ name: Keyword in Template
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 29
+ line: 104
+ start:
+ character: 26
+ line: 104
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-027-Keyword_in_Template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-027-Keyword_in_Template].out
new file mode 100644
index 000000000..4460a9042
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-027-Keyword_in_Template].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 27
+ line: 104
+ name: Keyword in Template
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 29
+ line: 104
+ start:
+ character: 26
+ line: 104
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-028-Keyword_in_Template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-028-Keyword_in_Template].out
new file mode 100644
index 000000000..5fe01b092
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-028-Keyword_in_Template].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 28
+ line: 104
+ name: Keyword in Template
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 29
+ line: 104
+ start:
+ character: 26
+ line: 104
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-006-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-006-Keyword_assignement].out
new file mode 100644
index 000000000..3473d1f54
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-006-Keyword_assignement].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 6
+ line: 111
+ name: Keyword assignement
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Local Variable `${result}`'
+ range:
+ end:
+ character: 12
+ line: 111
+ start:
+ character: 6
+ line: 111
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-009-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-009-Keyword_assignement].out
new file mode 100644
index 000000000..c35f28b29
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-009-Keyword_assignement].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 9
+ line: 111
+ name: Keyword assignement
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Local Variable `${result}`'
+ range:
+ end:
+ character: 12
+ line: 111
+ start:
+ character: 6
+ line: 111
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-011-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-011-Keyword_assignement].out
new file mode 100644
index 000000000..248c9d2e1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-011-Keyword_assignement].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 11
+ line: 111
+ name: Keyword assignement
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Local Variable `${result}`'
+ range:
+ end:
+ character: 12
+ line: 111
+ start:
+ character: 6
+ line: 111
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-006-Keyword_assignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-006-Keyword_assignment_with_equals_sign].out
new file mode 100644
index 000000000..a0cc20391
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-006-Keyword_assignment_with_equals_sign].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 6
+ line: 115
+ name: Keyword assignment with equals sign
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Local Variable `${result}`'
+ range:
+ end:
+ character: 12
+ line: 115
+ start:
+ character: 6
+ line: 115
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-009-Keyword_assignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-009-Keyword_assignment_with_equals_sign].out
new file mode 100644
index 000000000..22d7330bd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-009-Keyword_assignment_with_equals_sign].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 9
+ line: 115
+ name: Keyword assignment with equals sign
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Local Variable `${result}`'
+ range:
+ end:
+ character: 12
+ line: 115
+ start:
+ character: 6
+ line: 115
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-011-Keyword_assignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-011-Keyword_assignment_with_equals_sign].out
new file mode 100644
index 000000000..0cf6fd9fe
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-011-Keyword_assignment_with_equals_sign].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 11
+ line: 115
+ name: Keyword assignment with equals sign
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Local Variable `${result}`'
+ range:
+ end:
+ character: 12
+ line: 115
+ start:
+ character: 6
+ line: 115
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-126-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-126-010-variable_in_if].out
new file mode 100644
index 000000000..8dea1771c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-126-010-variable_in_if].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 126
+ name: variable in if
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${A}`'
+ range:
+ end:
+ character: 11
+ line: 126
+ start:
+ character: 10
+ line: 126
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-129-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-129-017-variable_in_else_if].out
new file mode 100644
index 000000000..f9e702b88
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-129-017-variable_in_else_if].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 17
+ line: 129
+ name: variable in else if
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${B}`'
+ range:
+ end:
+ character: 18
+ line: 129
+ start:
+ character: 17
+ line: 129
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-134-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-134-009-variable_in_if_expression].out
new file mode 100644
index 000000000..06c8e8e7d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-134-009-variable_in_if_expression].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 9
+ line: 134
+ name: variable in if expression
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${A}`'
+ range:
+ end:
+ character: 10
+ line: 134
+ start:
+ character: 9
+ line: 134
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-137-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-137-016-variable_in_else_if_expression].out
new file mode 100644
index 000000000..9e1c30c5c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-137-016-variable_in_else_if_expression].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 16
+ line: 137
+ name: variable in else if expression
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${B}`'
+ range:
+ end:
+ character: 17
+ line: 137
+ start:
+ character: 16
+ line: 137
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-142-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-142-010-variable_in_inline_if_expression].out
new file mode 100644
index 000000000..7ab389a98
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-142-010-variable_in_inline_if_expression].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 142
+ name: variable in inline if expression
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${A}`'
+ range:
+ end:
+ character: 11
+ line: 142
+ start:
+ character: 10
+ line: 142
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-142-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-142-042-variable_in_inline_else_if_expression].out
new file mode 100644
index 000000000..d59f16938
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-142-042-variable_in_inline_else_if_expression].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 42
+ line: 142
+ name: variable in inline else if expression
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${B}`'
+ range:
+ end:
+ character: 43
+ line: 142
+ start:
+ character: 42
+ line: 142
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-146-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-146-009-variable_in_inline_if_expression].out
new file mode 100644
index 000000000..6e4d2707e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-146-009-variable_in_inline_if_expression].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 9
+ line: 146
+ name: variable in inline if expression
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${A}`'
+ range:
+ end:
+ character: 10
+ line: 146
+ start:
+ character: 9
+ line: 146
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-146-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-146-039-variable_in_inline_else_if_expression].out
new file mode 100644
index 000000000..f15b88c8f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-146-039-variable_in_inline_else_if_expression].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 39
+ line: 146
+ name: variable in inline else if expression
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${B}`'
+ range:
+ end:
+ character: 40
+ line: 146
+ start:
+ character: 39
+ line: 146
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-015-BDD_Given_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-015-BDD_Given_in_setup].out
new file mode 100644
index 000000000..d2335c5a1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-015-BDD_Given_in_setup].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 15
+ line: 151
+ name: BDD Given in setup
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-017-BDD_Given_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-017-BDD_Given_in_setup].out
new file mode 100644
index 000000000..d329fcf7b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-017-BDD_Given_in_setup].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 17
+ line: 151
+ name: BDD Given in setup
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-019-BDD_Given_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-019-BDD_Given_in_setup].out
new file mode 100644
index 000000000..37f7c3d67
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-019-BDD_Given_in_setup].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 19
+ line: 151
+ name: BDD Given in setup
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-021-BDD_Keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-021-BDD_Keyword_in_setup].out
new file mode 100644
index 000000000..f9eefefab
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-021-BDD_Keyword_in_setup].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 21
+ line: 151
+ name: BDD Keyword in setup
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 24
+ line: 151
+ start:
+ character: 21
+ line: 151
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-022-BDD_Keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-022-BDD_Keyword_in_setup].out
new file mode 100644
index 000000000..175030244
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-022-BDD_Keyword_in_setup].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 22
+ line: 151
+ name: BDD Keyword in setup
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 24
+ line: 151
+ start:
+ character: 21
+ line: 151
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-023-BDD_Keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-023-BDD_Keyword_in_setup].out
new file mode 100644
index 000000000..33083e1c9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-023-BDD_Keyword_in_setup].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 23
+ line: 151
+ name: BDD Keyword in setup
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 24
+ line: 151
+ start:
+ character: 21
+ line: 151
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-018-BDD_Then_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-018-BDD_Then_in_Teardown].out
new file mode 100644
index 000000000..7a7676d68
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-018-BDD_Then_in_Teardown].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 18
+ line: 154
+ name: BDD Then in Teardown
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-020-BDD_Then_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-020-BDD_Then_in_Teardown].out
new file mode 100644
index 000000000..d66e1c5b6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-020-BDD_Then_in_Teardown].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 20
+ line: 154
+ name: BDD Then in Teardown
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-021-BDD_Then_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-021-BDD_Then_in_Teardown].out
new file mode 100644
index 000000000..00d08ef05
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-021-BDD_Then_in_Teardown].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 21
+ line: 154
+ name: BDD Then in Teardown
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-023-BDD_Namespace_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-023-BDD_Namespace_in_Teardown].out
new file mode 100644
index 000000000..c1680752c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-023-BDD_Namespace_in_Teardown].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 23
+ line: 154
+ name: BDD Namespace in Teardown
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *BuiltIn*'
+ range:
+ end:
+ character: 30
+ line: 154
+ start:
+ character: 23
+ line: 154
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-026-BDD_Namespace_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-026-BDD_Namespace_in_Teardown].out
new file mode 100644
index 000000000..d8372c027
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-026-BDD_Namespace_in_Teardown].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 26
+ line: 154
+ name: BDD Namespace in Teardown
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *BuiltIn*'
+ range:
+ end:
+ character: 30
+ line: 154
+ start:
+ character: 23
+ line: 154
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-029-BDD_Namespace_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-029-BDD_Namespace_in_Teardown].out
new file mode 100644
index 000000000..242225174
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-029-BDD_Namespace_in_Teardown].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 29
+ line: 154
+ name: BDD Namespace in Teardown
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *BuiltIn*'
+ range:
+ end:
+ character: 30
+ line: 154
+ start:
+ character: 23
+ line: 154
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-031-BDD_Keyword_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-031-BDD_Keyword_in_Teardown].out
new file mode 100644
index 000000000..e3f9d47e2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-031-BDD_Keyword_in_Teardown].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 31
+ line: 154
+ name: BDD Keyword in Teardown
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 34
+ line: 154
+ start:
+ character: 31
+ line: 154
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-032-BDD_Keyword_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-032-BDD_Keyword_in_Teardown].out
new file mode 100644
index 000000000..405e83a61
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-032-BDD_Keyword_in_Teardown].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 32
+ line: 154
+ name: BDD Keyword in Teardown
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 34
+ line: 154
+ start:
+ character: 31
+ line: 154
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-033-BDD_Keyword_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-033-BDD_Keyword_in_Teardown].out
new file mode 100644
index 000000000..fdfa8f32b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-033-BDD_Keyword_in_Teardown].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 33
+ line: 154
+ name: BDD Keyword in Teardown
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 34
+ line: 154
+ start:
+ character: 31
+ line: 154
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-004-BDD_Given].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-004-BDD_Given].out
new file mode 100644
index 000000000..1a5082d81
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-004-BDD_Given].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 4
+ line: 158
+ name: BDD Given
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-006-BDD_Given].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-006-BDD_Given].out
new file mode 100644
index 000000000..9f07b580c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-006-BDD_Given].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 6
+ line: 158
+ name: BDD Given
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-008-BDD_Given].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-008-BDD_Given].out
new file mode 100644
index 000000000..d7941ed2b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-008-BDD_Given].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 8
+ line: 158
+ name: BDD Given
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-010-BDD_Given_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-010-BDD_Given_keyword].out
new file mode 100644
index 000000000..58626da33
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-010-BDD_Given_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 158
+ name: BDD Given keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 13
+ line: 158
+ start:
+ character: 10
+ line: 158
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-011-BDD_Given_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-011-BDD_Given_keyword].out
new file mode 100644
index 000000000..ee4c7427b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-011-BDD_Given_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 11
+ line: 158
+ name: BDD Given keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 13
+ line: 158
+ start:
+ character: 10
+ line: 158
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-012-BDD_Given_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-012-BDD_Given_keyword].out
new file mode 100644
index 000000000..9329f0418
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-012-BDD_Given_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 12
+ line: 158
+ name: BDD Given keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 13
+ line: 158
+ start:
+ character: 10
+ line: 158
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-004-BDD_When].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-004-BDD_When].out
new file mode 100644
index 000000000..fec254aee
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-004-BDD_When].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 4
+ line: 161
+ name: BDD When
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-006-BDD_When].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-006-BDD_When].out
new file mode 100644
index 000000000..d23e7bb7f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-006-BDD_When].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 6
+ line: 161
+ name: BDD When
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-007-BDD_When].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-007-BDD_When].out
new file mode 100644
index 000000000..af14a51d5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-007-BDD_When].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 7
+ line: 161
+ name: BDD When
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-009-BDD_When_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-009-BDD_When_keyword].out
new file mode 100644
index 000000000..59903c7e8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-009-BDD_When_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 9
+ line: 161
+ name: BDD When keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 12
+ line: 161
+ start:
+ character: 9
+ line: 161
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-010-BDD_When_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-010-BDD_When_keyword].out
new file mode 100644
index 000000000..6ac61862a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-010-BDD_When_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 161
+ name: BDD When keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 12
+ line: 161
+ start:
+ character: 9
+ line: 161
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-011-BDD_When_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-011-BDD_When_keyword].out
new file mode 100644
index 000000000..656b21711
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-011-BDD_When_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 11
+ line: 161
+ name: BDD When keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 12
+ line: 161
+ start:
+ character: 9
+ line: 161
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-004-BDD_And].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-004-BDD_And].out
new file mode 100644
index 000000000..6bfee422f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-004-BDD_And].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 4
+ line: 164
+ name: BDD And
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-005-BDD_And].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-005-BDD_And].out
new file mode 100644
index 000000000..329faabf6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-005-BDD_And].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 5
+ line: 164
+ name: BDD And
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-006-BDD_And].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-006-BDD_And].out
new file mode 100644
index 000000000..e6bc540ac
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-006-BDD_And].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 6
+ line: 164
+ name: BDD And
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-008-BDD_And_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-008-BDD_And_keyword].out
new file mode 100644
index 000000000..ec15dd2f5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-008-BDD_And_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 8
+ line: 164
+ name: BDD And keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 11
+ line: 164
+ start:
+ character: 8
+ line: 164
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-009-BDD_And_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-009-BDD_And_keyword].out
new file mode 100644
index 000000000..a07cdcfaa
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-009-BDD_And_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 9
+ line: 164
+ name: BDD And keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 11
+ line: 164
+ start:
+ character: 8
+ line: 164
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-010-BDD_And_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-010-BDD_And_keyword].out
new file mode 100644
index 000000000..b2dacc404
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-010-BDD_And_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 164
+ name: BDD And keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 11
+ line: 164
+ start:
+ character: 8
+ line: 164
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-004-BDD_Then].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-004-BDD_Then].out
new file mode 100644
index 000000000..cdb11b6ed
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-004-BDD_Then].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 4
+ line: 167
+ name: BDD Then
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-006-BDD_Then].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-006-BDD_Then].out
new file mode 100644
index 000000000..244def113
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-006-BDD_Then].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 6
+ line: 167
+ name: BDD Then
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-007-BDD_Then].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-007-BDD_Then].out
new file mode 100644
index 000000000..0470b0d09
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-007-BDD_Then].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 7
+ line: 167
+ name: BDD Then
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-008-BDD_Then_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-008-BDD_Then_keyword].out
new file mode 100644
index 000000000..69e25e4fd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-008-BDD_Then_keyword].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 8
+ line: 167
+ name: BDD Then keyword
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-009-BDD_Then_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-009-BDD_Then_keyword].out
new file mode 100644
index 000000000..fb0d5452b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-009-BDD_Then_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 9
+ line: 167
+ name: BDD Then keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 12
+ line: 167
+ start:
+ character: 9
+ line: 167
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-010-BDD_Then_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-010-BDD_Then_keyword].out
new file mode 100644
index 000000000..62ff88169
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-010-BDD_Then_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 167
+ name: BDD Then keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 12
+ line: 167
+ start:
+ character: 9
+ line: 167
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-004-BDD_But].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-004-BDD_But].out
new file mode 100644
index 000000000..02e0b2def
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-004-BDD_But].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 4
+ line: 170
+ name: BDD But
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-005-BDD_But].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-005-BDD_But].out
new file mode 100644
index 000000000..298432111
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-005-BDD_But].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 5
+ line: 170
+ name: BDD But
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-006-BDD_But].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-006-BDD_But].out
new file mode 100644
index 000000000..2f12eb80b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-006-BDD_But].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 6
+ line: 170
+ name: BDD But
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-008-BDD_But_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-008-BDD_But_keyword].out
new file mode 100644
index 000000000..2cfdb194a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-008-BDD_But_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 8
+ line: 170
+ name: BDD But keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 11
+ line: 170
+ start:
+ character: 8
+ line: 170
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-009-BDD_But_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-009-BDD_But_keyword].out
new file mode 100644
index 000000000..5a9455191
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-009-BDD_But_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 9
+ line: 170
+ name: BDD But keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 11
+ line: 170
+ start:
+ character: 8
+ line: 170
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-010-BDD_But_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-010-BDD_But_keyword].out
new file mode 100644
index 000000000..09e8af4a5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-010-BDD_But_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 170
+ name: BDD But keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 11
+ line: 170
+ start:
+ character: 8
+ line: 170
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-004-BDD_given_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-004-BDD_given_with_namespace].out
new file mode 100644
index 000000000..c1e46448e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-004-BDD_given_with_namespace].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 4
+ line: 173
+ name: BDD given with namespace
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-006-BDD_given_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-006-BDD_given_with_namespace].out
new file mode 100644
index 000000000..2925dc869
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-006-BDD_given_with_namespace].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 6
+ line: 173
+ name: BDD given with namespace
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-008-BDD_given_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-008-BDD_given_with_namespace].out
new file mode 100644
index 000000000..d146c3848
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-008-BDD_given_with_namespace].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 8
+ line: 173
+ name: BDD given with namespace
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-010-BDD_namespace_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-010-BDD_namespace_with_namespace].out
new file mode 100644
index 000000000..a6d915c60
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-010-BDD_namespace_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 173
+ name: BDD namespace with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *BuiltIn*'
+ range:
+ end:
+ character: 17
+ line: 173
+ start:
+ character: 10
+ line: 173
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-013-BDD_namespace_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-013-BDD_namespace_with_namespace].out
new file mode 100644
index 000000000..5a6369d67
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-013-BDD_namespace_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 13
+ line: 173
+ name: BDD namespace with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *BuiltIn*'
+ range:
+ end:
+ character: 17
+ line: 173
+ start:
+ character: 10
+ line: 173
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-016-BDD_namespace_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-016-BDD_namespace_with_namespace].out
new file mode 100644
index 000000000..eb5f21fb1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-016-BDD_namespace_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 16
+ line: 173
+ name: BDD namespace with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *BuiltIn*'
+ range:
+ end:
+ character: 17
+ line: 173
+ start:
+ character: 10
+ line: 173
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-018-BDD_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-018-BDD_keyword_with_namespace].out
new file mode 100644
index 000000000..1d9317a0f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-018-BDD_keyword_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 18
+ line: 173
+ name: BDD keyword with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 21
+ line: 173
+ start:
+ character: 18
+ line: 173
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-019-BDD_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-019-BDD_keyword_with_namespace].out
new file mode 100644
index 000000000..e07bd7a1e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-019-BDD_keyword_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 19
+ line: 173
+ name: BDD keyword with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 21
+ line: 173
+ start:
+ character: 18
+ line: 173
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-020-BDD_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-020-BDD_keyword_with_namespace].out
new file mode 100644
index 000000000..693a4a9bc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-020-BDD_keyword_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 20
+ line: 173
+ name: BDD keyword with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 21
+ line: 173
+ start:
+ character: 18
+ line: 173
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-037-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-037-BDD_Given_in_run_keyword].out
new file mode 100644
index 000000000..b7812beed
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-037-BDD_Given_in_run_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 37
+ line: 178
+ name: BDD Given in run keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 40
+ line: 178
+ start:
+ character: 37
+ line: 178
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-038-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-038-BDD_Given_in_run_keyword].out
new file mode 100644
index 000000000..64e46cd7a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-038-BDD_Given_in_run_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 38
+ line: 178
+ name: BDD Given in run keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 40
+ line: 178
+ start:
+ character: 37
+ line: 178
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-039-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-039-BDD_Given_in_run_keyword].out
new file mode 100644
index 000000000..4c329afc9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-039-BDD_Given_in_run_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 39
+ line: 178
+ name: BDD Given in run keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 40
+ line: 178
+ start:
+ character: 37
+ line: 178
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-062-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-062-BDD_Given_in_run_keyword].out
new file mode 100644
index 000000000..bc2e78984
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-062-BDD_Given_in_run_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 62
+ line: 178
+ name: BDD Given in run keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 65
+ line: 178
+ start:
+ character: 62
+ line: 178
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-063-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-063-BDD_Given_in_run_keyword].out
new file mode 100644
index 000000000..b8d5f5909
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-063-BDD_Given_in_run_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 63
+ line: 178
+ name: BDD Given in run keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 65
+ line: 178
+ start:
+ character: 62
+ line: 178
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-064-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-064-BDD_Given_in_run_keyword].out
new file mode 100644
index 000000000..8973487e7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-064-BDD_Given_in_run_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 64
+ line: 178
+ name: BDD Given in run keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 65
+ line: 178
+ start:
+ character: 62
+ line: 178
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-079-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-079-BDD_Given_in_run_keyword].out
new file mode 100644
index 000000000..744df0416
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-079-BDD_Given_in_run_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 79
+ line: 178
+ name: BDD Given in run keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 82
+ line: 178
+ start:
+ character: 79
+ line: 178
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-080-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-080-BDD_Given_in_run_keyword].out
new file mode 100644
index 000000000..ca33b22af
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-080-BDD_Given_in_run_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 80
+ line: 178
+ name: BDD Given in run keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 82
+ line: 178
+ start:
+ character: 79
+ line: 178
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-081-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-081-BDD_Given_in_run_keyword].out
new file mode 100644
index 000000000..2706a1d0d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-081-BDD_Given_in_run_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 81
+ line: 178
+ name: BDD Given in run keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 82
+ line: 178
+ start:
+ character: 79
+ line: 178
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-051-BDD_Given_namespace_in_run_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-051-BDD_Given_namespace_in_run_keyword_with_namespace].out
new file mode 100644
index 000000000..3596bb0f5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-051-BDD_Given_namespace_in_run_keyword_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 51
+ line: 183
+ name: BDD Given namespace in run keyword with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *BuiltIn*'
+ range:
+ end:
+ character: 58
+ line: 183
+ start:
+ character: 51
+ line: 183
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-054-BDD_Given_namespace_in_run_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-054-BDD_Given_namespace_in_run_keyword_with_namespace].out
new file mode 100644
index 000000000..73e031b3f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-054-BDD_Given_namespace_in_run_keyword_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 54
+ line: 183
+ name: BDD Given namespace in run keyword with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *BuiltIn*'
+ range:
+ end:
+ character: 58
+ line: 183
+ start:
+ character: 51
+ line: 183
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-057-BDD_Given_namespace_in_run_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-057-BDD_Given_namespace_in_run_keyword_with_namespace].out
new file mode 100644
index 000000000..11c16e696
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-057-BDD_Given_namespace_in_run_keyword_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 57
+ line: 183
+ name: BDD Given namespace in run keyword with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *BuiltIn*'
+ range:
+ end:
+ character: 58
+ line: 183
+ start:
+ character: 51
+ line: 183
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-059-BDD_Given_keyword_in_run_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-059-BDD_Given_keyword_in_run_keyword_with_namespace].out
new file mode 100644
index 000000000..9d127c866
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-059-BDD_Given_keyword_in_run_keyword_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 59
+ line: 183
+ name: BDD Given keyword in run keyword with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 62
+ line: 183
+ start:
+ character: 59
+ line: 183
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-060-BDD_Given_keyword_in_run_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-060-BDD_Given_keyword_in_run_keyword_with_namespace].out
new file mode 100644
index 000000000..81110ca1a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-060-BDD_Given_keyword_in_run_keyword_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 60
+ line: 183
+ name: BDD Given keyword in run keyword with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 62
+ line: 183
+ start:
+ character: 59
+ line: 183
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-061-BDD_Given_keyword_in_run_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-061-BDD_Given_keyword_in_run_keyword_with_namespace].out
new file mode 100644
index 000000000..dd2ecf437
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-061-BDD_Given_keyword_in_run_keyword_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 61
+ line: 183
+ name: BDD Given keyword in run keyword with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 62
+ line: 183
+ start:
+ character: 59
+ line: 183
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-004-keyword_with_dot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-004-keyword_with_dot].out
new file mode 100644
index 000000000..07f18504d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-004-keyword_with_dot].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 193
+ name: keyword with dot
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *do.sell fish*'
+ range:
+ end:
+ character: 16
+ line: 193
+ start:
+ character: 4
+ line: 193
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-010-keyword_with_dot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-010-keyword_with_dot].out
new file mode 100644
index 000000000..b4becab47
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-010-keyword_with_dot].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 193
+ name: keyword with dot
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *do.sell fish*'
+ range:
+ end:
+ character: 16
+ line: 193
+ start:
+ character: 4
+ line: 193
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-015-keyword_with_dot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-015-keyword_with_dot].out
new file mode 100644
index 000000000..016c0310f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-015-keyword_with_dot].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 15
+ line: 193
+ name: keyword with dot
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *do.sell fish*'
+ range:
+ end:
+ character: 16
+ line: 193
+ start:
+ character: 4
+ line: 193
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-004-namespace_in_keyword_with_dot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-004-namespace_in_keyword_with_dot].out
new file mode 100644
index 000000000..f498e8b4a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-004-namespace_in_keyword_with_dot].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 195
+ name: namespace in keyword with dot
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Resource *firstresource*'
+ range:
+ end:
+ character: 17
+ line: 195
+ start:
+ character: 4
+ line: 195
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-010-namespace_in_keyword_with_dot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-010-namespace_in_keyword_with_dot].out
new file mode 100644
index 000000000..3f32bda92
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-010-namespace_in_keyword_with_dot].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 195
+ name: namespace in keyword with dot
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Resource *firstresource*'
+ range:
+ end:
+ character: 17
+ line: 195
+ start:
+ character: 4
+ line: 195
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-016-namespace_in_keyword_with_dot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-016-namespace_in_keyword_with_dot].out
new file mode 100644
index 000000000..655fb5edc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-016-namespace_in_keyword_with_dot].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 16
+ line: 195
+ name: namespace in keyword with dot
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Resource *firstresource*'
+ range:
+ end:
+ character: 17
+ line: 195
+ start:
+ character: 4
+ line: 195
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-018-keyword_with_dot_after_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-018-keyword_with_dot_after_namespace].out
new file mode 100644
index 000000000..f0bb0fa42
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-018-keyword_with_dot_after_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 18
+ line: 195
+ name: keyword with dot after namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *do.sell fish*'
+ range:
+ end:
+ character: 30
+ line: 195
+ start:
+ character: 18
+ line: 195
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-024-keyword_with_dot_after_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-024-keyword_with_dot_after_namespace].out
new file mode 100644
index 000000000..e0040932b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-024-keyword_with_dot_after_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 24
+ line: 195
+ name: keyword with dot after namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *do.sell fish*'
+ range:
+ end:
+ character: 30
+ line: 195
+ start:
+ character: 18
+ line: 195
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-029-keyword_with_dot_after_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-029-keyword_with_dot_after_namespace].out
new file mode 100644
index 000000000..ee9a1cd45
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-029-keyword_with_dot_after_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 29
+ line: 195
+ name: keyword with dot after namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *do.sell fish*'
+ range:
+ end:
+ character: 30
+ line: 195
+ start:
+ character: 18
+ line: 195
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-004-duplicated_keyword_a].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-004-duplicated_keyword_a].out
new file mode 100644
index 000000000..f54bb49fc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-004-duplicated_keyword_a].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 200
+ name: duplicated keyword a
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *A Resource Keyword A*'
+ range:
+ end:
+ character: 24
+ line: 200
+ start:
+ character: 4
+ line: 200
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-014-duplicated_keyword_a].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-014-duplicated_keyword_a].out
new file mode 100644
index 000000000..9ac3a9e52
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-014-duplicated_keyword_a].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 14
+ line: 200
+ name: duplicated keyword a
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *A Resource Keyword A*'
+ range:
+ end:
+ character: 24
+ line: 200
+ start:
+ character: 4
+ line: 200
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-023-duplicated_keyword_a].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-023-duplicated_keyword_a].out
new file mode 100644
index 000000000..9d8880100
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-023-duplicated_keyword_a].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 23
+ line: 200
+ name: duplicated keyword a
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *A Resource Keyword A*'
+ range:
+ end:
+ character: 24
+ line: 200
+ start:
+ character: 4
+ line: 200
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-004-duplicated_keyword_b].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-004-duplicated_keyword_b].out
new file mode 100644
index 000000000..ffb2179e1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-004-duplicated_keyword_b].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 202
+ name: duplicated keyword b
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *a resource keyword B*'
+ range:
+ end:
+ character: 24
+ line: 202
+ start:
+ character: 4
+ line: 202
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-014-duplicated_keyword_b].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-014-duplicated_keyword_b].out
new file mode 100644
index 000000000..d3d2192fa
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-014-duplicated_keyword_b].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 14
+ line: 202
+ name: duplicated keyword b
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *a resource keyword B*'
+ range:
+ end:
+ character: 24
+ line: 202
+ start:
+ character: 4
+ line: 202
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-023-duplicated_keyword_b].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-023-duplicated_keyword_b].out
new file mode 100644
index 000000000..728931916
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-023-duplicated_keyword_b].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 23
+ line: 202
+ name: duplicated keyword b
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *a resource keyword B*'
+ range:
+ end:
+ character: 24
+ line: 202
+ start:
+ character: 4
+ line: 202
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-004-duplicated_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-004-duplicated_keyword].out
new file mode 100644
index 000000000..ed74fc232
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-004-duplicated_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 204
+ name: duplicated keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *duplicated keyword*'
+ range:
+ end:
+ character: 22
+ line: 204
+ start:
+ character: 4
+ line: 204
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-013-duplicated_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-013-duplicated_keyword].out
new file mode 100644
index 000000000..6015c298d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-013-duplicated_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 13
+ line: 204
+ name: duplicated keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *duplicated keyword*'
+ range:
+ end:
+ character: 22
+ line: 204
+ start:
+ character: 4
+ line: 204
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-021-duplicated_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-021-duplicated_keyword].out
new file mode 100644
index 000000000..059afacd7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-021-duplicated_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 21
+ line: 204
+ name: duplicated keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *duplicated keyword*'
+ range:
+ end:
+ character: 22
+ line: 204
+ start:
+ character: 4
+ line: 204
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-004-duplicated_keyword_a_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-004-duplicated_keyword_a_with_namespace].out
new file mode 100644
index 000000000..8401e302a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-004-duplicated_keyword_a_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 206
+ name: duplicated keyword a with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Resource *duplicated*'
+ range:
+ end:
+ character: 14
+ line: 206
+ start:
+ character: 4
+ line: 206
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-019-duplicated_keyword_a_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-019-duplicated_keyword_a_with_namespace].out
new file mode 100644
index 000000000..10763153a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-019-duplicated_keyword_a_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 19
+ line: 206
+ name: duplicated keyword a with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *A Resource Keyword A*'
+ range:
+ end:
+ character: 35
+ line: 206
+ start:
+ character: 15
+ line: 206
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-034-duplicated_keyword_a_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-034-duplicated_keyword_a_with_namespace].out
new file mode 100644
index 000000000..92bcbd065
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-034-duplicated_keyword_a_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 34
+ line: 206
+ name: duplicated keyword a with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *A Resource Keyword A*'
+ range:
+ end:
+ character: 35
+ line: 206
+ start:
+ character: 15
+ line: 206
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-004-duplicated_keyword_b_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-004-duplicated_keyword_b_with_namespace].out
new file mode 100644
index 000000000..6bf07c198
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-004-duplicated_keyword_b_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 208
+ name: duplicated keyword b with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Resource *duplicated*'
+ range:
+ end:
+ character: 14
+ line: 208
+ start:
+ character: 4
+ line: 208
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-019-duplicated_keyword_b_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-019-duplicated_keyword_b_with_namespace].out
new file mode 100644
index 000000000..4ea49a13b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-019-duplicated_keyword_b_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 19
+ line: 208
+ name: duplicated keyword b with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *a resource keyword B*'
+ range:
+ end:
+ character: 35
+ line: 208
+ start:
+ character: 15
+ line: 208
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-034-duplicated_keyword_b_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-034-duplicated_keyword_b_with_namespace].out
new file mode 100644
index 000000000..9fdf9c80d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-034-duplicated_keyword_b_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 34
+ line: 208
+ name: duplicated keyword b with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *a resource keyword B*'
+ range:
+ end:
+ character: 35
+ line: 208
+ start:
+ character: 15
+ line: 208
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-004-duplicated_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-004-duplicated_keyword_with_namespace].out
new file mode 100644
index 000000000..1ee75eae6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-004-duplicated_keyword_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 210
+ name: duplicated keyword with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Resource *duplicated*'
+ range:
+ end:
+ character: 14
+ line: 210
+ start:
+ character: 4
+ line: 210
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-018-duplicated_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-018-duplicated_keyword_with_namespace].out
new file mode 100644
index 000000000..e51f124f2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-018-duplicated_keyword_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 18
+ line: 210
+ name: duplicated keyword with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *duplicated keyword*'
+ range:
+ end:
+ character: 33
+ line: 210
+ start:
+ character: 15
+ line: 210
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-032-duplicated_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-032-duplicated_keyword_with_namespace].out
new file mode 100644
index 000000000..61c90ab36
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-032-duplicated_keyword_with_namespace].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 32
+ line: 210
+ name: duplicated keyword with namespace
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *duplicated keyword*'
+ range:
+ end:
+ character: 33
+ line: 210
+ start:
+ character: 15
+ line: 210
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-214-004-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-214-004-a_keyword_with_emoji].out
new file mode 100644
index 000000000..1077dbe38
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-214-004-a_keyword_with_emoji].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 214
+ name: a keyword with emoji
+result: !Hover
+ contents:
+ kind: markdown
+ value: "### Keyword *\U0001F916\U0001F916*"
+ range:
+ end:
+ character: 6
+ line: 214
+ start:
+ character: 4
+ line: 214
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-214-005-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-214-005-a_keyword_with_emoji].out
new file mode 100644
index 000000000..1281be0de
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-214-005-a_keyword_with_emoji].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 5
+ line: 214
+ name: a keyword with emoji
+result: !Hover
+ contents:
+ kind: markdown
+ value: "### Keyword *\U0001F916\U0001F916*"
+ range:
+ end:
+ character: 6
+ line: 214
+ start:
+ character: 4
+ line: 214
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-004-namespace_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-004-namespace_of_unknown_lib].out
new file mode 100644
index 000000000..a1cf042ce
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-004-namespace_of_unknown_lib].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 218
+ name: namespace of unknown lib
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *UnknownLibrary*'
+ range:
+ end:
+ character: 11
+ line: 218
+ start:
+ character: 4
+ line: 218
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-007-namespace_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-007-namespace_of_unknown_lib].out
new file mode 100644
index 000000000..04495a4f4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-007-namespace_of_unknown_lib].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 7
+ line: 218
+ name: namespace of unknown lib
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *UnknownLibrary*'
+ range:
+ end:
+ character: 11
+ line: 218
+ start:
+ character: 4
+ line: 218
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-010-namespace_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-010-namespace_of_unknown_lib].out
new file mode 100644
index 000000000..92f37e1f9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-010-namespace_of_unknown_lib].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 218
+ name: namespace of unknown lib
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *UnknownLibrary*'
+ range:
+ end:
+ character: 11
+ line: 218
+ start:
+ character: 4
+ line: 218
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-012-keyword_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-012-keyword_of_unknown_lib].out
new file mode 100644
index 000000000..599553485
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-012-keyword_of_unknown_lib].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 12
+ line: 218
+ name: keyword of unknown lib
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-020-keyword_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-020-keyword_of_unknown_lib].out
new file mode 100644
index 000000000..f7b1e66a9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-020-keyword_of_unknown_lib].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 20
+ line: 218
+ name: keyword of unknown lib
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-027-keyword_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-027-keyword_of_unknown_lib].out
new file mode 100644
index 000000000..7d4e43aa7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-027-keyword_of_unknown_lib].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 27
+ line: 218
+ name: keyword of unknown lib
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-004-namespace_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-004-namespace_of_unknown_lib].out
new file mode 100644
index 000000000..03ef3f970
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-004-namespace_of_unknown_lib].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 221
+ name: namespace of unknown lib
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *UnknownLibrary*'
+ range:
+ end:
+ character: 11
+ line: 221
+ start:
+ character: 4
+ line: 221
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-007-namespace_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-007-namespace_of_unknown_lib].out
new file mode 100644
index 000000000..f23b295f8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-007-namespace_of_unknown_lib].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 7
+ line: 221
+ name: namespace of unknown lib
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *UnknownLibrary*'
+ range:
+ end:
+ character: 11
+ line: 221
+ start:
+ character: 4
+ line: 221
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-010-namespace_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-010-namespace_of_unknown_lib].out
new file mode 100644
index 000000000..8bff51361
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-010-namespace_of_unknown_lib].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 221
+ name: namespace of unknown lib
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *UnknownLibrary*'
+ range:
+ end:
+ character: 11
+ line: 221
+ start:
+ character: 4
+ line: 221
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-012-keyword_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-012-keyword_of_unknown_lib].out
new file mode 100644
index 000000000..dec8d3ff1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-012-keyword_of_unknown_lib].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 12
+ line: 221
+ name: keyword of unknown lib
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-022-keyword_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-022-keyword_of_unknown_lib].out
new file mode 100644
index 000000000..b7071d361
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-022-keyword_of_unknown_lib].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 22
+ line: 221
+ name: keyword of unknown lib
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-032-keyword_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-032-keyword_of_unknown_lib].out
new file mode 100644
index 000000000..6777657c2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-032-keyword_of_unknown_lib].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 32
+ line: 221
+ name: keyword of unknown lib
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-004-namespace_of_lib_with_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-004-namespace_of_lib_with_error].out
new file mode 100644
index 000000000..7f4170bca
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-004-namespace_of_lib_with_error].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 224
+ name: namespace of lib with error
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 12
+ line: 224
+ start:
+ character: 4
+ line: 224
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-008-namespace_of_lib_with_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-008-namespace_of_lib_with_error].out
new file mode 100644
index 000000000..13a51c0a4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-008-namespace_of_lib_with_error].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 8
+ line: 224
+ name: namespace of lib with error
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 12
+ line: 224
+ start:
+ character: 4
+ line: 224
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-011-namespace_of_lib_with_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-011-namespace_of_lib_with_error].out
new file mode 100644
index 000000000..b45ab24a8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-011-namespace_of_lib_with_error].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 11
+ line: 224
+ name: namespace of lib with error
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 12
+ line: 224
+ start:
+ character: 4
+ line: 224
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-013-keyword_of_lib_with_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-013-keyword_of_lib_with_error].out
new file mode 100644
index 000000000..f623b0f97
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-013-keyword_of_lib_with_error].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 13
+ line: 224
+ name: keyword of lib with error
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *A Library Keyword*'
+ range:
+ end:
+ character: 30
+ line: 224
+ start:
+ character: 13
+ line: 224
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-021-keyword_of_lib_with_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-021-keyword_of_lib_with_error].out
new file mode 100644
index 000000000..0df822c03
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-021-keyword_of_lib_with_error].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 21
+ line: 224
+ name: keyword of lib with error
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *A Library Keyword*'
+ range:
+ end:
+ character: 30
+ line: 224
+ start:
+ character: 13
+ line: 224
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-029-keyword_of_lib_with_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-029-keyword_of_lib_with_error].out
new file mode 100644
index 000000000..28f438aa5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-029-keyword_of_lib_with_error].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 29
+ line: 224
+ name: keyword of lib with error
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *A Library Keyword*'
+ range:
+ end:
+ character: 30
+ line: 224
+ start:
+ character: 13
+ line: 224
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-004-namespace_of_lib_with_no_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-004-namespace_of_lib_with_no_error].out
new file mode 100644
index 000000000..17da0625c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-004-namespace_of_lib_with_no_error].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 227
+ name: namespace of lib with no error
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 14
+ line: 227
+ start:
+ character: 4
+ line: 227
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-009-namespace_of_lib_with_no_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-009-namespace_of_lib_with_no_error].out
new file mode 100644
index 000000000..501db1d13
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-009-namespace_of_lib_with_no_error].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 9
+ line: 227
+ name: namespace of lib with no error
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 14
+ line: 227
+ start:
+ character: 4
+ line: 227
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-013-namespace_of_lib_with_no_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-013-namespace_of_lib_with_no_error].out
new file mode 100644
index 000000000..f04481fac
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-013-namespace_of_lib_with_no_error].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 13
+ line: 227
+ name: namespace of lib with no error
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 14
+ line: 227
+ start:
+ character: 4
+ line: 227
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-015-keyword_of_lib_with_no_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-015-keyword_of_lib_with_no_error].out
new file mode 100644
index 000000000..76a475b92
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-015-keyword_of_lib_with_no_error].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 15
+ line: 227
+ name: keyword of lib with no error
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *A Library Keyword*'
+ range:
+ end:
+ character: 32
+ line: 227
+ start:
+ character: 15
+ line: 227
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-023-keyword_of_lib_with_no_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-023-keyword_of_lib_with_no_error].out
new file mode 100644
index 000000000..5c6f81530
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-023-keyword_of_lib_with_no_error].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 23
+ line: 227
+ name: keyword of lib with no error
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *A Library Keyword*'
+ range:
+ end:
+ character: 32
+ line: 227
+ start:
+ character: 15
+ line: 227
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-031-keyword_of_lib_with_no_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-031-keyword_of_lib_with_no_error].out
new file mode 100644
index 000000000..7fe26fea1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-031-keyword_of_lib_with_no_error].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 31
+ line: 227
+ name: keyword of lib with no error
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *A Library Keyword*'
+ range:
+ end:
+ character: 32
+ line: 227
+ start:
+ character: 15
+ line: 227
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-004-namespace_of_lib_with_no_error_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-004-namespace_of_lib_with_no_error_with_spaces].out
new file mode 100644
index 000000000..ab75d58cb
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-004-namespace_of_lib_with_no_error_with_spaces].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 230
+ name: namespace of lib with no error with spaces
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 23
+ line: 230
+ start:
+ character: 4
+ line: 230
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-013-namespace_of_lib_with_no_error_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-013-namespace_of_lib_with_no_error_with_spaces].out
new file mode 100644
index 000000000..c3d1ef59c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-013-namespace_of_lib_with_no_error_with_spaces].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 13
+ line: 230
+ name: namespace of lib with no error with spaces
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 23
+ line: 230
+ start:
+ character: 4
+ line: 230
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-022-namespace_of_lib_with_no_error_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-022-namespace_of_lib_with_no_error_with_spaces].out
new file mode 100644
index 000000000..0d8840c45
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-022-namespace_of_lib_with_no_error_with_spaces].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 22
+ line: 230
+ name: namespace of lib with no error with spaces
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Library *LibraryWithErrors*'
+ range:
+ end:
+ character: 23
+ line: 230
+ start:
+ character: 4
+ line: 230
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-024-keyword_of_lib_with_no_error_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-024-keyword_of_lib_with_no_error_with_spaces].out
new file mode 100644
index 000000000..d3b8aa704
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-024-keyword_of_lib_with_no_error_with_spaces].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 24
+ line: 230
+ name: keyword of lib with no error with spaces
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *A Library Keyword*'
+ range:
+ end:
+ character: 41
+ line: 230
+ start:
+ character: 24
+ line: 230
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-032-keyword_of_lib_with_no_error_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-032-keyword_of_lib_with_no_error_with_spaces].out
new file mode 100644
index 000000000..edad59dbf
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-032-keyword_of_lib_with_no_error_with_spaces].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 32
+ line: 230
+ name: keyword of lib with no error with spaces
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *A Library Keyword*'
+ range:
+ end:
+ character: 41
+ line: 230
+ start:
+ character: 24
+ line: 230
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-040-keyword_of_lib_with_no_error_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-040-keyword_of_lib_with_no_error_with_spaces].out
new file mode 100644
index 000000000..833b93f12
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-040-keyword_of_lib_with_no_error_with_spaces].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 40
+ line: 230
+ name: keyword of lib with no error with spaces
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *A Library Keyword*'
+ range:
+ end:
+ character: 41
+ line: 230
+ start:
+ character: 24
+ line: 230
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-041-short_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-041-short_keyword_argument].out
new file mode 100644
index 000000000..713edc5ec
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-041-short_keyword_argument].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 41
+ line: 235
+ name: short keyword argument
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${a}`'
+ range:
+ end:
+ character: 42
+ line: 235
+ start:
+ character: 41
+ line: 235
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-048-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-048-keyword_argument_with_spaces].out
new file mode 100644
index 000000000..5fe0d2955
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-048-keyword_argument_with_spaces].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 48
+ line: 235
+ name: keyword argument with spaces
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${a long name}`'
+ range:
+ end:
+ character: 59
+ line: 235
+ start:
+ character: 48
+ line: 235
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-053-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-053-keyword_argument_with_spaces].out
new file mode 100644
index 000000000..696dc8405
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-053-keyword_argument_with_spaces].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 53
+ line: 235
+ name: keyword argument with spaces
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${a long name}`'
+ range:
+ end:
+ character: 59
+ line: 235
+ start:
+ character: 48
+ line: 235
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-058-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-058-keyword_argument_with_spaces].out
new file mode 100644
index 000000000..018ef9659
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-058-keyword_argument_with_spaces].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 58
+ line: 235
+ name: keyword argument with spaces
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${a long name}`'
+ range:
+ end:
+ character: 59
+ line: 235
+ start:
+ character: 48
+ line: 235
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-004-run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-004-run_keyword].out
new file mode 100644
index 000000000..be6446d29
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-004-run_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 242
+ name: run keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Run Keyword*'
+ range:
+ end:
+ character: 15
+ line: 242
+ start:
+ character: 4
+ line: 242
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-009-run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-009-run_keyword].out
new file mode 100644
index 000000000..1e121e80d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-009-run_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 9
+ line: 242
+ name: run keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Run Keyword*'
+ range:
+ end:
+ character: 15
+ line: 242
+ start:
+ character: 4
+ line: 242
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-014-run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-014-run_keyword].out
new file mode 100644
index 000000000..8ccd17777
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-014-run_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 14
+ line: 242
+ name: run keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Run Keyword*'
+ range:
+ end:
+ character: 15
+ line: 242
+ start:
+ character: 4
+ line: 242
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-019-run_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-019-run_keyword_argument].out
new file mode 100644
index 000000000..e349b6bf6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-019-run_keyword_argument].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 19
+ line: 242
+ name: run keyword argument
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 22
+ line: 242
+ start:
+ character: 19
+ line: 242
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-020-run_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-020-run_keyword_argument].out
new file mode 100644
index 000000000..836c6a475
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-020-run_keyword_argument].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 20
+ line: 242
+ name: run keyword argument
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 22
+ line: 242
+ start:
+ character: 19
+ line: 242
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-021-run_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-021-run_keyword_argument].out
new file mode 100644
index 000000000..7c4b3466a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-021-run_keyword_argument].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 21
+ line: 242
+ name: run keyword argument
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 22
+ line: 242
+ start:
+ character: 19
+ line: 242
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-004-run_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-004-run_keywords].out
new file mode 100644
index 000000000..06a489c61
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-004-run_keywords].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 246
+ name: run keywords
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Run Keywords*'
+ range:
+ end:
+ character: 16
+ line: 246
+ start:
+ character: 4
+ line: 246
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-010-run_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-010-run_keywords].out
new file mode 100644
index 000000000..4dbf3e55d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-010-run_keywords].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 246
+ name: run keywords
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Run Keywords*'
+ range:
+ end:
+ character: 16
+ line: 246
+ start:
+ character: 4
+ line: 246
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-015-run_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-015-run_keywords].out
new file mode 100644
index 000000000..1d2d59168
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-015-run_keywords].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 15
+ line: 246
+ name: run keywords
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Run Keywords*'
+ range:
+ end:
+ character: 16
+ line: 246
+ start:
+ character: 4
+ line: 246
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-020-run_keywords_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-020-run_keywords_simple_keyword].out
new file mode 100644
index 000000000..4ea605e93
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-020-run_keywords_simple_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 20
+ line: 246
+ name: run keywords simple keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *a simple keyword*'
+ range:
+ end:
+ character: 36
+ line: 246
+ start:
+ character: 20
+ line: 246
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-028-run_keywords_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-028-run_keywords_simple_keyword].out
new file mode 100644
index 000000000..ad165c35b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-028-run_keywords_simple_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 28
+ line: 246
+ name: run keywords simple keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *a simple keyword*'
+ range:
+ end:
+ character: 36
+ line: 246
+ start:
+ character: 20
+ line: 246
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-035-run_keywords_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-035-run_keywords_simple_keyword].out
new file mode 100644
index 000000000..18d1165a8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-035-run_keywords_simple_keyword].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 35
+ line: 246
+ name: run keywords simple keyword
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *a simple keyword*'
+ range:
+ end:
+ character: 36
+ line: 246
+ start:
+ character: 20
+ line: 246
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-040-run_keywords_second_parameter_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-040-run_keywords_second_parameter_with_spaces].out
new file mode 100644
index 000000000..ce0f80faa
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-040-run_keywords_second_parameter_with_spaces].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 40
+ line: 246
+ name: run keywords second parameter with spaces
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *sleep a while*'
+ range:
+ end:
+ character: 60
+ line: 246
+ start:
+ character: 40
+ line: 246
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-050-run_keywords_second_parameter_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-050-run_keywords_second_parameter_with_spaces].out
new file mode 100644
index 000000000..1cba6c0e1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-050-run_keywords_second_parameter_with_spaces].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 50
+ line: 246
+ name: run keywords second parameter with spaces
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *sleep a while*'
+ range:
+ end:
+ character: 60
+ line: 246
+ start:
+ character: 40
+ line: 246
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-059-run_keywords_second_parameter_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-059-run_keywords_second_parameter_with_spaces].out
new file mode 100644
index 000000000..a368a0fa9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-059-run_keywords_second_parameter_with_spaces].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 59
+ line: 246
+ name: run keywords second parameter with spaces
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *sleep a while*'
+ range:
+ end:
+ character: 60
+ line: 246
+ start:
+ character: 40
+ line: 246
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-004-run_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-004-run_keywords].out
new file mode 100644
index 000000000..5ab2363f9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-004-run_keywords].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 251
+ name: run keywords
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Run Keywords*'
+ range:
+ end:
+ character: 16
+ line: 251
+ start:
+ character: 4
+ line: 251
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-010-run_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-010-run_keywords].out
new file mode 100644
index 000000000..b91ade5cb
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-010-run_keywords].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 10
+ line: 251
+ name: run keywords
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Run Keywords*'
+ range:
+ end:
+ character: 16
+ line: 251
+ start:
+ character: 4
+ line: 251
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-015-run_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-015-run_keywords].out
new file mode 100644
index 000000000..d0257f704
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-015-run_keywords].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 15
+ line: 251
+ name: run keywords
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Run Keywords*'
+ range:
+ end:
+ character: 16
+ line: 251
+ start:
+ character: 4
+ line: 251
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-020-run_keywords_simple_keyword,_parameter_and_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-020-run_keywords_simple_keyword,_parameter_and_AND].out
new file mode 100644
index 000000000..0b9a61c3b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-020-run_keywords_simple_keyword,_parameter_and_AND].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 20
+ line: 251
+ name: run keywords simple keyword, parameter and AND
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 23
+ line: 251
+ start:
+ character: 20
+ line: 251
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-021-run_keywords_simple_keyword,_parameter_and_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-021-run_keywords_simple_keyword,_parameter_and_AND].out
new file mode 100644
index 000000000..3421889df
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-021-run_keywords_simple_keyword,_parameter_and_AND].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 21
+ line: 251
+ name: run keywords simple keyword, parameter and AND
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 23
+ line: 251
+ start:
+ character: 20
+ line: 251
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-022-run_keywords_simple_keyword,_parameter_and_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-022-run_keywords_simple_keyword,_parameter_and_AND].out
new file mode 100644
index 000000000..8db741fac
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-022-run_keywords_simple_keyword,_parameter_and_AND].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 22
+ line: 251
+ name: run keywords simple keyword, parameter and AND
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Log*'
+ range:
+ end:
+ character: 23
+ line: 251
+ start:
+ character: 20
+ line: 251
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-029-AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-029-AND].out
new file mode 100644
index 000000000..bdbc6d106
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-029-AND].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 29
+ line: 251
+ name: AND
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-030-AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-030-AND].out
new file mode 100644
index 000000000..a48ca7cd6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-030-AND].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 30
+ line: 251
+ name: AND
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-031-AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-031-AND].out
new file mode 100644
index 000000000..6a02737d7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-031-AND].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 31
+ line: 251
+ name: AND
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-034-run_keywords_simple_keyword_and_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-034-run_keywords_simple_keyword_and_AND].out
new file mode 100644
index 000000000..cea835972
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-034-run_keywords_simple_keyword_and_AND].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 34
+ line: 251
+ name: run keywords simple keyword and AND
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *a simple keyword*'
+ range:
+ end:
+ character: 50
+ line: 251
+ start:
+ character: 34
+ line: 251
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-042-run_keywords_simple_keyword_and_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-042-run_keywords_simple_keyword_and_AND].out
new file mode 100644
index 000000000..141a66af0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-042-run_keywords_simple_keyword_and_AND].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 42
+ line: 251
+ name: run keywords simple keyword and AND
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *a simple keyword*'
+ range:
+ end:
+ character: 50
+ line: 251
+ start:
+ character: 34
+ line: 251
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-049-run_keywords_simple_keyword_and_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-049-run_keywords_simple_keyword_and_AND].out
new file mode 100644
index 000000000..420476871
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-049-run_keywords_simple_keyword_and_AND].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 49
+ line: 251
+ name: run keywords simple keyword and AND
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *a simple keyword*'
+ range:
+ end:
+ character: 50
+ line: 251
+ start:
+ character: 34
+ line: 251
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-057-run_keywords_second_parameter_with_spaces_and_no_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-057-run_keywords_second_parameter_with_spaces_and_no_AND].out
new file mode 100644
index 000000000..83833c7cd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-057-run_keywords_second_parameter_with_spaces_and_no_AND].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 57
+ line: 251
+ name: run keywords second parameter with spaces and no AND
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *sleep a while*'
+ range:
+ end:
+ character: 77
+ line: 251
+ start:
+ character: 57
+ line: 251
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-067-run_keywords_second_parameter_with_spaces_and_no_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-067-run_keywords_second_parameter_with_spaces_and_no_AND].out
new file mode 100644
index 000000000..fabfbb223
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-067-run_keywords_second_parameter_with_spaces_and_no_AND].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 67
+ line: 251
+ name: run keywords second parameter with spaces and no AND
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *sleep a while*'
+ range:
+ end:
+ character: 77
+ line: 251
+ start:
+ character: 57
+ line: 251
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-076-run_keywords_second_parameter_with_spaces_and_no_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-076-run_keywords_second_parameter_with_spaces_and_no_AND].out
new file mode 100644
index 000000000..f345bc2d9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-076-run_keywords_second_parameter_with_spaces_and_no_AND].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 76
+ line: 251
+ name: run keywords second parameter with spaces and no AND
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *sleep a while*'
+ range:
+ end:
+ character: 77
+ line: 251
+ start:
+ character: 57
+ line: 251
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-001-simple_keyword_with_extra_spaces_and_parameter].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-001-simple_keyword_with_extra_spaces_and_parameter].out
new file mode 100644
index 000000000..f6f33b746
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-001-simple_keyword_with_extra_spaces_and_parameter].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 1
+ line: 258
+ name: simple keyword with extra spaces and parameter
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *a simple keyword*'
+ range:
+ end:
+ character: 16
+ line: 258
+ start:
+ character: 0
+ line: 258
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-008-simple_keyword_with_extra_spaces_and_parameter].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-008-simple_keyword_with_extra_spaces_and_parameter].out
new file mode 100644
index 000000000..71fb93378
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-008-simple_keyword_with_extra_spaces_and_parameter].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 8
+ line: 258
+ name: simple keyword with extra spaces and parameter
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *a simple keyword*'
+ range:
+ end:
+ character: 16
+ line: 258
+ start:
+ character: 0
+ line: 258
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-015-simple_keyword_with_extra_spaces_and_parameter].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-015-simple_keyword_with_extra_spaces_and_parameter].out
new file mode 100644
index 000000000..1b01ae86e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-015-simple_keyword_with_extra_spaces_and_parameter].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 15
+ line: 258
+ name: simple keyword with extra spaces and parameter
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *a simple keyword*'
+ range:
+ end:
+ character: 16
+ line: 258
+ start:
+ character: 0
+ line: 258
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-004-simple_keyword_with_extra_spaces_and_parameter].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-004-simple_keyword_with_extra_spaces_and_parameter].out
new file mode 100644
index 000000000..eeccf5f0b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-004-simple_keyword_with_extra_spaces_and_parameter].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 4
+ line: 263
+ name: simple keyword with extra spaces and parameter
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Sleep*'
+ range:
+ end:
+ character: 13
+ line: 263
+ start:
+ character: 4
+ line: 263
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-008-simple_keyword_with_extra_spaces_and_parameter].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-008-simple_keyword_with_extra_spaces_and_parameter].out
new file mode 100644
index 000000000..c5e4493f4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-008-simple_keyword_with_extra_spaces_and_parameter].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 8
+ line: 263
+ name: simple keyword with extra spaces and parameter
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Sleep*'
+ range:
+ end:
+ character: 13
+ line: 263
+ start:
+ character: 4
+ line: 263
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-012-simple_keyword_with_extra_spaces_and_parameter].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-012-simple_keyword_with_extra_spaces_and_parameter].out
new file mode 100644
index 000000000..4c43fa9b9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-012-simple_keyword_with_extra_spaces_and_parameter].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 12
+ line: 263
+ name: simple keyword with extra spaces and parameter
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Keyword *Sleep*'
+ range:
+ end:
+ character: 13
+ line: 263
+ start:
+ character: 4
+ line: 263
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-021-another_argument].out
new file mode 100644
index 000000000..8b2676d50
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-021-another_argument].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 21
+ line: 267
+ name: another argument
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${A VAR}`'
+ range:
+ end:
+ character: 26
+ line: 267
+ start:
+ character: 21
+ line: 267
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-023-another_argument].out
new file mode 100644
index 000000000..79d3077db
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-023-another_argument].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 23
+ line: 267
+ name: another argument
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${A VAR}`'
+ range:
+ end:
+ character: 26
+ line: 267
+ start:
+ character: 21
+ line: 267
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-025-another_argument].out
new file mode 100644
index 000000000..b892784f0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-025-another_argument].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 25
+ line: 267
+ name: another argument
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${A VAR}`'
+ range:
+ end:
+ character: 26
+ line: 267
+ start:
+ character: 21
+ line: 267
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-030-a_default_value].out
new file mode 100644
index 000000000..e82bf2308
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-030-a_default_value].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 30
+ line: 267
+ name: a default value
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${A VAR}`'
+ range:
+ end:
+ character: 35
+ line: 267
+ start:
+ character: 30
+ line: 267
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-032-a_default_value].out
new file mode 100644
index 000000000..5c646c6c8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-032-a_default_value].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 32
+ line: 267
+ name: a default value
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${A VAR}`'
+ range:
+ end:
+ character: 35
+ line: 267
+ start:
+ character: 30
+ line: 267
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-034-a_default_value].out
new file mode 100644
index 000000000..b6be4901b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-034-a_default_value].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 34
+ line: 267
+ name: a default value
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${A VAR}`'
+ range:
+ end:
+ character: 35
+ line: 267
+ start:
+ character: 30
+ line: 267
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-270-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-270-013-argument_usage].out
new file mode 100644
index 000000000..96eeadbae
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-270-013-argument_usage].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 13
+ line: 270
+ name: argument usage
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-270-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-270-014-argument_usage].out
new file mode 100644
index 000000000..fe4fe963c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-270-014-argument_usage].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 14
+ line: 270
+ name: argument usage
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-013-argument_usage].out
new file mode 100644
index 000000000..0d8e6a5e7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-013-argument_usage].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 13
+ line: 272
+ name: argument usage
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${A VAR}`'
+ range:
+ end:
+ character: 18
+ line: 272
+ start:
+ character: 13
+ line: 272
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-015-argument_usage].out
new file mode 100644
index 000000000..528794aef
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-015-argument_usage].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 15
+ line: 272
+ name: argument usage
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${A VAR}`'
+ range:
+ end:
+ character: 18
+ line: 272
+ start:
+ character: 13
+ line: 272
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-017-argument_usage].out
new file mode 100644
index 000000000..592051b8e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-017-argument_usage].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 17
+ line: 272
+ name: argument usage
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${A VAR}`'
+ range:
+ end:
+ character: 18
+ line: 272
+ start:
+ character: 13
+ line: 272
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-021-an_argument].out
new file mode 100644
index 000000000..8d0c7471e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-021-an_argument].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 21
+ line: 276
+ name: an argument
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${tt}`'
+ range:
+ end:
+ character: 23
+ line: 276
+ start:
+ character: 21
+ line: 276
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-022-an_argument].out
new file mode 100644
index 000000000..d2c6f5adc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-022-an_argument].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 22
+ line: 276
+ name: an argument
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${tt}`'
+ range:
+ end:
+ character: 23
+ line: 276
+ start:
+ character: 21
+ line: 276
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-030-another_argument].out
new file mode 100644
index 000000000..c2c71f54c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-030-another_argument].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 30
+ line: 276
+ name: another argument
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${A VAR}`'
+ range:
+ end:
+ character: 35
+ line: 276
+ start:
+ character: 30
+ line: 276
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-032-another_argument].out
new file mode 100644
index 000000000..38039ebbd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-032-another_argument].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 32
+ line: 276
+ name: another argument
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${A VAR}`'
+ range:
+ end:
+ character: 35
+ line: 276
+ start:
+ character: 30
+ line: 276
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-034-another_argument].out
new file mode 100644
index 000000000..60d9c5afe
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-034-another_argument].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 34
+ line: 276
+ name: another argument
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${A VAR}`'
+ range:
+ end:
+ character: 35
+ line: 276
+ start:
+ character: 30
+ line: 276
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-039-a_default_value].out
new file mode 100644
index 000000000..fa8ebb7a4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-039-a_default_value].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 39
+ line: 276
+ name: a default value
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${A VAR}`'
+ range:
+ end:
+ character: 44
+ line: 276
+ start:
+ character: 39
+ line: 276
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-041-a_default_value].out
new file mode 100644
index 000000000..43780d24e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-041-a_default_value].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 41
+ line: 276
+ name: a default value
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${A VAR}`'
+ range:
+ end:
+ character: 44
+ line: 276
+ start:
+ character: 39
+ line: 276
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-043-a_default_value].out
new file mode 100644
index 000000000..29006ae2e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-043-a_default_value].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 43
+ line: 276
+ name: a default value
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Suite Variable `${A VAR}`'
+ range:
+ end:
+ character: 44
+ line: 276
+ start:
+ character: 39
+ line: 276
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-280-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-280-013-argument_usage].out
new file mode 100644
index 000000000..a59eb306c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-280-013-argument_usage].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 13
+ line: 280
+ name: argument usage
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${tt}`'
+ range:
+ end:
+ character: 15
+ line: 280
+ start:
+ character: 13
+ line: 280
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-280-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-280-014-argument_usage].out
new file mode 100644
index 000000000..0a5df5f52
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-280-014-argument_usage].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 14
+ line: 280
+ name: argument usage
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${tt}`'
+ range:
+ end:
+ character: 15
+ line: 280
+ start:
+ character: 13
+ line: 280
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-013-argument_usage].out
new file mode 100644
index 000000000..3103c35b4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-013-argument_usage].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 13
+ line: 282
+ name: argument usage
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${A VAR}`'
+ range:
+ end:
+ character: 18
+ line: 282
+ start:
+ character: 13
+ line: 282
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-015-argument_usage].out
new file mode 100644
index 000000000..a0904070f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-015-argument_usage].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 15
+ line: 282
+ name: argument usage
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${A VAR}`'
+ range:
+ end:
+ character: 18
+ line: 282
+ start:
+ character: 13
+ line: 282
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-017-argument_usage].out
new file mode 100644
index 000000000..68b5dfa26
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-017-argument_usage].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 17
+ line: 282
+ name: argument usage
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${A VAR}`'
+ range:
+ end:
+ character: 18
+ line: 282
+ start:
+ character: 13
+ line: 282
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-021-an_argument].out
new file mode 100644
index 000000000..33b9896ba
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-021-an_argument].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 21
+ line: 286
+ name: an argument
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${a}`'
+ range:
+ end:
+ character: 22
+ line: 286
+ start:
+ character: 21
+ line: 286
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-029-another_argument].out
new file mode 100644
index 000000000..5ad1ab301
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-029-another_argument].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 29
+ line: 286
+ name: another argument
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${b}`'
+ range:
+ end:
+ character: 30
+ line: 286
+ start:
+ character: 29
+ line: 286
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-034-argument_usage_in_argument].out
new file mode 100644
index 000000000..058c01409
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-034-argument_usage_in_argument].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 34
+ line: 286
+ name: argument usage in argument
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${a}`'
+ range:
+ end:
+ character: 35
+ line: 286
+ start:
+ character: 34
+ line: 286
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-290-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-290-013-argument_usage].out
new file mode 100644
index 000000000..9ae1f7c0f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-290-013-argument_usage].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 13
+ line: 290
+ name: argument usage
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${a}`'
+ range:
+ end:
+ character: 14
+ line: 290
+ start:
+ character: 13
+ line: 290
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-292-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-292-013-argument_usage].out
new file mode 100644
index 000000000..8821224b0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-292-013-argument_usage].out
@@ -0,0 +1,15 @@
+data: !GeneratedTestData
+ character: 13
+ line: 292
+ name: argument usage
+result: !Hover
+ contents:
+ kind: markdown
+ value: '### Argument `${b}`'
+ range:
+ end:
+ character: 14
+ line: 292
+ start:
+ character: 13
+ line: 292
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-016-a_builtin_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-016-a_builtin_library].out
new file mode 100644
index 000000000..e08d5e75a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-016-a_builtin_library].out
@@ -0,0 +1,86 @@
+data: !GeneratedTestData
+ character: 16
+ line: 1
+ name: a builtin library
+result:
+- !Location
+ range:
+ end:
+ character: 27
+ line: 1
+ start:
+ character: 16
+ line: 1
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 27
+ line: 1
+ start:
+ character: 16
+ line: 1
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 78
+ start:
+ character: 4
+ line: 78
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 27
+ line: 1
+ start:
+ character: 16
+ line: 1
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 1
+ start:
+ character: 11
+ line: 1
+ uri: tests/signature_help.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 2
+ start:
+ character: 11
+ line: 2
+ uri: tests/symbols.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-021-a_builtin_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-021-a_builtin_library].out
new file mode 100644
index 000000000..dbc16260b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-021-a_builtin_library].out
@@ -0,0 +1,86 @@
+data: !GeneratedTestData
+ character: 21
+ line: 1
+ name: a builtin library
+result:
+- !Location
+ range:
+ end:
+ character: 27
+ line: 1
+ start:
+ character: 16
+ line: 1
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 27
+ line: 1
+ start:
+ character: 16
+ line: 1
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 78
+ start:
+ character: 4
+ line: 78
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 27
+ line: 1
+ start:
+ character: 16
+ line: 1
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 1
+ start:
+ character: 11
+ line: 1
+ uri: tests/signature_help.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 2
+ start:
+ character: 11
+ line: 2
+ uri: tests/symbols.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-026-a_builtin_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-026-a_builtin_library].out
new file mode 100644
index 000000000..b2c80146c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-026-a_builtin_library].out
@@ -0,0 +1,86 @@
+data: !GeneratedTestData
+ character: 26
+ line: 1
+ name: a builtin library
+result:
+- !Location
+ range:
+ end:
+ character: 27
+ line: 1
+ start:
+ character: 16
+ line: 1
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 27
+ line: 1
+ start:
+ character: 16
+ line: 1
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 1
+ start:
+ character: 18
+ line: 1
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 78
+ start:
+ character: 4
+ line: 78
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 27
+ line: 1
+ start:
+ character: 16
+ line: 1
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 1
+ start:
+ character: 11
+ line: 1
+ uri: tests/signature_help.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 2
+ start:
+ character: 11
+ line: 2
+ uri: tests/symbols.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-018-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-018-Variable_in_library_import_path].out
new file mode 100644
index 000000000..e8b5cbd5c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-018-Variable_in_library_import_path].out
@@ -0,0 +1,149 @@
+data: !GeneratedTestData
+ character: 18
+ line: 3
+ name: Variable in library import path
+result:
+- !Location
+ range:
+ end:
+ character: 24
+ line: 5
+ start:
+ character: 18
+ line: 5
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 7
+ start:
+ character: 18
+ line: 7
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 10
+ start:
+ character: 18
+ line: 10
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 4
+ start:
+ character: 20
+ line: 4
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 20
+ start:
+ character: 15
+ line: 20
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 13
+ start:
+ character: 20
+ line: 13
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 89
+ start:
+ character: 13
+ line: 89
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 3
+ start:
+ character: 18
+ line: 3
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 9
+ start:
+ character: 18
+ line: 9
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 18
+ start:
+ character: 13
+ line: 18
+ uri: tests/variables.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-021-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-021-Variable_in_library_import_path].out
new file mode 100644
index 000000000..932f20c74
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-021-Variable_in_library_import_path].out
@@ -0,0 +1,149 @@
+data: !GeneratedTestData
+ character: 21
+ line: 3
+ name: Variable in library import path
+result:
+- !Location
+ range:
+ end:
+ character: 24
+ line: 5
+ start:
+ character: 18
+ line: 5
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 7
+ start:
+ character: 18
+ line: 7
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 10
+ start:
+ character: 18
+ line: 10
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 4
+ start:
+ character: 20
+ line: 4
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 20
+ start:
+ character: 15
+ line: 20
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 13
+ start:
+ character: 20
+ line: 13
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 89
+ start:
+ character: 13
+ line: 89
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 3
+ start:
+ character: 18
+ line: 3
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 9
+ start:
+ character: 18
+ line: 9
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 18
+ start:
+ character: 13
+ line: 18
+ uri: tests/variables.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-023-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-023-Variable_in_library_import_path].out
new file mode 100644
index 000000000..5a0395dff
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-023-Variable_in_library_import_path].out
@@ -0,0 +1,149 @@
+data: !GeneratedTestData
+ character: 23
+ line: 3
+ name: Variable in library import path
+result:
+- !Location
+ range:
+ end:
+ character: 24
+ line: 5
+ start:
+ character: 18
+ line: 5
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 7
+ start:
+ character: 18
+ line: 7
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 10
+ start:
+ character: 18
+ line: 10
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 4
+ start:
+ character: 20
+ line: 4
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 20
+ start:
+ character: 15
+ line: 20
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 13
+ start:
+ character: 20
+ line: 13
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 89
+ start:
+ character: 13
+ line: 89
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 3
+ start:
+ character: 18
+ line: 3
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 9
+ start:
+ character: 18
+ line: 9
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 18
+ start:
+ character: 13
+ line: 18
+ uri: tests/variables.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-030-a_custom_library_with_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-030-a_custom_library_with_path].out
new file mode 100644
index 000000000..21c51eb66
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-030-a_custom_library_with_path].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 30
+ line: 3
+ name: a custom library with path
+result:
+- !Location
+ range:
+ end:
+ character: 27
+ line: 3
+ start:
+ character: 16
+ line: 3
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 5
+ start:
+ character: 16
+ line: 5
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 2
+ start:
+ character: 16
+ line: 2
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 49
+ line: 4
+ start:
+ character: 18
+ line: 4
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 49
+ line: 7
+ start:
+ character: 18
+ line: 7
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 3
+ start:
+ character: 16
+ line: 3
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-037-a_custom_library_with_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-037-a_custom_library_with_path].out
new file mode 100644
index 000000000..762d61ad0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-037-a_custom_library_with_path].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 37
+ line: 3
+ name: a custom library with path
+result:
+- !Location
+ range:
+ end:
+ character: 27
+ line: 3
+ start:
+ character: 16
+ line: 3
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 5
+ start:
+ character: 16
+ line: 5
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 2
+ start:
+ character: 16
+ line: 2
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 49
+ line: 4
+ start:
+ character: 18
+ line: 4
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 49
+ line: 7
+ start:
+ character: 18
+ line: 7
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 3
+ start:
+ character: 16
+ line: 3
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-043-a_custom_library_with_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-043-a_custom_library_with_path].out
new file mode 100644
index 000000000..a345d2618
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-043-a_custom_library_with_path].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 43
+ line: 3
+ name: a custom library with path
+result:
+- !Location
+ range:
+ end:
+ character: 27
+ line: 3
+ start:
+ character: 16
+ line: 3
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 5
+ start:
+ character: 16
+ line: 5
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 2
+ start:
+ character: 16
+ line: 2
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 49
+ line: 4
+ start:
+ character: 18
+ line: 4
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 49
+ line: 7
+ start:
+ character: 18
+ line: 7
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 3
+ start:
+ character: 16
+ line: 3
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out
new file mode 100644
index 000000000..10044fa7b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out
@@ -0,0 +1,149 @@
+data: !GeneratedTestData
+ character: 18
+ line: 6
+ name: Variable in variables import path
+result:
+- !Location
+ range:
+ end:
+ character: 24
+ line: 5
+ start:
+ character: 18
+ line: 5
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 7
+ start:
+ character: 18
+ line: 7
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 10
+ start:
+ character: 18
+ line: 10
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 4
+ start:
+ character: 20
+ line: 4
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 20
+ start:
+ character: 15
+ line: 20
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 13
+ start:
+ character: 20
+ line: 13
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 89
+ start:
+ character: 13
+ line: 89
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 3
+ start:
+ character: 18
+ line: 3
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 9
+ start:
+ character: 18
+ line: 9
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 18
+ start:
+ character: 13
+ line: 18
+ uri: tests/variables.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out
new file mode 100644
index 000000000..8dc7712a6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out
@@ -0,0 +1,149 @@
+data: !GeneratedTestData
+ character: 21
+ line: 6
+ name: Variable in variables import path
+result:
+- !Location
+ range:
+ end:
+ character: 24
+ line: 5
+ start:
+ character: 18
+ line: 5
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 7
+ start:
+ character: 18
+ line: 7
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 10
+ start:
+ character: 18
+ line: 10
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 4
+ start:
+ character: 20
+ line: 4
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 20
+ start:
+ character: 15
+ line: 20
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 13
+ start:
+ character: 20
+ line: 13
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 89
+ start:
+ character: 13
+ line: 89
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 3
+ start:
+ character: 18
+ line: 3
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 9
+ start:
+ character: 18
+ line: 9
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 18
+ start:
+ character: 13
+ line: 18
+ uri: tests/variables.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out
new file mode 100644
index 000000000..19741a0db
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out
@@ -0,0 +1,149 @@
+data: !GeneratedTestData
+ character: 23
+ line: 6
+ name: Variable in variables import path
+result:
+- !Location
+ range:
+ end:
+ character: 24
+ line: 5
+ start:
+ character: 18
+ line: 5
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 7
+ start:
+ character: 18
+ line: 7
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 10
+ start:
+ character: 18
+ line: 10
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 4
+ start:
+ character: 20
+ line: 4
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 20
+ start:
+ character: 15
+ line: 20
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 13
+ start:
+ character: 20
+ line: 13
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 89
+ start:
+ character: 13
+ line: 89
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 3
+ start:
+ character: 18
+ line: 3
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 9
+ start:
+ character: 18
+ line: 9
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 18
+ start:
+ character: 13
+ line: 18
+ uri: tests/variables.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-033-a_variable_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-033-a_variable_import].out
new file mode 100644
index 000000000..650748f44
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-033-a_variable_import].out
@@ -0,0 +1,68 @@
+data: !GeneratedTestData
+ character: 33
+ line: 6
+ name: a variable import
+result:
+- !Location
+ range:
+ end:
+ character: 47
+ line: 7
+ start:
+ character: 16
+ line: 7
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 4
+ start:
+ character: 16
+ line: 4
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 9
+ start:
+ character: 13
+ line: 9
+ uri: tests/duplicated_resources.robot
+- !Location
+ range:
+ end:
+ character: 49
+ line: 7
+ start:
+ character: 18
+ line: 7
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 49
+ line: 10
+ start:
+ character: 18
+ line: 10
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 6
+ start:
+ character: 16
+ line: 6
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 27
+ line: 3
+ start:
+ character: 13
+ line: 3
+ uri: tests/variables.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-040-a_variable_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-040-a_variable_import].out
new file mode 100644
index 000000000..270c93292
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-040-a_variable_import].out
@@ -0,0 +1,68 @@
+data: !GeneratedTestData
+ character: 40
+ line: 6
+ name: a variable import
+result:
+- !Location
+ range:
+ end:
+ character: 47
+ line: 7
+ start:
+ character: 16
+ line: 7
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 4
+ start:
+ character: 16
+ line: 4
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 9
+ start:
+ character: 13
+ line: 9
+ uri: tests/duplicated_resources.robot
+- !Location
+ range:
+ end:
+ character: 49
+ line: 7
+ start:
+ character: 18
+ line: 7
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 49
+ line: 10
+ start:
+ character: 18
+ line: 10
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 6
+ start:
+ character: 16
+ line: 6
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 27
+ line: 3
+ start:
+ character: 13
+ line: 3
+ uri: tests/variables.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-046-a_variable_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-046-a_variable_import].out
new file mode 100644
index 000000000..23b7180f8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-046-a_variable_import].out
@@ -0,0 +1,68 @@
+data: !GeneratedTestData
+ character: 46
+ line: 6
+ name: a variable import
+result:
+- !Location
+ range:
+ end:
+ character: 47
+ line: 7
+ start:
+ character: 16
+ line: 7
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 4
+ start:
+ character: 16
+ line: 4
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 9
+ start:
+ character: 13
+ line: 9
+ uri: tests/duplicated_resources.robot
+- !Location
+ range:
+ end:
+ character: 49
+ line: 7
+ start:
+ character: 18
+ line: 7
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 49
+ line: 10
+ start:
+ character: 18
+ line: 10
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 6
+ start:
+ character: 16
+ line: 6
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 27
+ line: 3
+ start:
+ character: 13
+ line: 3
+ uri: tests/variables.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out
new file mode 100644
index 000000000..64ad59e57
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out
@@ -0,0 +1,149 @@
+data: !GeneratedTestData
+ character: 18
+ line: 9
+ name: Variable in resource import path
+result:
+- !Location
+ range:
+ end:
+ character: 24
+ line: 5
+ start:
+ character: 18
+ line: 5
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 7
+ start:
+ character: 18
+ line: 7
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 10
+ start:
+ character: 18
+ line: 10
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 4
+ start:
+ character: 20
+ line: 4
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 20
+ start:
+ character: 15
+ line: 20
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 13
+ start:
+ character: 20
+ line: 13
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 89
+ start:
+ character: 13
+ line: 89
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 3
+ start:
+ character: 18
+ line: 3
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 9
+ start:
+ character: 18
+ line: 9
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 18
+ start:
+ character: 13
+ line: 18
+ uri: tests/variables.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out
new file mode 100644
index 000000000..f85838880
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out
@@ -0,0 +1,149 @@
+data: !GeneratedTestData
+ character: 21
+ line: 9
+ name: Variable in resource import path
+result:
+- !Location
+ range:
+ end:
+ character: 24
+ line: 5
+ start:
+ character: 18
+ line: 5
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 7
+ start:
+ character: 18
+ line: 7
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 10
+ start:
+ character: 18
+ line: 10
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 4
+ start:
+ character: 20
+ line: 4
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 20
+ start:
+ character: 15
+ line: 20
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 13
+ start:
+ character: 20
+ line: 13
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 89
+ start:
+ character: 13
+ line: 89
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 3
+ start:
+ character: 18
+ line: 3
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 9
+ start:
+ character: 18
+ line: 9
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 18
+ start:
+ character: 13
+ line: 18
+ uri: tests/variables.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out
new file mode 100644
index 000000000..d24eb910c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out
@@ -0,0 +1,149 @@
+data: !GeneratedTestData
+ character: 23
+ line: 9
+ name: Variable in resource import path
+result:
+- !Location
+ range:
+ end:
+ character: 24
+ line: 5
+ start:
+ character: 18
+ line: 5
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 7
+ start:
+ character: 18
+ line: 7
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 10
+ start:
+ character: 18
+ line: 10
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 2
+ start:
+ character: 18
+ line: 2
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 4
+ start:
+ character: 18
+ line: 4
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 4
+ start:
+ character: 20
+ line: 4
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 20
+ start:
+ character: 15
+ line: 20
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 20
+ line: 7
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 10
+ start:
+ character: 20
+ line: 10
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 13
+ start:
+ character: 20
+ line: 13
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 89
+ start:
+ character: 13
+ line: 89
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 3
+ start:
+ character: 18
+ line: 3
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 6
+ start:
+ character: 18
+ line: 6
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 9
+ start:
+ character: 18
+ line: 9
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 18
+ start:
+ character: 13
+ line: 18
+ uri: tests/variables.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-038-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-038-Variable_in_library_params].out
new file mode 100644
index 000000000..8d224dc47
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-038-Variable_in_library_params].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 38
+ line: 13
+ name: Variable in library params
+result:
+- !Location
+ range:
+ end:
+ character: 45
+ line: 13
+ start:
+ character: 38
+ line: 13
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 9
+ line: 24
+ start:
+ character: 2
+ line: 24
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 64
+ start:
+ character: 37
+ line: 64
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-041-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-041-Variable_in_library_params].out
new file mode 100644
index 000000000..efd87f3c7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-041-Variable_in_library_params].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 41
+ line: 13
+ name: Variable in library params
+result:
+- !Location
+ range:
+ end:
+ character: 45
+ line: 13
+ start:
+ character: 38
+ line: 13
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 9
+ line: 24
+ start:
+ character: 2
+ line: 24
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 64
+ start:
+ character: 37
+ line: 64
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-044-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-044-Variable_in_library_params].out
new file mode 100644
index 000000000..1317ffcfa
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-044-Variable_in_library_params].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 44
+ line: 13
+ name: Variable in library params
+result:
+- !Location
+ range:
+ end:
+ character: 45
+ line: 13
+ start:
+ character: 38
+ line: 13
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 9
+ line: 24
+ start:
+ character: 2
+ line: 24
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 64
+ start:
+ character: 37
+ line: 64
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..95eeec79f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 23
+ line: 16
+ name: suite fixture keyword call with namespace
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..00daccfd3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 30
+ line: 16
+ name: suite fixture keyword call with namespace
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..6df2aca66
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 36
+ line: 16
+ name: suite fixture keyword call with namespace
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..cbed364c2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 14
+ line: 18
+ name: test fixture keyword call with namespace
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..d68574001
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 21
+ line: 18
+ name: test fixture keyword call with namespace
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..f59f57548
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 27
+ line: 18
+ name: test fixture keyword call with namespace
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-002-simple_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-002-simple_variable].out
new file mode 100644
index 000000000..1f658cde5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-002-simple_variable].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 2
+ line: 22
+ name: simple variable
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-004-simple_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-004-simple_variable].out
new file mode 100644
index 000000000..7399ca1b1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-004-simple_variable].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 4
+ line: 22
+ name: simple variable
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-006-simple_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-006-simple_variable].out
new file mode 100644
index 000000000..e0c422ba1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-006-simple_variable].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 6
+ line: 22
+ name: simple variable
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-002-another_simple_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-002-another_simple_var].out
new file mode 100644
index 000000000..9220b3376
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-002-another_simple_var].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 2
+ line: 24
+ name: another simple var
+result:
+- !Location
+ range:
+ end:
+ character: 45
+ line: 13
+ start:
+ character: 38
+ line: 13
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 9
+ line: 24
+ start:
+ character: 2
+ line: 24
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 64
+ start:
+ character: 37
+ line: 64
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-005-another_simple_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-005-another_simple_var].out
new file mode 100644
index 000000000..ca87519b5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-005-another_simple_var].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 5
+ line: 24
+ name: another simple var
+result:
+- !Location
+ range:
+ end:
+ character: 45
+ line: 13
+ start:
+ character: 38
+ line: 13
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 9
+ line: 24
+ start:
+ character: 2
+ line: 24
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 64
+ start:
+ character: 37
+ line: 64
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-008-another_simple_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-008-another_simple_var].out
new file mode 100644
index 000000000..081898ba7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-008-another_simple_var].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 8
+ line: 24
+ name: another simple var
+result:
+- !Location
+ range:
+ end:
+ character: 45
+ line: 13
+ start:
+ character: 38
+ line: 13
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 9
+ line: 24
+ start:
+ character: 2
+ line: 24
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 64
+ start:
+ character: 37
+ line: 64
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-002-a_var_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-002-a_var_with_emoji].out
new file mode 100644
index 000000000..b7e7db3ea
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-002-a_var_with_emoji].out
@@ -0,0 +1,50 @@
+data: !GeneratedTestData
+ character: 2
+ line: 27
+ name: a var with emoji
+result:
+- !Location
+ range:
+ end:
+ character: 4
+ line: 27
+ start:
+ character: 2
+ line: 27
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 88
+ start:
+ character: 13
+ line: 88
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 105
+ start:
+ character: 26
+ line: 105
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 105
+ start:
+ character: 45
+ line: 105
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 53
+ line: 105
+ start:
+ character: 51
+ line: 105
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-004-a_var_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-004-a_var_with_emoji].out
new file mode 100644
index 000000000..b7c8dad0d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-004-a_var_with_emoji].out
@@ -0,0 +1,50 @@
+data: !GeneratedTestData
+ character: 4
+ line: 27
+ name: a var with emoji
+result:
+- !Location
+ range:
+ end:
+ character: 4
+ line: 27
+ start:
+ character: 2
+ line: 27
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 88
+ start:
+ character: 13
+ line: 88
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 105
+ start:
+ character: 26
+ line: 105
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 105
+ start:
+ character: 45
+ line: 105
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 53
+ line: 105
+ start:
+ character: 51
+ line: 105
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-006-a_var_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-006-a_var_with_emoji].out
new file mode 100644
index 000000000..a5bbf2d90
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-006-a_var_with_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 6
+ line: 27
+ name: a var with emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-015-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-015-fixture_keyword_call].out
new file mode 100644
index 000000000..794e11419
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-015-fixture_keyword_call].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 15
+ line: 32
+ name: fixture keyword call
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-022-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-022-fixture_keyword_call].out
new file mode 100644
index 000000000..41d7e66a1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-022-fixture_keyword_call].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 22
+ line: 32
+ name: fixture keyword call
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-028-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-028-fixture_keyword_call].out
new file mode 100644
index 000000000..7f9b83f5f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-028-fixture_keyword_call].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 28
+ line: 32
+ name: fixture keyword call
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-026-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-026-fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..13d2ccb7d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-026-fixture_keyword_call_with_namespace].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 26
+ line: 34
+ name: fixture keyword call with namespace
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-033-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-033-fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..b804fef58
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-033-fixture_keyword_call_with_namespace].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 33
+ line: 34
+ name: fixture keyword call with namespace
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-039-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-039-fixture_keyword_call_with_namespace].out
new file mode 100644
index 000000000..ba471844f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-039-fixture_keyword_call_with_namespace].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 39
+ line: 34
+ name: fixture keyword call with namespace
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-004-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-004-simple_keyword_call].out
new file mode 100644
index 000000000..7dd472658
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-004-simple_keyword_call].out
@@ -0,0 +1,2642 @@
+data: !GeneratedTestData
+ character: 4
+ line: 36
+ name: simple keyword call
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 2
+ start:
+ character: 4
+ line: 2
+ uri: discovery/__not_discovered.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 5
+ start:
+ character: 4
+ line: 5
+ uri: discovery/__not_discovered.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 2
+ start:
+ character: 4
+ line: 2
+ uri: discovery/_not_discovered.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 5
+ start:
+ character: 4
+ line: 5
+ uri: discovery/_not_discovered.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 3
+ start:
+ character: 4
+ line: 3
+ uri: extras/fibonaci.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 37
+ start:
+ character: 4
+ line: 37
+ uri: extras/fibonaci.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 3
+ start:
+ character: 4
+ line: 3
+ uri: folder_a/duplicated.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 6
+ start:
+ character: 4
+ line: 6
+ uri: folder_a/duplicated.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 3
+ start:
+ character: 4
+ line: 3
+ uri: folder_b/duplicated.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 6
+ start:
+ character: 4
+ line: 6
+ uri: folder_b/duplicated.resource
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 7
+ line: 8
+ start:
+ character: 4
+ line: 8
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 11
+ start:
+ character: 4
+ line: 11
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 31
+ start:
+ character: 4
+ line: 31
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 7
+ start:
+ character: 4
+ line: 7
+ uri: rf61/embedded_keywords.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 11
+ start:
+ character: 4
+ line: 11
+ uri: rf61/embedded_keywords.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 5
+ start:
+ character: 4
+ line: 5
+ uri: rf61/jsonvariables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 6
+ start:
+ character: 4
+ line: 6
+ uri: rf61/jsonvariables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 40
+ start:
+ character: 4
+ line: 40
+ uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 41
+ start:
+ character: 4
+ line: 41
+ uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 54
+ start:
+ character: 4
+ line: 54
+ uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 55
+ start:
+ character: 4
+ line: 55
+ uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 2
+ start:
+ character: 4
+ line: 2
+ uri: tests/bddstyle.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 4
+ start:
+ character: 4
+ line: 4
+ uri: tests/bddstyle.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 6
+ start:
+ character: 4
+ line: 6
+ uri: tests/bddstyle.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 32
+ start:
+ character: 4
+ line: 32
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 37
+ start:
+ character: 4
+ line: 37
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 8
+ line: 103
+ start:
+ character: 5
+ line: 103
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 106
+ start:
+ character: 4
+ line: 106
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 107
+ start:
+ character: 4
+ line: 107
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 110
+ start:
+ character: 4
+ line: 110
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 113
+ start:
+ character: 4
+ line: 113
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 116
+ start:
+ character: 4
+ line: 116
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 120
+ start:
+ character: 4
+ line: 120
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 121
+ start:
+ character: 4
+ line: 121
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 125
+ start:
+ character: 4
+ line: 125
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 126
+ start:
+ character: 4
+ line: 126
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 130
+ start:
+ character: 4
+ line: 130
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 131
+ start:
+ character: 4
+ line: 131
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 41
+ start:
+ character: 4
+ line: 41
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 88
+ start:
+ character: 8
+ line: 88
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 91
+ start:
+ character: 8
+ line: 91
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 96
+ start:
+ character: 8
+ line: 96
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 99
+ start:
+ character: 8
+ line: 99
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 102
+ start:
+ character: 16
+ line: 102
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 51
+ line: 102
+ start:
+ character: 48
+ line: 102
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 70
+ line: 102
+ start:
+ character: 67
+ line: 102
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 17
+ line: 106
+ start:
+ character: 14
+ line: 106
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 106
+ start:
+ character: 44
+ line: 106
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 66
+ line: 106
+ start:
+ character: 63
+ line: 106
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 116
+ start:
+ character: 4
+ line: 116
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 118
+ start:
+ character: 4
+ line: 118
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 126
+ start:
+ character: 4
+ line: 126
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 128
+ start:
+ character: 4
+ line: 128
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 136
+ start:
+ character: 4
+ line: 136
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 138
+ start:
+ character: 4
+ line: 138
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 140
+ start:
+ character: 4
+ line: 140
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 151
+ start:
+ character: 4
+ line: 151
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 165
+ start:
+ character: 4
+ line: 165
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 166
+ start:
+ character: 4
+ line: 166
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 178
+ start:
+ character: 4
+ line: 178
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 179
+ start:
+ character: 4
+ line: 179
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 10
+ start:
+ character: 4
+ line: 10
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 16
+ start:
+ character: 12
+ line: 16
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 19
+ start:
+ character: 12
+ line: 19
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 22
+ start:
+ character: 12
+ line: 22
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 26
+ start:
+ character: 8
+ line: 26
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 41
+ start:
+ character: 4
+ line: 41
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 56
+ start:
+ character: 8
+ line: 56
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 62
+ start:
+ character: 8
+ line: 62
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 65
+ start:
+ character: 8
+ line: 65
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 67
+ start:
+ character: 12
+ line: 67
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 69
+ start:
+ character: 12
+ line: 69
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 73
+ start:
+ character: 8
+ line: 73
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 76
+ start:
+ character: 8
+ line: 76
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 43
+ start:
+ character: 4
+ line: 43
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 47
+ start:
+ character: 4
+ line: 47
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 49
+ start:
+ character: 4
+ line: 49
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 52
+ start:
+ character: 4
+ line: 52
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 54
+ start:
+ character: 4
+ line: 54
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 57
+ start:
+ character: 4
+ line: 57
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 64
+ start:
+ character: 12
+ line: 64
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 71
+ start:
+ character: 8
+ line: 71
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 75
+ start:
+ character: 4
+ line: 75
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 92
+ start:
+ character: 15
+ line: 92
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 94
+ start:
+ character: 26
+ line: 94
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 99
+ start:
+ character: 26
+ line: 99
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 115
+ start:
+ character: 8
+ line: 115
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 118
+ start:
+ character: 8
+ line: 118
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 123
+ start:
+ character: 8
+ line: 123
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 126
+ start:
+ character: 8
+ line: 126
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 129
+ start:
+ character: 16
+ line: 129
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 51
+ line: 129
+ start:
+ character: 48
+ line: 129
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 70
+ line: 129
+ start:
+ character: 67
+ line: 129
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 17
+ line: 133
+ start:
+ character: 14
+ line: 133
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 133
+ start:
+ character: 44
+ line: 133
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 66
+ line: 133
+ start:
+ character: 63
+ line: 133
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 151
+ start:
+ character: 4
+ line: 151
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 158
+ start:
+ character: 4
+ line: 158
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 160
+ start:
+ character: 4
+ line: 160
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 168
+ start:
+ character: 4
+ line: 168
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 170
+ start:
+ character: 4
+ line: 170
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 180
+ start:
+ character: 4
+ line: 180
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 182
+ start:
+ character: 4
+ line: 182
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 191
+ start:
+ character: 4
+ line: 191
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 193
+ start:
+ character: 4
+ line: 193
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 214
+ start:
+ character: 4
+ line: 214
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 215
+ start:
+ character: 4
+ line: 215
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 227
+ start:
+ character: 4
+ line: 227
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 228
+ start:
+ character: 4
+ line: 228
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 16
+ line: 64
+ start:
+ character: 13
+ line: 64
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 27
+ line: 66
+ start:
+ character: 24
+ line: 66
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 69
+ start:
+ character: 4
+ line: 69
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 70
+ start:
+ character: 4
+ line: 70
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 72
+ start:
+ character: 4
+ line: 72
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 75
+ start:
+ character: 4
+ line: 75
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 83
+ start:
+ character: 8
+ line: 83
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 86
+ start:
+ character: 4
+ line: 86
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 89
+ start:
+ character: 4
+ line: 89
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 92
+ start:
+ character: 4
+ line: 92
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 104
+ start:
+ character: 26
+ line: 104
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 14
+ line: 121
+ start:
+ character: 11
+ line: 121
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 128
+ start:
+ character: 8
+ line: 128
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 131
+ start:
+ character: 8
+ line: 131
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 136
+ start:
+ character: 8
+ line: 136
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 139
+ start:
+ character: 8
+ line: 139
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 142
+ start:
+ character: 16
+ line: 142
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 51
+ line: 142
+ start:
+ character: 48
+ line: 142
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 70
+ line: 142
+ start:
+ character: 67
+ line: 142
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 17
+ line: 146
+ start:
+ character: 14
+ line: 146
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 146
+ start:
+ character: 44
+ line: 146
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 66
+ line: 146
+ start:
+ character: 63
+ line: 146
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 151
+ start:
+ character: 21
+ line: 151
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 154
+ start:
+ character: 31
+ line: 154
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 13
+ line: 158
+ start:
+ character: 10
+ line: 158
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 12
+ line: 161
+ start:
+ character: 9
+ line: 161
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 164
+ start:
+ character: 8
+ line: 164
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 12
+ line: 167
+ start:
+ character: 9
+ line: 167
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 170
+ start:
+ character: 8
+ line: 170
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 173
+ start:
+ character: 18
+ line: 173
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 178
+ start:
+ character: 37
+ line: 178
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 65
+ line: 178
+ start:
+ character: 62
+ line: 178
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 82
+ line: 178
+ start:
+ character: 79
+ line: 178
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 62
+ line: 183
+ start:
+ character: 59
+ line: 183
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 27
+ line: 188
+ start:
+ character: 24
+ line: 188
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 242
+ start:
+ character: 19
+ line: 242
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 23
+ line: 251
+ start:
+ character: 20
+ line: 251
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 270
+ start:
+ character: 4
+ line: 270
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 272
+ start:
+ character: 4
+ line: 272
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 280
+ start:
+ character: 4
+ line: 280
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 282
+ start:
+ character: 4
+ line: 282
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 290
+ start:
+ character: 4
+ line: 290
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 292
+ start:
+ character: 4
+ line: 292
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 299
+ start:
+ character: 8
+ line: 299
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 7
+ start:
+ character: 4
+ line: 7
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 9
+ start:
+ character: 4
+ line: 9
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 10
+ start:
+ character: 4
+ line: 10
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 12
+ start:
+ character: 4
+ line: 12
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 23
+ start:
+ character: 4
+ line: 23
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 24
+ start:
+ character: 4
+ line: 24
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 43
+ start:
+ character: 4
+ line: 43
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 115
+ start:
+ character: 4
+ line: 115
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 123
+ start:
+ character: 4
+ line: 123
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 128
+ start:
+ character: 4
+ line: 128
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 134
+ start:
+ character: 4
+ line: 134
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 135
+ start:
+ character: 4
+ line: 135
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 139
+ start:
+ character: 4
+ line: 139
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 143
+ start:
+ character: 4
+ line: 143
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 147
+ start:
+ character: 4
+ line: 147
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 153
+ start:
+ character: 4
+ line: 153
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 155
+ start:
+ character: 4
+ line: 155
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 163
+ start:
+ character: 4
+ line: 163
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 165
+ start:
+ character: 4
+ line: 165
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 173
+ start:
+ character: 4
+ line: 173
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 175
+ start:
+ character: 4
+ line: 175
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 188
+ start:
+ character: 4
+ line: 188
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 189
+ start:
+ character: 4
+ line: 189
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 202
+ start:
+ character: 4
+ line: 202
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 203
+ start:
+ character: 4
+ line: 203
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 206
+ start:
+ character: 18
+ line: 206
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 12
+ start:
+ character: 4
+ line: 12
+ uri: tests/setup_teardown.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: tests/setup_teardown.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 4
+ line: 21
+ uri: tests/setup_teardown.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 31
+ start:
+ character: 4
+ line: 31
+ uri: tests/setup_teardown.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/setup_teardown.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 23
+ start:
+ character: 8
+ line: 23
+ uri: tests/symbols.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 30
+ start:
+ character: 8
+ line: 30
+ uri: tests/symbols.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 63
+ start:
+ character: 4
+ line: 63
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 64
+ start:
+ character: 4
+ line: 64
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 65
+ start:
+ character: 4
+ line: 65
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 69
+ start:
+ character: 4
+ line: 69
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 70
+ start:
+ character: 4
+ line: 70
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 72
+ start:
+ character: 4
+ line: 72
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 75
+ start:
+ character: 4
+ line: 75
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 76
+ start:
+ character: 34
+ line: 76
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 72
+ line: 76
+ start:
+ character: 69
+ line: 76
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 82
+ start:
+ character: 8
+ line: 82
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 86
+ start:
+ character: 4
+ line: 86
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 90
+ start:
+ character: 4
+ line: 90
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 50
+ start:
+ character: 4
+ line: 50
+ uri: tests/templates2.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 54
+ start:
+ character: 4
+ line: 54
+ uri: tests/templates2.robot
+- !Location
+ range:
+ end:
+ character: 39
+ line: 1
+ start:
+ character: 36
+ line: 1
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 72
+ line: 1
+ start:
+ character: 69
+ line: 1
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 17
+ line: 2
+ start:
+ character: 14
+ line: 2
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 19
+ start:
+ character: 4
+ line: 19
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 4
+ line: 20
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 4
+ line: 21
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 4
+ line: 22
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 23
+ start:
+ character: 4
+ line: 23
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 24
+ start:
+ character: 4
+ line: 24
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 25
+ start:
+ character: 4
+ line: 25
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 26
+ start:
+ character: 4
+ line: 26
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 27
+ start:
+ character: 4
+ line: 27
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 30
+ start:
+ character: 4
+ line: 30
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 31
+ start:
+ character: 4
+ line: 31
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 35
+ start:
+ character: 4
+ line: 35
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 37
+ start:
+ character: 4
+ line: 37
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 39
+ start:
+ character: 4
+ line: 39
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 40
+ start:
+ character: 4
+ line: 40
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 41
+ start:
+ character: 4
+ line: 41
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 42
+ start:
+ character: 4
+ line: 42
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 43
+ start:
+ character: 4
+ line: 43
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 44
+ start:
+ character: 4
+ line: 44
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 45
+ start:
+ character: 4
+ line: 45
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 49
+ start:
+ character: 18
+ line: 49
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 53
+ start:
+ character: 8
+ line: 53
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 63
+ start:
+ character: 4
+ line: 63
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 69
+ start:
+ character: 4
+ line: 69
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 72
+ start:
+ character: 4
+ line: 72
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 87
+ start:
+ character: 8
+ line: 87
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 89
+ start:
+ character: 8
+ line: 89
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 23
+ line: 96
+ start:
+ character: 20
+ line: 96
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 109
+ start:
+ character: 40
+ line: 109
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 111
+ start:
+ character: 31
+ line: 111
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 112
+ start:
+ character: 33
+ line: 112
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 128
+ start:
+ character: 4
+ line: 128
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 130
+ start:
+ character: 4
+ line: 130
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 131
+ start:
+ character: 4
+ line: 131
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 155
+ start:
+ character: 4
+ line: 155
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 163
+ start:
+ character: 4
+ line: 163
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 164
+ start:
+ character: 34
+ line: 164
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 72
+ line: 164
+ start:
+ character: 69
+ line: 164
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 170
+ start:
+ character: 8
+ line: 170
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 174
+ start:
+ character: 4
+ line: 174
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 178
+ start:
+ character: 4
+ line: 178
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 9
+ start:
+ character: 8
+ line: 9
+ uri: tests1/first.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 12
+ start:
+ character: 8
+ line: 12
+ uri: tests1/first.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: tests1/first.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-005-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-005-simple_keyword_call].out
new file mode 100644
index 000000000..158e14ab9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-005-simple_keyword_call].out
@@ -0,0 +1,2642 @@
+data: !GeneratedTestData
+ character: 5
+ line: 36
+ name: simple keyword call
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 2
+ start:
+ character: 4
+ line: 2
+ uri: discovery/__not_discovered.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 5
+ start:
+ character: 4
+ line: 5
+ uri: discovery/__not_discovered.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 2
+ start:
+ character: 4
+ line: 2
+ uri: discovery/_not_discovered.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 5
+ start:
+ character: 4
+ line: 5
+ uri: discovery/_not_discovered.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 3
+ start:
+ character: 4
+ line: 3
+ uri: extras/fibonaci.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 37
+ start:
+ character: 4
+ line: 37
+ uri: extras/fibonaci.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 3
+ start:
+ character: 4
+ line: 3
+ uri: folder_a/duplicated.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 6
+ start:
+ character: 4
+ line: 6
+ uri: folder_a/duplicated.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 3
+ start:
+ character: 4
+ line: 3
+ uri: folder_b/duplicated.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 6
+ start:
+ character: 4
+ line: 6
+ uri: folder_b/duplicated.resource
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 7
+ line: 8
+ start:
+ character: 4
+ line: 8
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 11
+ start:
+ character: 4
+ line: 11
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 31
+ start:
+ character: 4
+ line: 31
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 7
+ start:
+ character: 4
+ line: 7
+ uri: rf61/embedded_keywords.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 11
+ start:
+ character: 4
+ line: 11
+ uri: rf61/embedded_keywords.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 5
+ start:
+ character: 4
+ line: 5
+ uri: rf61/jsonvariables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 6
+ start:
+ character: 4
+ line: 6
+ uri: rf61/jsonvariables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 40
+ start:
+ character: 4
+ line: 40
+ uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 41
+ start:
+ character: 4
+ line: 41
+ uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 54
+ start:
+ character: 4
+ line: 54
+ uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 55
+ start:
+ character: 4
+ line: 55
+ uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 2
+ start:
+ character: 4
+ line: 2
+ uri: tests/bddstyle.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 4
+ start:
+ character: 4
+ line: 4
+ uri: tests/bddstyle.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 6
+ start:
+ character: 4
+ line: 6
+ uri: tests/bddstyle.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 32
+ start:
+ character: 4
+ line: 32
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 37
+ start:
+ character: 4
+ line: 37
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 8
+ line: 103
+ start:
+ character: 5
+ line: 103
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 106
+ start:
+ character: 4
+ line: 106
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 107
+ start:
+ character: 4
+ line: 107
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 110
+ start:
+ character: 4
+ line: 110
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 113
+ start:
+ character: 4
+ line: 113
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 116
+ start:
+ character: 4
+ line: 116
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 120
+ start:
+ character: 4
+ line: 120
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 121
+ start:
+ character: 4
+ line: 121
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 125
+ start:
+ character: 4
+ line: 125
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 126
+ start:
+ character: 4
+ line: 126
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 130
+ start:
+ character: 4
+ line: 130
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 131
+ start:
+ character: 4
+ line: 131
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 41
+ start:
+ character: 4
+ line: 41
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 88
+ start:
+ character: 8
+ line: 88
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 91
+ start:
+ character: 8
+ line: 91
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 96
+ start:
+ character: 8
+ line: 96
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 99
+ start:
+ character: 8
+ line: 99
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 102
+ start:
+ character: 16
+ line: 102
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 51
+ line: 102
+ start:
+ character: 48
+ line: 102
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 70
+ line: 102
+ start:
+ character: 67
+ line: 102
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 17
+ line: 106
+ start:
+ character: 14
+ line: 106
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 106
+ start:
+ character: 44
+ line: 106
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 66
+ line: 106
+ start:
+ character: 63
+ line: 106
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 116
+ start:
+ character: 4
+ line: 116
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 118
+ start:
+ character: 4
+ line: 118
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 126
+ start:
+ character: 4
+ line: 126
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 128
+ start:
+ character: 4
+ line: 128
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 136
+ start:
+ character: 4
+ line: 136
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 138
+ start:
+ character: 4
+ line: 138
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 140
+ start:
+ character: 4
+ line: 140
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 151
+ start:
+ character: 4
+ line: 151
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 165
+ start:
+ character: 4
+ line: 165
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 166
+ start:
+ character: 4
+ line: 166
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 178
+ start:
+ character: 4
+ line: 178
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 179
+ start:
+ character: 4
+ line: 179
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 10
+ start:
+ character: 4
+ line: 10
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 16
+ start:
+ character: 12
+ line: 16
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 19
+ start:
+ character: 12
+ line: 19
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 22
+ start:
+ character: 12
+ line: 22
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 26
+ start:
+ character: 8
+ line: 26
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 41
+ start:
+ character: 4
+ line: 41
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 56
+ start:
+ character: 8
+ line: 56
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 62
+ start:
+ character: 8
+ line: 62
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 65
+ start:
+ character: 8
+ line: 65
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 67
+ start:
+ character: 12
+ line: 67
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 69
+ start:
+ character: 12
+ line: 69
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 73
+ start:
+ character: 8
+ line: 73
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 76
+ start:
+ character: 8
+ line: 76
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 43
+ start:
+ character: 4
+ line: 43
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 47
+ start:
+ character: 4
+ line: 47
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 49
+ start:
+ character: 4
+ line: 49
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 52
+ start:
+ character: 4
+ line: 52
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 54
+ start:
+ character: 4
+ line: 54
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 57
+ start:
+ character: 4
+ line: 57
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 64
+ start:
+ character: 12
+ line: 64
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 71
+ start:
+ character: 8
+ line: 71
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 75
+ start:
+ character: 4
+ line: 75
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 92
+ start:
+ character: 15
+ line: 92
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 94
+ start:
+ character: 26
+ line: 94
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 99
+ start:
+ character: 26
+ line: 99
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 115
+ start:
+ character: 8
+ line: 115
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 118
+ start:
+ character: 8
+ line: 118
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 123
+ start:
+ character: 8
+ line: 123
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 126
+ start:
+ character: 8
+ line: 126
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 129
+ start:
+ character: 16
+ line: 129
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 51
+ line: 129
+ start:
+ character: 48
+ line: 129
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 70
+ line: 129
+ start:
+ character: 67
+ line: 129
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 17
+ line: 133
+ start:
+ character: 14
+ line: 133
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 133
+ start:
+ character: 44
+ line: 133
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 66
+ line: 133
+ start:
+ character: 63
+ line: 133
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 151
+ start:
+ character: 4
+ line: 151
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 158
+ start:
+ character: 4
+ line: 158
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 160
+ start:
+ character: 4
+ line: 160
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 168
+ start:
+ character: 4
+ line: 168
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 170
+ start:
+ character: 4
+ line: 170
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 180
+ start:
+ character: 4
+ line: 180
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 182
+ start:
+ character: 4
+ line: 182
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 191
+ start:
+ character: 4
+ line: 191
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 193
+ start:
+ character: 4
+ line: 193
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 214
+ start:
+ character: 4
+ line: 214
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 215
+ start:
+ character: 4
+ line: 215
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 227
+ start:
+ character: 4
+ line: 227
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 228
+ start:
+ character: 4
+ line: 228
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 16
+ line: 64
+ start:
+ character: 13
+ line: 64
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 27
+ line: 66
+ start:
+ character: 24
+ line: 66
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 69
+ start:
+ character: 4
+ line: 69
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 70
+ start:
+ character: 4
+ line: 70
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 72
+ start:
+ character: 4
+ line: 72
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 75
+ start:
+ character: 4
+ line: 75
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 83
+ start:
+ character: 8
+ line: 83
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 86
+ start:
+ character: 4
+ line: 86
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 89
+ start:
+ character: 4
+ line: 89
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 92
+ start:
+ character: 4
+ line: 92
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 104
+ start:
+ character: 26
+ line: 104
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 14
+ line: 121
+ start:
+ character: 11
+ line: 121
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 128
+ start:
+ character: 8
+ line: 128
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 131
+ start:
+ character: 8
+ line: 131
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 136
+ start:
+ character: 8
+ line: 136
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 139
+ start:
+ character: 8
+ line: 139
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 142
+ start:
+ character: 16
+ line: 142
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 51
+ line: 142
+ start:
+ character: 48
+ line: 142
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 70
+ line: 142
+ start:
+ character: 67
+ line: 142
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 17
+ line: 146
+ start:
+ character: 14
+ line: 146
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 146
+ start:
+ character: 44
+ line: 146
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 66
+ line: 146
+ start:
+ character: 63
+ line: 146
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 151
+ start:
+ character: 21
+ line: 151
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 154
+ start:
+ character: 31
+ line: 154
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 13
+ line: 158
+ start:
+ character: 10
+ line: 158
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 12
+ line: 161
+ start:
+ character: 9
+ line: 161
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 164
+ start:
+ character: 8
+ line: 164
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 12
+ line: 167
+ start:
+ character: 9
+ line: 167
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 170
+ start:
+ character: 8
+ line: 170
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 173
+ start:
+ character: 18
+ line: 173
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 178
+ start:
+ character: 37
+ line: 178
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 65
+ line: 178
+ start:
+ character: 62
+ line: 178
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 82
+ line: 178
+ start:
+ character: 79
+ line: 178
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 62
+ line: 183
+ start:
+ character: 59
+ line: 183
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 27
+ line: 188
+ start:
+ character: 24
+ line: 188
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 242
+ start:
+ character: 19
+ line: 242
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 23
+ line: 251
+ start:
+ character: 20
+ line: 251
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 270
+ start:
+ character: 4
+ line: 270
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 272
+ start:
+ character: 4
+ line: 272
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 280
+ start:
+ character: 4
+ line: 280
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 282
+ start:
+ character: 4
+ line: 282
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 290
+ start:
+ character: 4
+ line: 290
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 292
+ start:
+ character: 4
+ line: 292
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 299
+ start:
+ character: 8
+ line: 299
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 7
+ start:
+ character: 4
+ line: 7
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 9
+ start:
+ character: 4
+ line: 9
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 10
+ start:
+ character: 4
+ line: 10
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 12
+ start:
+ character: 4
+ line: 12
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 23
+ start:
+ character: 4
+ line: 23
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 24
+ start:
+ character: 4
+ line: 24
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 43
+ start:
+ character: 4
+ line: 43
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 115
+ start:
+ character: 4
+ line: 115
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 123
+ start:
+ character: 4
+ line: 123
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 128
+ start:
+ character: 4
+ line: 128
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 134
+ start:
+ character: 4
+ line: 134
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 135
+ start:
+ character: 4
+ line: 135
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 139
+ start:
+ character: 4
+ line: 139
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 143
+ start:
+ character: 4
+ line: 143
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 147
+ start:
+ character: 4
+ line: 147
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 153
+ start:
+ character: 4
+ line: 153
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 155
+ start:
+ character: 4
+ line: 155
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 163
+ start:
+ character: 4
+ line: 163
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 165
+ start:
+ character: 4
+ line: 165
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 173
+ start:
+ character: 4
+ line: 173
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 175
+ start:
+ character: 4
+ line: 175
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 188
+ start:
+ character: 4
+ line: 188
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 189
+ start:
+ character: 4
+ line: 189
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 202
+ start:
+ character: 4
+ line: 202
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 203
+ start:
+ character: 4
+ line: 203
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 206
+ start:
+ character: 18
+ line: 206
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 12
+ start:
+ character: 4
+ line: 12
+ uri: tests/setup_teardown.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: tests/setup_teardown.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 4
+ line: 21
+ uri: tests/setup_teardown.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 31
+ start:
+ character: 4
+ line: 31
+ uri: tests/setup_teardown.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/setup_teardown.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 23
+ start:
+ character: 8
+ line: 23
+ uri: tests/symbols.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 30
+ start:
+ character: 8
+ line: 30
+ uri: tests/symbols.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 63
+ start:
+ character: 4
+ line: 63
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 64
+ start:
+ character: 4
+ line: 64
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 65
+ start:
+ character: 4
+ line: 65
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 69
+ start:
+ character: 4
+ line: 69
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 70
+ start:
+ character: 4
+ line: 70
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 72
+ start:
+ character: 4
+ line: 72
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 75
+ start:
+ character: 4
+ line: 75
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 76
+ start:
+ character: 34
+ line: 76
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 72
+ line: 76
+ start:
+ character: 69
+ line: 76
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 82
+ start:
+ character: 8
+ line: 82
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 86
+ start:
+ character: 4
+ line: 86
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 90
+ start:
+ character: 4
+ line: 90
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 50
+ start:
+ character: 4
+ line: 50
+ uri: tests/templates2.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 54
+ start:
+ character: 4
+ line: 54
+ uri: tests/templates2.robot
+- !Location
+ range:
+ end:
+ character: 39
+ line: 1
+ start:
+ character: 36
+ line: 1
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 72
+ line: 1
+ start:
+ character: 69
+ line: 1
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 17
+ line: 2
+ start:
+ character: 14
+ line: 2
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 19
+ start:
+ character: 4
+ line: 19
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 4
+ line: 20
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 4
+ line: 21
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 4
+ line: 22
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 23
+ start:
+ character: 4
+ line: 23
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 24
+ start:
+ character: 4
+ line: 24
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 25
+ start:
+ character: 4
+ line: 25
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 26
+ start:
+ character: 4
+ line: 26
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 27
+ start:
+ character: 4
+ line: 27
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 30
+ start:
+ character: 4
+ line: 30
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 31
+ start:
+ character: 4
+ line: 31
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 35
+ start:
+ character: 4
+ line: 35
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 37
+ start:
+ character: 4
+ line: 37
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 39
+ start:
+ character: 4
+ line: 39
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 40
+ start:
+ character: 4
+ line: 40
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 41
+ start:
+ character: 4
+ line: 41
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 42
+ start:
+ character: 4
+ line: 42
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 43
+ start:
+ character: 4
+ line: 43
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 44
+ start:
+ character: 4
+ line: 44
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 45
+ start:
+ character: 4
+ line: 45
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 49
+ start:
+ character: 18
+ line: 49
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 53
+ start:
+ character: 8
+ line: 53
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 63
+ start:
+ character: 4
+ line: 63
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 69
+ start:
+ character: 4
+ line: 69
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 72
+ start:
+ character: 4
+ line: 72
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 87
+ start:
+ character: 8
+ line: 87
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 89
+ start:
+ character: 8
+ line: 89
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 23
+ line: 96
+ start:
+ character: 20
+ line: 96
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 109
+ start:
+ character: 40
+ line: 109
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 111
+ start:
+ character: 31
+ line: 111
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 112
+ start:
+ character: 33
+ line: 112
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 128
+ start:
+ character: 4
+ line: 128
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 130
+ start:
+ character: 4
+ line: 130
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 131
+ start:
+ character: 4
+ line: 131
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 155
+ start:
+ character: 4
+ line: 155
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 163
+ start:
+ character: 4
+ line: 163
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 164
+ start:
+ character: 34
+ line: 164
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 72
+ line: 164
+ start:
+ character: 69
+ line: 164
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 170
+ start:
+ character: 8
+ line: 170
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 174
+ start:
+ character: 4
+ line: 174
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 178
+ start:
+ character: 4
+ line: 178
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 9
+ start:
+ character: 8
+ line: 9
+ uri: tests1/first.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 12
+ start:
+ character: 8
+ line: 12
+ uri: tests1/first.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: tests1/first.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-006-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-006-simple_keyword_call].out
new file mode 100644
index 000000000..129b64a6f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-006-simple_keyword_call].out
@@ -0,0 +1,2642 @@
+data: !GeneratedTestData
+ character: 6
+ line: 36
+ name: simple keyword call
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 2
+ start:
+ character: 4
+ line: 2
+ uri: discovery/__not_discovered.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 5
+ start:
+ character: 4
+ line: 5
+ uri: discovery/__not_discovered.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 2
+ start:
+ character: 4
+ line: 2
+ uri: discovery/_not_discovered.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 5
+ start:
+ character: 4
+ line: 5
+ uri: discovery/_not_discovered.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 3
+ start:
+ character: 4
+ line: 3
+ uri: extras/fibonaci.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 37
+ start:
+ character: 4
+ line: 37
+ uri: extras/fibonaci.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 3
+ start:
+ character: 4
+ line: 3
+ uri: folder_a/duplicated.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 6
+ start:
+ character: 4
+ line: 6
+ uri: folder_a/duplicated.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 3
+ start:
+ character: 4
+ line: 3
+ uri: folder_b/duplicated.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 6
+ start:
+ character: 4
+ line: 6
+ uri: folder_b/duplicated.resource
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3315
+ start:
+ character: 0
+ line: 3314
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 7
+ line: 8
+ start:
+ character: 4
+ line: 8
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 11
+ start:
+ character: 4
+ line: 11
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 31
+ start:
+ character: 4
+ line: 31
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 7
+ line: 7
+ start:
+ character: 4
+ line: 7
+ uri: rf61/embedded_keywords.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 11
+ start:
+ character: 4
+ line: 11
+ uri: rf61/embedded_keywords.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 5
+ start:
+ character: 4
+ line: 5
+ uri: rf61/jsonvariables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 6
+ start:
+ character: 4
+ line: 6
+ uri: rf61/jsonvariables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 40
+ start:
+ character: 4
+ line: 40
+ uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 41
+ start:
+ character: 4
+ line: 41
+ uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 54
+ start:
+ character: 4
+ line: 54
+ uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 55
+ start:
+ character: 4
+ line: 55
+ uri: rf70/vartest.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 4
+ line: 15
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 17
+ start:
+ character: 4
+ line: 17
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 39
+ start:
+ character: 8
+ line: 39
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 43
+ start:
+ character: 8
+ line: 43
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 48
+ start:
+ character: 4
+ line: 48
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 59
+ start:
+ character: 4
+ line: 59
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: rf73/variable_conversion.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 2
+ start:
+ character: 4
+ line: 2
+ uri: tests/bddstyle.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 4
+ start:
+ character: 4
+ line: 4
+ uri: tests/bddstyle.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 6
+ start:
+ character: 4
+ line: 6
+ uri: tests/bddstyle.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 32
+ start:
+ character: 4
+ line: 32
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 37
+ start:
+ character: 4
+ line: 37
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 8
+ line: 103
+ start:
+ character: 5
+ line: 103
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 106
+ start:
+ character: 4
+ line: 106
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 107
+ start:
+ character: 4
+ line: 107
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 110
+ start:
+ character: 4
+ line: 110
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 113
+ start:
+ character: 4
+ line: 113
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 116
+ start:
+ character: 4
+ line: 116
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 120
+ start:
+ character: 4
+ line: 120
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 121
+ start:
+ character: 4
+ line: 121
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 125
+ start:
+ character: 4
+ line: 125
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 126
+ start:
+ character: 4
+ line: 126
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 130
+ start:
+ character: 4
+ line: 130
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 131
+ start:
+ character: 4
+ line: 131
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 41
+ start:
+ character: 4
+ line: 41
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 88
+ start:
+ character: 8
+ line: 88
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 91
+ start:
+ character: 8
+ line: 91
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 96
+ start:
+ character: 8
+ line: 96
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 99
+ start:
+ character: 8
+ line: 99
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 102
+ start:
+ character: 16
+ line: 102
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 51
+ line: 102
+ start:
+ character: 48
+ line: 102
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 70
+ line: 102
+ start:
+ character: 67
+ line: 102
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 17
+ line: 106
+ start:
+ character: 14
+ line: 106
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 106
+ start:
+ character: 44
+ line: 106
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 66
+ line: 106
+ start:
+ character: 63
+ line: 106
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 116
+ start:
+ character: 4
+ line: 116
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 118
+ start:
+ character: 4
+ line: 118
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 126
+ start:
+ character: 4
+ line: 126
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 128
+ start:
+ character: 4
+ line: 128
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 136
+ start:
+ character: 4
+ line: 136
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 138
+ start:
+ character: 4
+ line: 138
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 140
+ start:
+ character: 4
+ line: 140
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 151
+ start:
+ character: 4
+ line: 151
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 165
+ start:
+ character: 4
+ line: 165
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 166
+ start:
+ character: 4
+ line: 166
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 178
+ start:
+ character: 4
+ line: 178
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 179
+ start:
+ character: 4
+ line: 179
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 10
+ start:
+ character: 4
+ line: 10
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 16
+ start:
+ character: 12
+ line: 16
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 19
+ start:
+ character: 12
+ line: 19
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 22
+ start:
+ character: 12
+ line: 22
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 26
+ start:
+ character: 8
+ line: 26
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 41
+ start:
+ character: 4
+ line: 41
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 56
+ start:
+ character: 8
+ line: 56
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 62
+ start:
+ character: 8
+ line: 62
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 65
+ start:
+ character: 8
+ line: 65
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 67
+ start:
+ character: 12
+ line: 67
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 69
+ start:
+ character: 12
+ line: 69
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 73
+ start:
+ character: 8
+ line: 73
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 76
+ start:
+ character: 8
+ line: 76
+ uri: tests/foldingrange.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 43
+ start:
+ character: 4
+ line: 43
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 47
+ start:
+ character: 4
+ line: 47
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 49
+ start:
+ character: 4
+ line: 49
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 52
+ start:
+ character: 4
+ line: 52
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 54
+ start:
+ character: 4
+ line: 54
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 57
+ start:
+ character: 4
+ line: 57
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 64
+ start:
+ character: 12
+ line: 64
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 71
+ start:
+ character: 8
+ line: 71
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 75
+ start:
+ character: 4
+ line: 75
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 92
+ start:
+ character: 15
+ line: 92
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 94
+ start:
+ character: 26
+ line: 94
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 99
+ start:
+ character: 26
+ line: 99
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 115
+ start:
+ character: 8
+ line: 115
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 118
+ start:
+ character: 8
+ line: 118
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 123
+ start:
+ character: 8
+ line: 123
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 126
+ start:
+ character: 8
+ line: 126
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 129
+ start:
+ character: 16
+ line: 129
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 51
+ line: 129
+ start:
+ character: 48
+ line: 129
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 70
+ line: 129
+ start:
+ character: 67
+ line: 129
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 17
+ line: 133
+ start:
+ character: 14
+ line: 133
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 133
+ start:
+ character: 44
+ line: 133
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 66
+ line: 133
+ start:
+ character: 63
+ line: 133
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 151
+ start:
+ character: 4
+ line: 151
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 158
+ start:
+ character: 4
+ line: 158
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 160
+ start:
+ character: 4
+ line: 160
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 168
+ start:
+ character: 4
+ line: 168
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 170
+ start:
+ character: 4
+ line: 170
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 180
+ start:
+ character: 4
+ line: 180
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 182
+ start:
+ character: 4
+ line: 182
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 191
+ start:
+ character: 4
+ line: 191
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 193
+ start:
+ character: 4
+ line: 193
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 214
+ start:
+ character: 4
+ line: 214
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 215
+ start:
+ character: 4
+ line: 215
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 227
+ start:
+ character: 4
+ line: 227
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 228
+ start:
+ character: 4
+ line: 228
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 16
+ line: 64
+ start:
+ character: 13
+ line: 64
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 27
+ line: 66
+ start:
+ character: 24
+ line: 66
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 69
+ start:
+ character: 4
+ line: 69
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 70
+ start:
+ character: 4
+ line: 70
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 72
+ start:
+ character: 4
+ line: 72
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 75
+ start:
+ character: 4
+ line: 75
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 83
+ start:
+ character: 8
+ line: 83
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 86
+ start:
+ character: 4
+ line: 86
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 89
+ start:
+ character: 4
+ line: 89
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 92
+ start:
+ character: 4
+ line: 92
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 104
+ start:
+ character: 26
+ line: 104
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 14
+ line: 121
+ start:
+ character: 11
+ line: 121
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 128
+ start:
+ character: 8
+ line: 128
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 131
+ start:
+ character: 8
+ line: 131
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 136
+ start:
+ character: 8
+ line: 136
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 139
+ start:
+ character: 8
+ line: 139
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 142
+ start:
+ character: 16
+ line: 142
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 51
+ line: 142
+ start:
+ character: 48
+ line: 142
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 70
+ line: 142
+ start:
+ character: 67
+ line: 142
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 17
+ line: 146
+ start:
+ character: 14
+ line: 146
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 146
+ start:
+ character: 44
+ line: 146
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 66
+ line: 146
+ start:
+ character: 63
+ line: 146
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 151
+ start:
+ character: 21
+ line: 151
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 154
+ start:
+ character: 31
+ line: 154
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 13
+ line: 158
+ start:
+ character: 10
+ line: 158
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 12
+ line: 161
+ start:
+ character: 9
+ line: 161
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 164
+ start:
+ character: 8
+ line: 164
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 12
+ line: 167
+ start:
+ character: 9
+ line: 167
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 170
+ start:
+ character: 8
+ line: 170
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 173
+ start:
+ character: 18
+ line: 173
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 178
+ start:
+ character: 37
+ line: 178
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 65
+ line: 178
+ start:
+ character: 62
+ line: 178
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 82
+ line: 178
+ start:
+ character: 79
+ line: 178
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 62
+ line: 183
+ start:
+ character: 59
+ line: 183
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 27
+ line: 188
+ start:
+ character: 24
+ line: 188
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 242
+ start:
+ character: 19
+ line: 242
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 23
+ line: 251
+ start:
+ character: 20
+ line: 251
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 270
+ start:
+ character: 4
+ line: 270
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 272
+ start:
+ character: 4
+ line: 272
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 280
+ start:
+ character: 4
+ line: 280
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 282
+ start:
+ character: 4
+ line: 282
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 290
+ start:
+ character: 4
+ line: 290
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 292
+ start:
+ character: 4
+ line: 292
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 299
+ start:
+ character: 8
+ line: 299
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 7
+ start:
+ character: 4
+ line: 7
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 9
+ start:
+ character: 4
+ line: 9
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 10
+ start:
+ character: 4
+ line: 10
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 12
+ start:
+ character: 4
+ line: 12
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 13
+ start:
+ character: 4
+ line: 13
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 14
+ start:
+ character: 4
+ line: 14
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 23
+ start:
+ character: 4
+ line: 23
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 24
+ start:
+ character: 4
+ line: 24
+ uri: tests/playground.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 43
+ start:
+ character: 4
+ line: 43
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 115
+ start:
+ character: 4
+ line: 115
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 123
+ start:
+ character: 4
+ line: 123
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 128
+ start:
+ character: 4
+ line: 128
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 134
+ start:
+ character: 4
+ line: 134
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 135
+ start:
+ character: 4
+ line: 135
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 139
+ start:
+ character: 4
+ line: 139
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 143
+ start:
+ character: 4
+ line: 143
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 147
+ start:
+ character: 4
+ line: 147
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 153
+ start:
+ character: 4
+ line: 153
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 155
+ start:
+ character: 4
+ line: 155
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 163
+ start:
+ character: 4
+ line: 163
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 165
+ start:
+ character: 4
+ line: 165
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 173
+ start:
+ character: 4
+ line: 173
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 175
+ start:
+ character: 4
+ line: 175
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 188
+ start:
+ character: 4
+ line: 188
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 189
+ start:
+ character: 4
+ line: 189
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 202
+ start:
+ character: 4
+ line: 202
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 203
+ start:
+ character: 4
+ line: 203
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 206
+ start:
+ character: 18
+ line: 206
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 12
+ start:
+ character: 4
+ line: 12
+ uri: tests/setup_teardown.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 16
+ start:
+ character: 4
+ line: 16
+ uri: tests/setup_teardown.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 4
+ line: 21
+ uri: tests/setup_teardown.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 31
+ start:
+ character: 4
+ line: 31
+ uri: tests/setup_teardown.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/setup_teardown.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 23
+ start:
+ character: 8
+ line: 23
+ uri: tests/symbols.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 30
+ start:
+ character: 8
+ line: 30
+ uri: tests/symbols.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 63
+ start:
+ character: 4
+ line: 63
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 64
+ start:
+ character: 4
+ line: 64
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 65
+ start:
+ character: 4
+ line: 65
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 69
+ start:
+ character: 4
+ line: 69
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 70
+ start:
+ character: 4
+ line: 70
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 71
+ start:
+ character: 4
+ line: 71
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 72
+ start:
+ character: 4
+ line: 72
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 75
+ start:
+ character: 4
+ line: 75
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 76
+ start:
+ character: 34
+ line: 76
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 72
+ line: 76
+ start:
+ character: 69
+ line: 76
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 82
+ start:
+ character: 8
+ line: 82
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 86
+ start:
+ character: 4
+ line: 86
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 90
+ start:
+ character: 4
+ line: 90
+ uri: tests/templates.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 50
+ start:
+ character: 4
+ line: 50
+ uri: tests/templates2.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 54
+ start:
+ character: 4
+ line: 54
+ uri: tests/templates2.robot
+- !Location
+ range:
+ end:
+ character: 39
+ line: 1
+ start:
+ character: 36
+ line: 1
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 72
+ line: 1
+ start:
+ character: 69
+ line: 1
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 17
+ line: 2
+ start:
+ character: 14
+ line: 2
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 18
+ start:
+ character: 4
+ line: 18
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 19
+ start:
+ character: 4
+ line: 19
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 4
+ line: 20
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 4
+ line: 21
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 4
+ line: 22
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 23
+ start:
+ character: 4
+ line: 23
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 24
+ start:
+ character: 4
+ line: 24
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 25
+ start:
+ character: 4
+ line: 25
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 26
+ start:
+ character: 4
+ line: 26
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 27
+ start:
+ character: 4
+ line: 27
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 28
+ start:
+ character: 4
+ line: 28
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 29
+ start:
+ character: 4
+ line: 29
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 30
+ start:
+ character: 4
+ line: 30
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 31
+ start:
+ character: 4
+ line: 31
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 35
+ start:
+ character: 4
+ line: 35
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 37
+ start:
+ character: 4
+ line: 37
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 39
+ start:
+ character: 4
+ line: 39
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 40
+ start:
+ character: 4
+ line: 40
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 41
+ start:
+ character: 4
+ line: 41
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 42
+ start:
+ character: 4
+ line: 42
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 43
+ start:
+ character: 4
+ line: 43
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 44
+ start:
+ character: 4
+ line: 44
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 45
+ start:
+ character: 4
+ line: 45
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 49
+ start:
+ character: 18
+ line: 49
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 53
+ start:
+ character: 8
+ line: 53
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 60
+ start:
+ character: 4
+ line: 60
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 61
+ start:
+ character: 4
+ line: 61
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 62
+ start:
+ character: 4
+ line: 62
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 63
+ start:
+ character: 4
+ line: 63
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 66
+ start:
+ character: 4
+ line: 66
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 67
+ start:
+ character: 4
+ line: 67
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 69
+ start:
+ character: 4
+ line: 69
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 72
+ start:
+ character: 4
+ line: 72
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 87
+ start:
+ character: 8
+ line: 87
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 89
+ start:
+ character: 8
+ line: 89
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 23
+ line: 96
+ start:
+ character: 20
+ line: 96
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 109
+ start:
+ character: 40
+ line: 109
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 111
+ start:
+ character: 31
+ line: 111
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 112
+ start:
+ character: 33
+ line: 112
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 128
+ start:
+ character: 4
+ line: 128
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 130
+ start:
+ character: 4
+ line: 130
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 131
+ start:
+ character: 4
+ line: 131
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 155
+ start:
+ character: 4
+ line: 155
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 163
+ start:
+ character: 4
+ line: 163
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 164
+ start:
+ character: 34
+ line: 164
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 72
+ line: 164
+ start:
+ character: 69
+ line: 164
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 170
+ start:
+ character: 8
+ line: 170
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 174
+ start:
+ character: 4
+ line: 174
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 178
+ start:
+ character: 4
+ line: 178
+ uri: tests/variables.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 9
+ start:
+ character: 8
+ line: 9
+ uri: tests1/first.robot
+- !Location
+ range:
+ end:
+ character: 11
+ line: 12
+ start:
+ character: 8
+ line: 12
+ uri: tests1/first.robot
+- !Location
+ range:
+ end:
+ character: 7
+ line: 33
+ start:
+ character: 4
+ line: 33
+ uri: tests1/first.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-004-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-004-multiple_references].out
new file mode 100644
index 000000000..a25ecc9a2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-004-multiple_references].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 4
+ line: 38
+ name: multiple references
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-011-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-011-multiple_references].out
new file mode 100644
index 000000000..e604adbf0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-011-multiple_references].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 11
+ line: 38
+ name: multiple references
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-017-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-017-multiple_references].out
new file mode 100644
index 000000000..aa85328bd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-017-multiple_references].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 17
+ line: 38
+ name: multiple references
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-012-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-012-multiple_references_with_namespace].out
new file mode 100644
index 000000000..a7ffe6325
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-012-multiple_references_with_namespace].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 12
+ line: 40
+ name: multiple references with namespace
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-019-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-019-multiple_references_with_namespace].out
new file mode 100644
index 000000000..eb60db47e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-019-multiple_references_with_namespace].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 19
+ line: 40
+ name: multiple references with namespace
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-025-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-025-multiple_references_with_namespace].out
new file mode 100644
index 000000000..a3eedcf0a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-025-multiple_references_with_namespace].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 25
+ line: 40
+ name: multiple references with namespace
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-035-multiple_variables].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-035-multiple_variables].out
new file mode 100644
index 000000000..7a3acc315
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-035-multiple_variables].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 35
+ line: 40
+ name: multiple variables
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-037-multiple_variables].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-037-multiple_variables].out
new file mode 100644
index 000000000..2b22a2d5b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-037-multiple_variables].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 37
+ line: 40
+ name: multiple variables
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-039-multiple_variables].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-039-multiple_variables].out
new file mode 100644
index 000000000..b6b34dcb3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-039-multiple_variables].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 39
+ line: 40
+ name: multiple variables
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-013-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-013-a_var_from_resource].out
new file mode 100644
index 000000000..796960a17
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-013-a_var_from_resource].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 13
+ line: 43
+ name: a var from resource
+result:
+- !Location
+ range:
+ end:
+ character: 20
+ line: 4
+ start:
+ character: 2
+ line: 4
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 31
+ line: 37
+ start:
+ character: 13
+ line: 37
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 41
+ start:
+ character: 13
+ line: 41
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 43
+ start:
+ character: 13
+ line: 43
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-022-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-022-a_var_from_resource].out
new file mode 100644
index 000000000..5a67acb52
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-022-a_var_from_resource].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 22
+ line: 43
+ name: a var from resource
+result:
+- !Location
+ range:
+ end:
+ character: 20
+ line: 4
+ start:
+ character: 2
+ line: 4
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 31
+ line: 37
+ start:
+ character: 13
+ line: 37
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 41
+ start:
+ character: 13
+ line: 41
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 43
+ start:
+ character: 13
+ line: 43
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-030-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-030-a_var_from_resource].out
new file mode 100644
index 000000000..3f8b8bf71
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-030-a_var_from_resource].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 30
+ line: 43
+ name: a var from resource
+result:
+- !Location
+ range:
+ end:
+ character: 20
+ line: 4
+ start:
+ character: 2
+ line: 4
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 31
+ line: 37
+ start:
+ character: 13
+ line: 37
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 41
+ start:
+ character: 13
+ line: 41
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 43
+ start:
+ character: 13
+ line: 43
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-018-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-018-template_keyword].out
new file mode 100644
index 000000000..bbe030a31
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-018-template_keyword].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 18
+ line: 47
+ name: template keyword
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-025-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-025-template_keyword].out
new file mode 100644
index 000000000..49c2525c9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-025-template_keyword].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 25
+ line: 47
+ name: template keyword
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-031-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-031-template_keyword].out
new file mode 100644
index 000000000..9e1b11d0c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-031-template_keyword].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 31
+ line: 47
+ name: template keyword
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-026-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-026-template_keyword_with_namespace].out
new file mode 100644
index 000000000..f3dbc4f5a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-026-template_keyword_with_namespace].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 26
+ line: 53
+ name: template keyword with namespace
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-033-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-033-template_keyword_with_namespace].out
new file mode 100644
index 000000000..92fd4e289
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-033-template_keyword_with_namespace].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 33
+ line: 53
+ name: template keyword with namespace
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-039-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-039-template_keyword_with_namespace].out
new file mode 100644
index 000000000..466a9d038
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-039-template_keyword_with_namespace].out
@@ -0,0 +1,239 @@
+data: !GeneratedTestData
+ character: 39
+ line: 53
+ name: template keyword with namespace
+result:
+- !Location
+ range:
+ end:
+ character: 0
+ line: 3437
+ start:
+ character: 0
+ line: 3436
+ uri: libraries/BuiltIn.py
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 28
+ start:
+ character: 15
+ line: 28
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 30
+ start:
+ character: 26
+ line: 30
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 34
+ start:
+ character: 4
+ line: 34
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 35
+ start:
+ character: 12
+ line: 35
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 40
+ start:
+ character: 18
+ line: 40
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 46
+ start:
+ character: 26
+ line: 46
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 14
+ start:
+ character: 23
+ line: 14
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 16
+ start:
+ character: 14
+ line: 16
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 30
+ start:
+ character: 15
+ line: 30
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 26
+ line: 32
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 36
+ start:
+ character: 4
+ line: 36
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 38
+ start:
+ character: 12
+ line: 38
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 45
+ start:
+ character: 18
+ line: 45
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 51
+ start:
+ character: 26
+ line: 51
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 37
+ line: 16
+ start:
+ character: 23
+ line: 16
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 18
+ start:
+ character: 14
+ line: 18
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 32
+ start:
+ character: 15
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 34
+ start:
+ character: 26
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 38
+ start:
+ character: 4
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 26
+ line: 40
+ start:
+ character: 12
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 47
+ start:
+ character: 18
+ line: 47
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 53
+ start:
+ character: 26
+ line: 53
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 213
+ start:
+ character: 8
+ line: 213
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-006-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-006-Keyword_assignement].out
new file mode 100644
index 000000000..06c595d2b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-006-Keyword_assignement].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 6
+ line: 59
+ name: Keyword assignement
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 59
+ start:
+ character: 6
+ line: 59
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 61
+ start:
+ character: 25
+ line: 61
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 12
+ line: 62
+ start:
+ character: 6
+ line: 62
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 64
+ start:
+ character: 25
+ line: 64
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-009-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-009-Keyword_assignement].out
new file mode 100644
index 000000000..65e074183
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-009-Keyword_assignement].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 9
+ line: 59
+ name: Keyword assignement
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 59
+ start:
+ character: 6
+ line: 59
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 61
+ start:
+ character: 25
+ line: 61
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 12
+ line: 62
+ start:
+ character: 6
+ line: 62
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 64
+ start:
+ character: 25
+ line: 64
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-011-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-011-Keyword_assignement].out
new file mode 100644
index 000000000..bbf987975
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-011-Keyword_assignement].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 11
+ line: 59
+ name: Keyword assignement
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 59
+ start:
+ character: 6
+ line: 59
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 61
+ start:
+ character: 25
+ line: 61
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 12
+ line: 62
+ start:
+ character: 6
+ line: 62
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 64
+ start:
+ character: 25
+ line: 64
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-005-Keyword_reassignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-005-Keyword_reassignment_with_equals_sign].out
new file mode 100644
index 000000000..b4e3c9d2f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-005-Keyword_reassignment_with_equals_sign].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 5
+ line: 62
+ name: Keyword reassignment with equals sign
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-008-Keyword_reassignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-008-Keyword_reassignment_with_equals_sign].out
new file mode 100644
index 000000000..960862d3f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-008-Keyword_reassignment_with_equals_sign].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 8
+ line: 62
+ name: Keyword reassignment with equals sign
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 59
+ start:
+ character: 6
+ line: 59
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 61
+ start:
+ character: 25
+ line: 61
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 12
+ line: 62
+ start:
+ character: 6
+ line: 62
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 64
+ start:
+ character: 25
+ line: 64
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-011-Keyword_reassignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-011-Keyword_reassignment_with_equals_sign].out
new file mode 100644
index 000000000..c3e7faacc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-011-Keyword_reassignment_with_equals_sign].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 11
+ line: 62
+ name: Keyword reassignment with equals sign
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 59
+ start:
+ character: 6
+ line: 59
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 61
+ start:
+ character: 25
+ line: 61
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 12
+ line: 62
+ start:
+ character: 6
+ line: 62
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 64
+ start:
+ character: 25
+ line: 64
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-025-Keyword_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-025-Keyword_variable_reference].out
new file mode 100644
index 000000000..ad941ae73
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-025-Keyword_variable_reference].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 25
+ line: 64
+ name: Keyword variable reference
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 59
+ start:
+ character: 6
+ line: 59
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 61
+ start:
+ character: 25
+ line: 61
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 12
+ line: 62
+ start:
+ character: 6
+ line: 62
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 64
+ start:
+ character: 25
+ line: 64
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-028-Keyword_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-028-Keyword_variable_reference].out
new file mode 100644
index 000000000..cd80a42ba
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-028-Keyword_variable_reference].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 28
+ line: 64
+ name: Keyword variable reference
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 59
+ start:
+ character: 6
+ line: 59
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 61
+ start:
+ character: 25
+ line: 61
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 12
+ line: 62
+ start:
+ character: 6
+ line: 62
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 64
+ start:
+ character: 25
+ line: 64
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-030-Keyword_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-030-Keyword_variable_reference].out
new file mode 100644
index 000000000..f01a71450
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-030-Keyword_variable_reference].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 30
+ line: 64
+ name: Keyword variable reference
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 59
+ start:
+ character: 6
+ line: 59
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 61
+ start:
+ character: 25
+ line: 61
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 12
+ line: 62
+ start:
+ character: 6
+ line: 62
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 64
+ start:
+ character: 25
+ line: 64
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-015-Embedded_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-015-Embedded_keyword_in_setup].out
new file mode 100644
index 000000000..abc44c5c3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-015-Embedded_keyword_in_setup].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 15
+ line: 69
+ name: Embedded keyword in setup
+result:
+- !Location
+ range:
+ end:
+ character: 44
+ line: 69
+ start:
+ character: 15
+ line: 69
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 50
+ line: 71
+ start:
+ character: 18
+ line: 71
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 74
+ start:
+ character: 4
+ line: 74
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 20
+ line: 118
+ start:
+ character: 0
+ line: 118
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-029-Embedded_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-029-Embedded_keyword_in_setup].out
new file mode 100644
index 000000000..dfca16cbf
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-029-Embedded_keyword_in_setup].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 29
+ line: 69
+ name: Embedded keyword in setup
+result:
+- !Location
+ range:
+ end:
+ character: 44
+ line: 69
+ start:
+ character: 15
+ line: 69
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 50
+ line: 71
+ start:
+ character: 18
+ line: 71
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 74
+ start:
+ character: 4
+ line: 74
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 20
+ line: 118
+ start:
+ character: 0
+ line: 118
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-043-Embedded_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-043-Embedded_keyword_in_setup].out
new file mode 100644
index 000000000..6ebdac04f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-043-Embedded_keyword_in_setup].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 43
+ line: 69
+ name: Embedded keyword in setup
+result:
+- !Location
+ range:
+ end:
+ character: 44
+ line: 69
+ start:
+ character: 15
+ line: 69
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 50
+ line: 71
+ start:
+ character: 18
+ line: 71
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 74
+ start:
+ character: 4
+ line: 74
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 20
+ line: 118
+ start:
+ character: 0
+ line: 118
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-018-Embedded_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-018-Embedded_keyword_in_teardown].out
new file mode 100644
index 000000000..4bb2cd527
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-018-Embedded_keyword_in_teardown].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 18
+ line: 71
+ name: Embedded keyword in teardown
+result:
+- !Location
+ range:
+ end:
+ character: 44
+ line: 69
+ start:
+ character: 15
+ line: 69
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 50
+ line: 71
+ start:
+ character: 18
+ line: 71
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 74
+ start:
+ character: 4
+ line: 74
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 20
+ line: 118
+ start:
+ character: 0
+ line: 118
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-034-Embedded_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-034-Embedded_keyword_in_teardown].out
new file mode 100644
index 000000000..71ec1eb0c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-034-Embedded_keyword_in_teardown].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 34
+ line: 71
+ name: Embedded keyword in teardown
+result:
+- !Location
+ range:
+ end:
+ character: 44
+ line: 69
+ start:
+ character: 15
+ line: 69
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 50
+ line: 71
+ start:
+ character: 18
+ line: 71
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 74
+ start:
+ character: 4
+ line: 74
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 20
+ line: 118
+ start:
+ character: 0
+ line: 118
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-049-Embedded_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-049-Embedded_keyword_in_teardown].out
new file mode 100644
index 000000000..ae7f83a55
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-049-Embedded_keyword_in_teardown].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 49
+ line: 71
+ name: Embedded keyword in teardown
+result:
+- !Location
+ range:
+ end:
+ character: 44
+ line: 69
+ start:
+ character: 15
+ line: 69
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 50
+ line: 71
+ start:
+ character: 18
+ line: 71
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 74
+ start:
+ character: 4
+ line: 74
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 20
+ line: 118
+ start:
+ character: 0
+ line: 118
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-004-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-004-Embedded_keyword].out
new file mode 100644
index 000000000..c31b5aca3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-004-Embedded_keyword].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 4
+ line: 74
+ name: Embedded keyword
+result:
+- !Location
+ range:
+ end:
+ character: 44
+ line: 69
+ start:
+ character: 15
+ line: 69
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 50
+ line: 71
+ start:
+ character: 18
+ line: 71
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 74
+ start:
+ character: 4
+ line: 74
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 20
+ line: 118
+ start:
+ character: 0
+ line: 118
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-018-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-018-Embedded_keyword].out
new file mode 100644
index 000000000..d7cffb22a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-018-Embedded_keyword].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 18
+ line: 74
+ name: Embedded keyword
+result:
+- !Location
+ range:
+ end:
+ character: 44
+ line: 69
+ start:
+ character: 15
+ line: 69
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 50
+ line: 71
+ start:
+ character: 18
+ line: 71
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 74
+ start:
+ character: 4
+ line: 74
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 20
+ line: 118
+ start:
+ character: 0
+ line: 118
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-032-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-032-Embedded_keyword].out
new file mode 100644
index 000000000..dc5f66389
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-032-Embedded_keyword].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 32
+ line: 74
+ name: Embedded keyword
+result:
+- !Location
+ range:
+ end:
+ character: 44
+ line: 69
+ start:
+ character: 15
+ line: 69
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 50
+ line: 71
+ start:
+ character: 18
+ line: 71
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 74
+ start:
+ character: 4
+ line: 74
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 20
+ line: 118
+ start:
+ character: 0
+ line: 118
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-004-Embedded_keyword_with_regex_only_numbers].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-004-Embedded_keyword_with_regex_only_numbers].out
new file mode 100644
index 000000000..804c9436c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-004-Embedded_keyword_with_regex_only_numbers].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 4
+ line: 77
+ name: Embedded keyword with regex only numbers
+result:
+- !Location
+ range:
+ end:
+ character: 25
+ line: 77
+ start:
+ character: 4
+ line: 77
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 80
+ start:
+ character: 4
+ line: 80
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 125
+ start:
+ character: 0
+ line: 125
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-014-Embedded_keyword_with_regex_only_numbers].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-014-Embedded_keyword_with_regex_only_numbers].out
new file mode 100644
index 000000000..4d0131af6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-014-Embedded_keyword_with_regex_only_numbers].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 14
+ line: 77
+ name: Embedded keyword with regex only numbers
+result:
+- !Location
+ range:
+ end:
+ character: 25
+ line: 77
+ start:
+ character: 4
+ line: 77
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 80
+ start:
+ character: 4
+ line: 80
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 125
+ start:
+ character: 0
+ line: 125
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-024-Embedded_keyword_with_regex_only_numbers].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-024-Embedded_keyword_with_regex_only_numbers].out
new file mode 100644
index 000000000..d67ce129f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-024-Embedded_keyword_with_regex_only_numbers].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 24
+ line: 77
+ name: Embedded keyword with regex only numbers
+result:
+- !Location
+ range:
+ end:
+ character: 25
+ line: 77
+ start:
+ character: 4
+ line: 77
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 80
+ start:
+ character: 4
+ line: 80
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 125
+ start:
+ character: 0
+ line: 125
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-004-Embedded_keyword_with_regex_only_numbers].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-004-Embedded_keyword_with_regex_only_numbers].out
new file mode 100644
index 000000000..79c1a7e5e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-004-Embedded_keyword_with_regex_only_numbers].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 4
+ line: 80
+ name: Embedded keyword with regex only numbers
+result:
+- !Location
+ range:
+ end:
+ character: 25
+ line: 77
+ start:
+ character: 4
+ line: 77
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 80
+ start:
+ character: 4
+ line: 80
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 125
+ start:
+ character: 0
+ line: 125
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-016-Embedded_keyword_with_regex_only_numbers].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-016-Embedded_keyword_with_regex_only_numbers].out
new file mode 100644
index 000000000..b36026348
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-016-Embedded_keyword_with_regex_only_numbers].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 16
+ line: 80
+ name: Embedded keyword with regex only numbers
+result:
+- !Location
+ range:
+ end:
+ character: 25
+ line: 77
+ start:
+ character: 4
+ line: 77
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 80
+ start:
+ character: 4
+ line: 80
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 125
+ start:
+ character: 0
+ line: 125
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-028-Embedded_keyword_with_regex_only_numbers].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-028-Embedded_keyword_with_regex_only_numbers].out
new file mode 100644
index 000000000..0a7482662
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-028-Embedded_keyword_with_regex_only_numbers].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 28
+ line: 80
+ name: Embedded keyword with regex only numbers
+result:
+- !Location
+ range:
+ end:
+ character: 25
+ line: 77
+ start:
+ character: 4
+ line: 77
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 80
+ start:
+ character: 4
+ line: 80
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 125
+ start:
+ character: 0
+ line: 125
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-004-Embedded_keyword_with_regex_a_to_z_an_space].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-004-Embedded_keyword_with_regex_a_to_z_an_space].out
new file mode 100644
index 000000000..557bd68df
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-004-Embedded_keyword_with_regex_a_to_z_an_space].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 4
+ line: 82
+ name: Embedded keyword with regex a to z an space
+result:
+- !Location
+ range:
+ end:
+ character: 32
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 95
+ start:
+ character: 4
+ line: 95
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 0
+ line: 141
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-018-Embedded_keyword_with_regex_a_to_z_an_space].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-018-Embedded_keyword_with_regex_a_to_z_an_space].out
new file mode 100644
index 000000000..c857f6e41
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-018-Embedded_keyword_with_regex_a_to_z_an_space].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 18
+ line: 82
+ name: Embedded keyword with regex a to z an space
+result:
+- !Location
+ range:
+ end:
+ character: 32
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 95
+ start:
+ character: 4
+ line: 95
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 0
+ line: 141
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-031-Embedded_keyword_with_regex_a_to_z_an_space].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-031-Embedded_keyword_with_regex_a_to_z_an_space].out
new file mode 100644
index 000000000..17d3bd0cc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-031-Embedded_keyword_with_regex_a_to_z_an_space].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 31
+ line: 82
+ name: Embedded keyword with regex a to z an space
+result:
+- !Location
+ range:
+ end:
+ character: 32
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 95
+ start:
+ character: 4
+ line: 95
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 0
+ line: 141
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-004-Embedded_keyword_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-004-Embedded_keyword_with_variable].out
new file mode 100644
index 000000000..77469f1e5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-004-Embedded_keyword_with_variable].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 4
+ line: 85
+ name: Embedded keyword with variable
+result:
+- !Location
+ range:
+ end:
+ character: 35
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 30
+ line: 88
+ start:
+ character: 4
+ line: 88
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 145
+ start:
+ character: 0
+ line: 145
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-019-Embedded_keyword_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-019-Embedded_keyword_with_variable].out
new file mode 100644
index 000000000..0f43e0d23
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-019-Embedded_keyword_with_variable].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 19
+ line: 85
+ name: Embedded keyword with variable
+result:
+- !Location
+ range:
+ end:
+ character: 9
+ line: 26
+ start:
+ character: 2
+ line: 26
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 20
+ line: 85
+ start:
+ character: 13
+ line: 85
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-034-Embedded_keyword_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-034-Embedded_keyword_with_variable].out
new file mode 100644
index 000000000..52c5bbdea
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-034-Embedded_keyword_with_variable].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 34
+ line: 85
+ name: Embedded keyword with variable
+result:
+- !Location
+ range:
+ end:
+ character: 35
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 30
+ line: 88
+ start:
+ character: 4
+ line: 88
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 145
+ start:
+ character: 0
+ line: 145
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-004-Embedded_keyword_with_emojii_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-004-Embedded_keyword_with_emojii_variable].out
new file mode 100644
index 000000000..3abc64ec5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-004-Embedded_keyword_with_emojii_variable].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 4
+ line: 88
+ name: Embedded keyword with emojii variable
+result:
+- !Location
+ range:
+ end:
+ character: 35
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 30
+ line: 88
+ start:
+ character: 4
+ line: 88
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 145
+ start:
+ character: 0
+ line: 145
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-019-Embedded_keyword_with_emojii_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-019-Embedded_keyword_with_emojii_variable].out
new file mode 100644
index 000000000..5bce4f47a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-019-Embedded_keyword_with_emojii_variable].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 19
+ line: 88
+ name: Embedded keyword with emojii variable
+result:
+- !Location
+ range:
+ end:
+ character: 35
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 30
+ line: 88
+ start:
+ character: 4
+ line: 88
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 145
+ start:
+ character: 0
+ line: 145
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-034-Embedded_keyword_with_emojii_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-034-Embedded_keyword_with_emojii_variable].out
new file mode 100644
index 000000000..3d4eb2de3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-034-Embedded_keyword_with_emojii_variable].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 34
+ line: 88
+ name: Embedded keyword with emojii variable
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-004-Ambiguous_Embedded_keyword_with_regex_a_to_z].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-004-Ambiguous_Embedded_keyword_with_regex_a_to_z].out
new file mode 100644
index 000000000..c1ef41615
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-004-Ambiguous_Embedded_keyword_with_regex_a_to_z].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 4
+ line: 91
+ name: Ambiguous Embedded keyword with regex a to z
+result:
+- !Location
+ range:
+ end:
+ character: 32
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 95
+ start:
+ character: 4
+ line: 95
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 0
+ line: 141
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-014-Ambiguous_Embedded_keyword_with_regex_a_to_z].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-014-Ambiguous_Embedded_keyword_with_regex_a_to_z].out
new file mode 100644
index 000000000..f8cd3e682
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-014-Ambiguous_Embedded_keyword_with_regex_a_to_z].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 14
+ line: 91
+ name: Ambiguous Embedded keyword with regex a to z
+result:
+- !Location
+ range:
+ end:
+ character: 32
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 95
+ start:
+ character: 4
+ line: 95
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 0
+ line: 141
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-024-Ambiguous_Embedded_keyword_with_regex_a_to_z].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-024-Ambiguous_Embedded_keyword_with_regex_a_to_z].out
new file mode 100644
index 000000000..a2d88bdb7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-024-Ambiguous_Embedded_keyword_with_regex_a_to_z].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 24
+ line: 91
+ name: Ambiguous Embedded keyword with regex a to z
+result:
+- !Location
+ range:
+ end:
+ character: 32
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 95
+ start:
+ character: 4
+ line: 95
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 0
+ line: 141
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-004-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-004-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out
new file mode 100644
index 000000000..c81b53822
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-004-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 4
+ line: 93
+ name: Invalid Embedded keyword with regex a to z ignored
+result:
+- !Location
+ range:
+ end:
+ character: 32
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 95
+ start:
+ character: 4
+ line: 95
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 0
+ line: 141
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-014-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-014-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out
new file mode 100644
index 000000000..71de43999
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-014-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 14
+ line: 93
+ name: Invalid Embedded keyword with regex a to z ignored
+result:
+- !Location
+ range:
+ end:
+ character: 32
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 95
+ start:
+ character: 4
+ line: 95
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 0
+ line: 141
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-024-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-024-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out
new file mode 100644
index 000000000..81e85435f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-024-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 24
+ line: 93
+ name: Invalid Embedded keyword with regex a to z ignored
+result:
+- !Location
+ range:
+ end:
+ character: 32
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 95
+ start:
+ character: 4
+ line: 95
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 0
+ line: 141
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-004-Embedded_keyword_with_regex_a_to_z_and_space].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-004-Embedded_keyword_with_regex_a_to_z_and_space].out
new file mode 100644
index 000000000..380a2c8ee
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-004-Embedded_keyword_with_regex_a_to_z_and_space].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 4
+ line: 95
+ name: Embedded keyword with regex a to z and space
+result:
+- !Location
+ range:
+ end:
+ character: 32
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 95
+ start:
+ character: 4
+ line: 95
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 0
+ line: 141
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-020-Embedded_keyword_with_regex_a_to_z_and_space].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-020-Embedded_keyword_with_regex_a_to_z_and_space].out
new file mode 100644
index 000000000..45868a227
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-020-Embedded_keyword_with_regex_a_to_z_and_space].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 20
+ line: 95
+ name: Embedded keyword with regex a to z and space
+result:
+- !Location
+ range:
+ end:
+ character: 32
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 95
+ start:
+ character: 4
+ line: 95
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 0
+ line: 141
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-035-Embedded_keyword_with_regex_a_to_z_and_space].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-035-Embedded_keyword_with_regex_a_to_z_and_space].out
new file mode 100644
index 000000000..aef747a16
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-035-Embedded_keyword_with_regex_a_to_z_and_space].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 35
+ line: 95
+ name: Embedded keyword with regex a to z and space
+result:
+- !Location
+ range:
+ end:
+ character: 32
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 95
+ start:
+ character: 4
+ line: 95
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 0
+ line: 141
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-004-Embedded_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-004-Embedded_keyword_with_emoji].out
new file mode 100644
index 000000000..582cd9e32
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-004-Embedded_keyword_with_emoji].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 4
+ line: 98
+ name: Embedded keyword with emoji
+result:
+- !Location
+ range:
+ end:
+ character: 32
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 95
+ start:
+ character: 4
+ line: 95
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 0
+ line: 141
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-020-Embedded_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-020-Embedded_keyword_with_emoji].out
new file mode 100644
index 000000000..61d63cf48
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-020-Embedded_keyword_with_emoji].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 20
+ line: 98
+ name: Embedded keyword with emoji
+result:
+- !Location
+ range:
+ end:
+ character: 32
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 95
+ start:
+ character: 4
+ line: 95
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 0
+ line: 141
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-035-Embedded_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-035-Embedded_keyword_with_emoji].out
new file mode 100644
index 000000000..008c4d900
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-035-Embedded_keyword_with_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 35
+ line: 98
+ name: Embedded keyword with emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-004-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-004-a_keyword_with_emoji].out
new file mode 100644
index 000000000..41370206d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-004-a_keyword_with_emoji].out
@@ -0,0 +1,86 @@
+data: !GeneratedTestData
+ character: 4
+ line: 103
+ name: a keyword with emoji
+result:
+- !Location
+ range:
+ end:
+ character: 2
+ line: 26
+ start:
+ character: 0
+ line: 26
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 6
+ line: 86
+ start:
+ character: 4
+ line: 86
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 6
+ line: 88
+ start:
+ character: 4
+ line: 88
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 6
+ line: 80
+ start:
+ character: 4
+ line: 80
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 6
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 6
+ line: 109
+ start:
+ character: 4
+ line: 109
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 6
+ line: 214
+ start:
+ character: 4
+ line: 214
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 6
+ line: 103
+ start:
+ character: 4
+ line: 103
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 20
+ line: 105
+ start:
+ character: 18
+ line: 105
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-006-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-006-a_keyword_with_emoji].out
new file mode 100644
index 000000000..a7811100a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-006-a_keyword_with_emoji].out
@@ -0,0 +1,86 @@
+data: !GeneratedTestData
+ character: 6
+ line: 103
+ name: a keyword with emoji
+result:
+- !Location
+ range:
+ end:
+ character: 2
+ line: 26
+ start:
+ character: 0
+ line: 26
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 6
+ line: 86
+ start:
+ character: 4
+ line: 86
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 6
+ line: 88
+ start:
+ character: 4
+ line: 88
+ uri: tests/code_action_show_documentation.robot
+- !Location
+ range:
+ end:
+ character: 6
+ line: 80
+ start:
+ character: 4
+ line: 80
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 6
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 6
+ line: 109
+ start:
+ character: 4
+ line: 109
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 6
+ line: 214
+ start:
+ character: 4
+ line: 214
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 6
+ line: 103
+ start:
+ character: 4
+ line: 103
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 20
+ line: 105
+ start:
+ character: 18
+ line: 105
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-007-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-007-a_keyword_with_emoji].out
new file mode 100644
index 000000000..1e8317176
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-007-a_keyword_with_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 7
+ line: 103
+ name: a keyword with emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-004-a_keyword_with_namespace_and_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-004-a_keyword_with_namespace_and_emoji].out
new file mode 100644
index 000000000..576cbb301
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-004-a_keyword_with_namespace_and_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 4
+ line: 105
+ name: a keyword with namespace and emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-013-a_keyword_with_namespace_and_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-013-a_keyword_with_namespace_and_emoji].out
new file mode 100644
index 000000000..1d5802065
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-013-a_keyword_with_namespace_and_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 13
+ line: 105
+ name: a keyword with namespace and emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-021-a_keyword_with_namespace_and_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-021-a_keyword_with_namespace_and_emoji].out
new file mode 100644
index 000000000..8ed065a86
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-021-a_keyword_with_namespace_and_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 21
+ line: 105
+ name: a keyword with namespace and emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-028-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-028-a_variable_with_emoji].out
new file mode 100644
index 000000000..ebe5369f3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-028-a_variable_with_emoji].out
@@ -0,0 +1,50 @@
+data: !GeneratedTestData
+ character: 28
+ line: 105
+ name: a variable with emoji
+result:
+- !Location
+ range:
+ end:
+ character: 4
+ line: 27
+ start:
+ character: 2
+ line: 27
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 88
+ start:
+ character: 13
+ line: 88
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 105
+ start:
+ character: 26
+ line: 105
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 47
+ line: 105
+ start:
+ character: 45
+ line: 105
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 53
+ line: 105
+ start:
+ character: 51
+ line: 105
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-029-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-029-a_variable_with_emoji].out
new file mode 100644
index 000000000..70dec3898
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-029-a_variable_with_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 29
+ line: 105
+ name: a variable with emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-030-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-030-a_variable_with_emoji].out
new file mode 100644
index 000000000..1ba9d617a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-030-a_variable_with_emoji].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 30
+ line: 105
+ name: a variable with emoji
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-041-short_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-041-short_keyword_argument].out
new file mode 100644
index 000000000..bc3a80d99
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-041-short_keyword_argument].out
@@ -0,0 +1,50 @@
+data: !GeneratedTestData
+ character: 41
+ line: 111
+ name: short keyword argument
+result:
+- !Location
+ range:
+ end:
+ character: 22
+ line: 23
+ start:
+ character: 21
+ line: 23
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 42
+ line: 70
+ start:
+ character: 41
+ line: 70
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 42
+ line: 143
+ start:
+ character: 41
+ line: 143
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 42
+ line: 235
+ start:
+ character: 41
+ line: 235
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 42
+ line: 111
+ start:
+ character: 41
+ line: 111
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-048-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-048-keyword_argument_with_spaces].out
new file mode 100644
index 000000000..dfb4c1523
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-048-keyword_argument_with_spaces].out
@@ -0,0 +1,50 @@
+data: !GeneratedTestData
+ character: 48
+ line: 111
+ name: keyword argument with spaces
+result:
+- !Location
+ range:
+ end:
+ character: 40
+ line: 23
+ start:
+ character: 29
+ line: 23
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 59
+ line: 70
+ start:
+ character: 48
+ line: 70
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 143
+ start:
+ character: 48
+ line: 143
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 235
+ start:
+ character: 48
+ line: 235
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 111
+ start:
+ character: 48
+ line: 111
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-053-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-053-keyword_argument_with_spaces].out
new file mode 100644
index 000000000..af79ccb36
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-053-keyword_argument_with_spaces].out
@@ -0,0 +1,50 @@
+data: !GeneratedTestData
+ character: 53
+ line: 111
+ name: keyword argument with spaces
+result:
+- !Location
+ range:
+ end:
+ character: 40
+ line: 23
+ start:
+ character: 29
+ line: 23
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 59
+ line: 70
+ start:
+ character: 48
+ line: 70
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 143
+ start:
+ character: 48
+ line: 143
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 235
+ start:
+ character: 48
+ line: 235
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 111
+ start:
+ character: 48
+ line: 111
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-058-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-058-keyword_argument_with_spaces].out
new file mode 100644
index 000000000..c1e1a5fd1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-058-keyword_argument_with_spaces].out
@@ -0,0 +1,50 @@
+data: !GeneratedTestData
+ character: 58
+ line: 111
+ name: keyword argument with spaces
+result:
+- !Location
+ range:
+ end:
+ character: 40
+ line: 23
+ start:
+ character: 29
+ line: 23
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 59
+ line: 70
+ start:
+ character: 48
+ line: 70
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 143
+ start:
+ character: 48
+ line: 143
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 235
+ start:
+ character: 48
+ line: 235
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 111
+ start:
+ character: 48
+ line: 111
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-066-another_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-066-another_keyword_argument].out
new file mode 100644
index 000000000..a33cc95b6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-066-another_keyword_argument].out
@@ -0,0 +1,50 @@
+data: !GeneratedTestData
+ character: 66
+ line: 111
+ name: another keyword argument
+result:
+- !Location
+ range:
+ end:
+ character: 60
+ line: 23
+ start:
+ character: 48
+ line: 23
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 78
+ line: 70
+ start:
+ character: 66
+ line: 70
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 78
+ line: 143
+ start:
+ character: 66
+ line: 143
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 78
+ line: 235
+ start:
+ character: 66
+ line: 235
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 78
+ line: 111
+ start:
+ character: 66
+ line: 111
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-072-another_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-072-another_keyword_argument].out
new file mode 100644
index 000000000..7212ab40b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-072-another_keyword_argument].out
@@ -0,0 +1,50 @@
+data: !GeneratedTestData
+ character: 72
+ line: 111
+ name: another keyword argument
+result:
+- !Location
+ range:
+ end:
+ character: 60
+ line: 23
+ start:
+ character: 48
+ line: 23
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 78
+ line: 70
+ start:
+ character: 66
+ line: 70
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 78
+ line: 143
+ start:
+ character: 66
+ line: 143
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 78
+ line: 235
+ start:
+ character: 66
+ line: 235
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 78
+ line: 111
+ start:
+ character: 66
+ line: 111
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-077-another_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-077-another_keyword_argument].out
new file mode 100644
index 000000000..7f551db09
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-077-another_keyword_argument].out
@@ -0,0 +1,50 @@
+data: !GeneratedTestData
+ character: 77
+ line: 111
+ name: another keyword argument
+result:
+- !Location
+ range:
+ end:
+ character: 60
+ line: 23
+ start:
+ character: 48
+ line: 23
+ uri: resources/firstresource.resource
+- !Location
+ range:
+ end:
+ character: 78
+ line: 70
+ start:
+ character: 66
+ line: 70
+ uri: tests/document_highlight.robot
+- !Location
+ range:
+ end:
+ character: 78
+ line: 143
+ start:
+ character: 66
+ line: 143
+ uri: tests/goto.robot
+- !Location
+ range:
+ end:
+ character: 78
+ line: 235
+ start:
+ character: 66
+ line: 235
+ uri: tests/hover.robot
+- !Location
+ range:
+ end:
+ character: 78
+ line: 111
+ start:
+ character: 66
+ line: 111
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-001-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-001-Embedded_keyword].out
new file mode 100644
index 000000000..8dc95fd2e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-001-Embedded_keyword].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 1
+ line: 125
+ name: Embedded keyword
+result:
+- !Location
+ range:
+ end:
+ character: 25
+ line: 77
+ start:
+ character: 4
+ line: 77
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 80
+ start:
+ character: 4
+ line: 80
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 125
+ start:
+ character: 0
+ line: 125
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-002-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-002-Embedded_keyword].out
new file mode 100644
index 000000000..53fd29e34
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-002-Embedded_keyword].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 2
+ line: 125
+ name: Embedded keyword
+result:
+- !Location
+ range:
+ end:
+ character: 25
+ line: 77
+ start:
+ character: 4
+ line: 77
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 29
+ line: 80
+ start:
+ character: 4
+ line: 80
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 125
+ start:
+ character: 0
+ line: 125
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-006-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-006-Embedded_keyword].out
new file mode 100644
index 000000000..6e0ad34f1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-006-Embedded_keyword].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 6
+ line: 125
+ name: Embedded keyword
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 125
+ start:
+ character: 6
+ line: 125
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 128
+ start:
+ character: 19
+ line: 128
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-009-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-009-Embedded_keyword].out
new file mode 100644
index 000000000..6ea557253
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-009-Embedded_keyword].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 9
+ line: 125
+ name: Embedded keyword
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 125
+ start:
+ character: 6
+ line: 125
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 128
+ start:
+ character: 19
+ line: 128
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-011-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-011-Embedded_keyword].out
new file mode 100644
index 000000000..84f559377
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-011-Embedded_keyword].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 11
+ line: 125
+ name: Embedded keyword
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 125
+ start:
+ character: 6
+ line: 125
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 128
+ start:
+ character: 19
+ line: 128
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-019-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-019-embedded_argument_usage].out
new file mode 100644
index 000000000..25c80c33f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-019-embedded_argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 19
+ line: 128
+ name: embedded argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 125
+ start:
+ character: 6
+ line: 125
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 128
+ start:
+ character: 19
+ line: 128
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-022-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-022-embedded_argument_usage].out
new file mode 100644
index 000000000..0606ae371
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-022-embedded_argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 22
+ line: 128
+ name: embedded argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 125
+ start:
+ character: 6
+ line: 125
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 128
+ start:
+ character: 19
+ line: 128
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-024-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-024-embedded_argument_usage].out
new file mode 100644
index 000000000..adb9dd44b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-024-embedded_argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 24
+ line: 128
+ name: embedded argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 125
+ start:
+ character: 6
+ line: 125
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 128
+ start:
+ character: 19
+ line: 128
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-038-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-038-embedded_argument_usage].out
new file mode 100644
index 000000000..c5cb2bbf8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-038-embedded_argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 38
+ line: 128
+ name: embedded argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 37
+ line: 125
+ start:
+ character: 32
+ line: 125
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 128
+ start:
+ character: 38
+ line: 128
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-040-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-040-embedded_argument_usage].out
new file mode 100644
index 000000000..0fd660965
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-040-embedded_argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 40
+ line: 128
+ name: embedded argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 37
+ line: 125
+ start:
+ character: 32
+ line: 125
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 128
+ start:
+ character: 38
+ line: 128
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-042-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-042-embedded_argument_usage].out
new file mode 100644
index 000000000..572997b9b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-042-embedded_argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 42
+ line: 128
+ name: embedded argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 37
+ line: 125
+ start:
+ character: 32
+ line: 125
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 128
+ start:
+ character: 38
+ line: 128
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-132-001-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-132-001-Embedded_keyword].out
new file mode 100644
index 000000000..113e922d2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-132-001-Embedded_keyword].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 1
+ line: 132
+ name: Embedded keyword
+result:
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 132
+ start:
+ character: 0
+ line: 132
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-132-002-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-132-002-Embedded_keyword].out
new file mode 100644
index 000000000..2bfb4b3a6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-132-002-Embedded_keyword].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 2
+ line: 132
+ name: Embedded keyword
+result:
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 132
+ start:
+ character: 0
+ line: 132
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-137-001-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-137-001-Embedded_keyword].out
new file mode 100644
index 000000000..83c0a620f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-137-001-Embedded_keyword].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 1
+ line: 137
+ name: Embedded keyword
+result:
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 137
+ start:
+ character: 0
+ line: 137
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-137-002-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-137-002-Embedded_keyword].out
new file mode 100644
index 000000000..0d146e5de
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-137-002-Embedded_keyword].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 2
+ line: 137
+ name: Embedded keyword
+result:
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 137
+ start:
+ character: 0
+ line: 137
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-001-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-001-Embedded_keyword].out
new file mode 100644
index 000000000..1e77e37ef
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-001-Embedded_keyword].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 1
+ line: 141
+ name: Embedded keyword
+result:
+- !Location
+ range:
+ end:
+ character: 32
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 95
+ start:
+ character: 4
+ line: 95
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 0
+ line: 141
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-017-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-017-Embedded_keyword].out
new file mode 100644
index 000000000..4d4916d40
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-017-Embedded_keyword].out
@@ -0,0 +1,59 @@
+data: !GeneratedTestData
+ character: 17
+ line: 141
+ name: Embedded keyword
+result:
+- !Location
+ range:
+ end:
+ character: 32
+ line: 82
+ start:
+ character: 4
+ line: 82
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 91
+ start:
+ character: 4
+ line: 91
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 25
+ line: 93
+ start:
+ character: 4
+ line: 93
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 36
+ line: 95
+ start:
+ character: 4
+ line: 95
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 98
+ start:
+ character: 4
+ line: 98
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 0
+ line: 141
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-033-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-033-Embedded_keyword].out
new file mode 100644
index 000000000..ca271ca5f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-033-Embedded_keyword].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 33
+ line: 141
+ name: Embedded keyword
+result:
+- !Location
+ range:
+ end:
+ character: 33
+ line: 141
+ start:
+ character: 28
+ line: 141
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 41
+ line: 143
+ start:
+ character: 36
+ line: 143
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-145-001-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-145-001-Embedded_keyword].out
new file mode 100644
index 000000000..ceab6d332
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-145-001-Embedded_keyword].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 1
+ line: 145
+ name: Embedded keyword
+result:
+- !Location
+ range:
+ end:
+ character: 35
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 30
+ line: 88
+ start:
+ character: 4
+ line: 88
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 145
+ start:
+ character: 0
+ line: 145
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-145-002-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-145-002-Embedded_keyword].out
new file mode 100644
index 000000000..40a1f9dbe
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-145-002-Embedded_keyword].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 2
+ line: 145
+ name: Embedded keyword
+result:
+- !Location
+ range:
+ end:
+ character: 35
+ line: 85
+ start:
+ character: 4
+ line: 85
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 30
+ line: 88
+ start:
+ character: 4
+ line: 88
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 31
+ line: 145
+ start:
+ character: 0
+ line: 145
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-021-another_argument].out
new file mode 100644
index 000000000..a0dfc0bdf
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-021-another_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 21
+ line: 150
+ name: another argument
+result:
+- !Location
+ range:
+ end:
+ character: 26
+ line: 150
+ start:
+ character: 21
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 155
+ start:
+ character: 13
+ line: 155
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-023-another_argument].out
new file mode 100644
index 000000000..b8984c3ef
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-023-another_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 23
+ line: 150
+ name: another argument
+result:
+- !Location
+ range:
+ end:
+ character: 26
+ line: 150
+ start:
+ character: 21
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 155
+ start:
+ character: 13
+ line: 155
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-025-another_argument].out
new file mode 100644
index 000000000..1e441d53a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-025-another_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 25
+ line: 150
+ name: another argument
+result:
+- !Location
+ range:
+ end:
+ character: 26
+ line: 150
+ start:
+ character: 21
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 155
+ start:
+ character: 13
+ line: 155
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-030-a_default_value].out
new file mode 100644
index 000000000..b199916ef
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-030-a_default_value].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 30
+ line: 150
+ name: a default value
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-032-a_default_value].out
new file mode 100644
index 000000000..48f4abf8f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-032-a_default_value].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 32
+ line: 150
+ name: a default value
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-034-a_default_value].out
new file mode 100644
index 000000000..0f223c5db
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-034-a_default_value].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 34
+ line: 150
+ name: a default value
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-153-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-153-013-argument_usage].out
new file mode 100644
index 000000000..98da93b5d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-153-013-argument_usage].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 13
+ line: 153
+ name: argument usage
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-153-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-153-014-argument_usage].out
new file mode 100644
index 000000000..158574e8d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-153-014-argument_usage].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 14
+ line: 153
+ name: argument usage
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-013-argument_usage].out
new file mode 100644
index 000000000..8d47dd7c7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-013-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 13
+ line: 155
+ name: argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 26
+ line: 150
+ start:
+ character: 21
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 155
+ start:
+ character: 13
+ line: 155
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-015-argument_usage].out
new file mode 100644
index 000000000..54cbd6da2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-015-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 15
+ line: 155
+ name: argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 26
+ line: 150
+ start:
+ character: 21
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 155
+ start:
+ character: 13
+ line: 155
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-017-argument_usage].out
new file mode 100644
index 000000000..a47751758
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-017-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 17
+ line: 155
+ name: argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 26
+ line: 150
+ start:
+ character: 21
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 155
+ start:
+ character: 13
+ line: 155
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-021-an_argument].out
new file mode 100644
index 000000000..4ce016f85
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-021-an_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 21
+ line: 159
+ name: an argument
+result:
+- !Location
+ range:
+ end:
+ character: 23
+ line: 159
+ start:
+ character: 21
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 163
+ start:
+ character: 13
+ line: 163
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-022-an_argument].out
new file mode 100644
index 000000000..1d27c1b56
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-022-an_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 22
+ line: 159
+ name: an argument
+result:
+- !Location
+ range:
+ end:
+ character: 23
+ line: 159
+ start:
+ character: 21
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 163
+ start:
+ character: 13
+ line: 163
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-030-another_argument].out
new file mode 100644
index 000000000..47f0fe2e5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-030-another_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 30
+ line: 159
+ name: another argument
+result:
+- !Location
+ range:
+ end:
+ character: 35
+ line: 159
+ start:
+ character: 30
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 165
+ start:
+ character: 13
+ line: 165
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-032-another_argument].out
new file mode 100644
index 000000000..d25e0a6af
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-032-another_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 32
+ line: 159
+ name: another argument
+result:
+- !Location
+ range:
+ end:
+ character: 35
+ line: 159
+ start:
+ character: 30
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 165
+ start:
+ character: 13
+ line: 165
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-034-another_argument].out
new file mode 100644
index 000000000..b5196aadf
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-034-another_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 34
+ line: 159
+ name: another argument
+result:
+- !Location
+ range:
+ end:
+ character: 35
+ line: 159
+ start:
+ character: 30
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 165
+ start:
+ character: 13
+ line: 165
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-039-a_default_value].out
new file mode 100644
index 000000000..be2df13d4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-039-a_default_value].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 39
+ line: 159
+ name: a default value
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-041-a_default_value].out
new file mode 100644
index 000000000..6dbf5c957
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-041-a_default_value].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 41
+ line: 159
+ name: a default value
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-043-a_default_value].out
new file mode 100644
index 000000000..190ab00e7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-043-a_default_value].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 43
+ line: 159
+ name: a default value
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-163-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-163-013-argument_usage].out
new file mode 100644
index 000000000..1c46f9fad
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-163-013-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 13
+ line: 163
+ name: argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 23
+ line: 159
+ start:
+ character: 21
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 163
+ start:
+ character: 13
+ line: 163
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-163-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-163-014-argument_usage].out
new file mode 100644
index 000000000..772b36201
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-163-014-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 14
+ line: 163
+ name: argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 23
+ line: 159
+ start:
+ character: 21
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 163
+ start:
+ character: 13
+ line: 163
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-013-argument_usage].out
new file mode 100644
index 000000000..799c1aa9e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-013-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 13
+ line: 165
+ name: argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 35
+ line: 159
+ start:
+ character: 30
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 165
+ start:
+ character: 13
+ line: 165
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-015-argument_usage].out
new file mode 100644
index 000000000..5e9328365
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-015-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 15
+ line: 165
+ name: argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 35
+ line: 159
+ start:
+ character: 30
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 165
+ start:
+ character: 13
+ line: 165
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-017-argument_usage].out
new file mode 100644
index 000000000..212e83726
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-017-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 17
+ line: 165
+ name: argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 35
+ line: 159
+ start:
+ character: 30
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 165
+ start:
+ character: 13
+ line: 165
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-021-an_argument].out
new file mode 100644
index 000000000..0edd6e0ab
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-021-an_argument].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 21
+ line: 169
+ name: an argument
+result:
+- !Location
+ range:
+ end:
+ character: 22
+ line: 169
+ start:
+ character: 21
+ line: 169
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 169
+ start:
+ character: 34
+ line: 169
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 14
+ line: 173
+ start:
+ character: 13
+ line: 173
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-029-another_argument].out
new file mode 100644
index 000000000..60d5f1182
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-029-another_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 29
+ line: 169
+ name: another argument
+result:
+- !Location
+ range:
+ end:
+ character: 30
+ line: 169
+ start:
+ character: 29
+ line: 169
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 14
+ line: 175
+ start:
+ character: 13
+ line: 175
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-034-argument_usage_in_argument].out
new file mode 100644
index 000000000..9c77132dd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-034-argument_usage_in_argument].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 34
+ line: 169
+ name: argument usage in argument
+result:
+- !Location
+ range:
+ end:
+ character: 22
+ line: 169
+ start:
+ character: 21
+ line: 169
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 169
+ start:
+ character: 34
+ line: 169
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 14
+ line: 173
+ start:
+ character: 13
+ line: 173
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-173-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-173-013-argument_usage].out
new file mode 100644
index 000000000..8ef733282
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-173-013-argument_usage].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 13
+ line: 173
+ name: argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 22
+ line: 169
+ start:
+ character: 21
+ line: 169
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 169
+ start:
+ character: 34
+ line: 169
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 14
+ line: 173
+ start:
+ character: 13
+ line: 173
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-175-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-175-013-argument_usage].out
new file mode 100644
index 000000000..4d932b594
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-175-013-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 13
+ line: 175
+ name: argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 30
+ line: 169
+ start:
+ character: 29
+ line: 169
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 14
+ line: 175
+ start:
+ character: 13
+ line: 175
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-051-a_global_var_in_doc].out
new file mode 100644
index 000000000..68b155fb1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-051-a_global_var_in_doc].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 51
+ line: 179
+ name: a global var in doc
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-053-a_global_var_in_doc].out
new file mode 100644
index 000000000..0fd621723
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-053-a_global_var_in_doc].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 53
+ line: 179
+ name: a global var in doc
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-055-a_global_var_in_doc].out
new file mode 100644
index 000000000..428bf9c49
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-055-a_global_var_in_doc].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 55
+ line: 179
+ name: a global var in doc
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-064-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-064-an_argument_in_doc].out
new file mode 100644
index 000000000..fe6502cfb
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-064-an_argument_in_doc].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 64
+ line: 179
+ name: an argument in doc
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-182-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-182-019-an_argument_in_timeout].out
new file mode 100644
index 000000000..3154435b1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-182-019-an_argument_in_timeout].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 19
+ line: 182
+ name: an argument in timeout
+result:
+- !Location
+ range:
+ end:
+ character: 20
+ line: 182
+ start:
+ character: 19
+ line: 182
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 187
+ start:
+ character: 21
+ line: 187
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 187
+ start:
+ character: 34
+ line: 187
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 14
+ line: 188
+ start:
+ character: 13
+ line: 188
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-016-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-016-an_argument_in_tags].out
new file mode 100644
index 000000000..d874d99f9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-016-an_argument_in_tags].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 16
+ line: 184
+ name: an argument in tags
+result:
+- !Location
+ range:
+ end:
+ character: 18
+ line: 184
+ start:
+ character: 14
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 199
+ start:
+ character: 14
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-023-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-023-an_argument_in_tags].out
new file mode 100644
index 000000000..618aec3a1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-023-an_argument_in_tags].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 23
+ line: 184
+ name: an argument in tags
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-025-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-025-an_argument_in_tags].out
new file mode 100644
index 000000000..c3ad4c5e1
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-025-an_argument_in_tags].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 25
+ line: 184
+ name: an argument in tags
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-027-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-027-an_argument_in_tags].out
new file mode 100644
index 000000000..b32a9e12f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-027-an_argument_in_tags].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 27
+ line: 184
+ name: an argument in tags
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-051-a_global_var_in_doc].out
new file mode 100644
index 000000000..70c37b6aa
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-051-a_global_var_in_doc].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 51
+ line: 194
+ name: a global var in doc
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-053-a_global_var_in_doc].out
new file mode 100644
index 000000000..0b8aa857f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-053-a_global_var_in_doc].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 53
+ line: 194
+ name: a global var in doc
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-055-a_global_var_in_doc].out
new file mode 100644
index 000000000..aff6fec66
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-055-a_global_var_in_doc].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 55
+ line: 194
+ name: a global var in doc
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-064-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-064-an_argument_in_doc].out
new file mode 100644
index 000000000..891646986
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-064-an_argument_in_doc].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 64
+ line: 194
+ name: an argument in doc
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-197-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-197-019-an_argument_in_timeout].out
new file mode 100644
index 000000000..48e797947
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-197-019-an_argument_in_timeout].out
@@ -0,0 +1,50 @@
+data: !GeneratedTestData
+ character: 19
+ line: 197
+ name: an argument in timeout
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 192
+ start:
+ character: 6
+ line: 192
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 193
+ start:
+ character: 21
+ line: 193
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 193
+ start:
+ character: 34
+ line: 193
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 20
+ line: 197
+ start:
+ character: 19
+ line: 197
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 14
+ line: 202
+ start:
+ character: 13
+ line: 202
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-016-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-016-an_argument_in_tags].out
new file mode 100644
index 000000000..53ec66aa5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-016-an_argument_in_tags].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 16
+ line: 199
+ name: an argument in tags
+result:
+- !Location
+ range:
+ end:
+ character: 18
+ line: 184
+ start:
+ character: 14
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 18
+ line: 199
+ start:
+ character: 14
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-023-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-023-an_argument_in_tags].out
new file mode 100644
index 000000000..51f3e8e2d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-023-an_argument_in_tags].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 23
+ line: 199
+ name: an argument in tags
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-025-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-025-an_argument_in_tags].out
new file mode 100644
index 000000000..aad3df616
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-025-an_argument_in_tags].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 25
+ line: 199
+ name: an argument in tags
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-027-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-027-an_argument_in_tags].out
new file mode 100644
index 000000000..72a4e6dad
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-027-an_argument_in_tags].out
@@ -0,0 +1,113 @@
+data: !GeneratedTestData
+ character: 27
+ line: 199
+ name: an argument in tags
+result:
+- !Location
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 32
+ start:
+ character: 38
+ line: 32
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 54
+ line: 34
+ start:
+ character: 49
+ line: 34
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 21
+ line: 36
+ start:
+ character: 16
+ line: 36
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 32
+ line: 38
+ start:
+ character: 27
+ line: 38
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 40
+ start:
+ character: 35
+ line: 40
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 150
+ start:
+ character: 30
+ line: 150
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 44
+ line: 159
+ start:
+ character: 39
+ line: 159
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 179
+ start:
+ character: 51
+ line: 179
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 184
+ start:
+ character: 23
+ line: 184
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 56
+ line: 194
+ start:
+ character: 51
+ line: 194
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 28
+ line: 199
+ start:
+ character: 23
+ line: 199
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-027-a_local_variable_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-027-a_local_variable_in_teardown].out
new file mode 100644
index 000000000..9b6290aa7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-027-a_local_variable_in_teardown].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 27
+ line: 206
+ name: a local variable in teardown
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 205
+ start:
+ character: 6
+ line: 205
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 206
+ start:
+ character: 27
+ line: 206
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-030-a_local_variable_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-030-a_local_variable_in_teardown].out
new file mode 100644
index 000000000..1d089f446
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-030-a_local_variable_in_teardown].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 30
+ line: 206
+ name: a local variable in teardown
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 205
+ start:
+ character: 6
+ line: 205
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 206
+ start:
+ character: 27
+ line: 206
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-032-a_local_variable_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-032-a_local_variable_in_teardown].out
new file mode 100644
index 000000000..fcde94b3c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-032-a_local_variable_in_teardown].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 32
+ line: 206
+ name: a local variable in teardown
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 205
+ start:
+ character: 6
+ line: 205
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 33
+ line: 206
+ start:
+ character: 27
+ line: 206
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-013-counter_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-013-counter_variable].out
new file mode 100644
index 000000000..564119bdc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-013-counter_variable].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 13
+ line: 210
+ name: counter variable
+result:
+- !Location
+ range:
+ end:
+ character: 20
+ line: 210
+ start:
+ character: 13
+ line: 210
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 213
+ start:
+ character: 28
+ line: 213
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 215
+ start:
+ character: 17
+ line: 215
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 215
+ start:
+ character: 31
+ line: 215
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-016-counter_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-016-counter_variable].out
new file mode 100644
index 000000000..5ac271072
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-016-counter_variable].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 16
+ line: 210
+ name: counter variable
+result:
+- !Location
+ range:
+ end:
+ character: 20
+ line: 210
+ start:
+ character: 13
+ line: 210
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 213
+ start:
+ character: 28
+ line: 213
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 215
+ start:
+ character: 17
+ line: 215
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 215
+ start:
+ character: 31
+ line: 215
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-019-counter_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-019-counter_variable].out
new file mode 100644
index 000000000..527108aa9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-019-counter_variable].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 19
+ line: 210
+ name: counter variable
+result:
+- !Location
+ range:
+ end:
+ character: 20
+ line: 210
+ start:
+ character: 13
+ line: 210
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 213
+ start:
+ character: 28
+ line: 213
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 215
+ start:
+ character: 17
+ line: 215
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 215
+ start:
+ character: 31
+ line: 215
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-028-counter_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-028-counter_variable_usage].out
new file mode 100644
index 000000000..b1fb6dc1c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-028-counter_variable_usage].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 28
+ line: 213
+ name: counter variable usage
+result:
+- !Location
+ range:
+ end:
+ character: 20
+ line: 210
+ start:
+ character: 13
+ line: 210
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 213
+ start:
+ character: 28
+ line: 213
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 215
+ start:
+ character: 17
+ line: 215
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 215
+ start:
+ character: 31
+ line: 215
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-031-counter_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-031-counter_variable_usage].out
new file mode 100644
index 000000000..c8f2e6cb5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-031-counter_variable_usage].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 31
+ line: 213
+ name: counter variable usage
+result:
+- !Location
+ range:
+ end:
+ character: 20
+ line: 210
+ start:
+ character: 13
+ line: 210
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 213
+ start:
+ character: 28
+ line: 213
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 215
+ start:
+ character: 17
+ line: 215
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 215
+ start:
+ character: 31
+ line: 215
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-034-counter_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-034-counter_variable_usage].out
new file mode 100644
index 000000000..a8de6e19c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-034-counter_variable_usage].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 34
+ line: 213
+ name: counter variable usage
+result:
+- !Location
+ range:
+ end:
+ character: 20
+ line: 210
+ start:
+ character: 13
+ line: 210
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 213
+ start:
+ character: 28
+ line: 213
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 215
+ start:
+ character: 17
+ line: 215
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 215
+ start:
+ character: 31
+ line: 215
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-017-counter_variable_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-017-counter_variable_assignment].out
new file mode 100644
index 000000000..3c2fff8a9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-017-counter_variable_assignment].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 17
+ line: 215
+ name: counter variable assignment
+result:
+- !Location
+ range:
+ end:
+ character: 20
+ line: 210
+ start:
+ character: 13
+ line: 210
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 213
+ start:
+ character: 28
+ line: 213
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 215
+ start:
+ character: 17
+ line: 215
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 215
+ start:
+ character: 31
+ line: 215
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-020-counter_variable_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-020-counter_variable_assignment].out
new file mode 100644
index 000000000..e8a0b7ccc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-020-counter_variable_assignment].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 20
+ line: 215
+ name: counter variable assignment
+result:
+- !Location
+ range:
+ end:
+ character: 20
+ line: 210
+ start:
+ character: 13
+ line: 210
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 213
+ start:
+ character: 28
+ line: 213
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 215
+ start:
+ character: 17
+ line: 215
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 215
+ start:
+ character: 31
+ line: 215
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-023-counter_variable_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-023-counter_variable_assignment].out
new file mode 100644
index 000000000..1dc522776
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-023-counter_variable_assignment].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 23
+ line: 215
+ name: counter variable assignment
+result:
+- !Location
+ range:
+ end:
+ character: 20
+ line: 210
+ start:
+ character: 13
+ line: 210
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 213
+ start:
+ character: 28
+ line: 213
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 215
+ start:
+ character: 17
+ line: 215
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 215
+ start:
+ character: 31
+ line: 215
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-031-another_counter_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-031-another_counter_variable_usage].out
new file mode 100644
index 000000000..2c8f14c8a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-031-another_counter_variable_usage].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 31
+ line: 215
+ name: another counter variable usage
+result:
+- !Location
+ range:
+ end:
+ character: 20
+ line: 210
+ start:
+ character: 13
+ line: 210
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 213
+ start:
+ character: 28
+ line: 213
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 215
+ start:
+ character: 17
+ line: 215
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 215
+ start:
+ character: 31
+ line: 215
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-034-another_counter_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-034-another_counter_variable_usage].out
new file mode 100644
index 000000000..862c5babb
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-034-another_counter_variable_usage].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 34
+ line: 215
+ name: another counter variable usage
+result:
+- !Location
+ range:
+ end:
+ character: 20
+ line: 210
+ start:
+ character: 13
+ line: 210
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 213
+ start:
+ character: 28
+ line: 213
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 215
+ start:
+ character: 17
+ line: 215
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 215
+ start:
+ character: 31
+ line: 215
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-037-another_counter_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-037-another_counter_variable_usage].out
new file mode 100644
index 000000000..fd6be7390
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-037-another_counter_variable_usage].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 37
+ line: 215
+ name: another counter variable usage
+result:
+- !Location
+ range:
+ end:
+ character: 20
+ line: 210
+ start:
+ character: 13
+ line: 210
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 35
+ line: 213
+ start:
+ character: 28
+ line: 213
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 215
+ start:
+ character: 17
+ line: 215
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 38
+ line: 215
+ start:
+ character: 31
+ line: 215
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-020-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-020-an_argument].out
new file mode 100644
index 000000000..48bb44e5f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-020-an_argument].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 20
+ line: 224
+ name: an argument
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-022-an_argument].out
new file mode 100644
index 000000000..7424bb872
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-022-an_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 22
+ line: 224
+ name: an argument
+result:
+- !Location
+ range:
+ end:
+ character: 24
+ line: 224
+ start:
+ character: 21
+ line: 224
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 55
+ line: 226
+ start:
+ character: 52
+ line: 226
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-023-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-023-an_argument].out
new file mode 100644
index 000000000..05e0db4c7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-023-an_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 23
+ line: 224
+ name: an argument
+result:
+- !Location
+ range:
+ end:
+ character: 24
+ line: 224
+ start:
+ character: 21
+ line: 224
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 55
+ line: 226
+ start:
+ character: 52
+ line: 226
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-013-local_variable_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-013-local_variable_definition].out
new file mode 100644
index 000000000..ccda69cee
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-013-local_variable_definition].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 13
+ line: 226
+ name: local variable definition
+result:
+- !Location
+ range:
+ end:
+ character: 19
+ line: 226
+ start:
+ character: 13
+ line: 226
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 229
+ start:
+ character: 13
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 229
+ start:
+ character: 53
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 231
+ start:
+ character: 16
+ line: 231
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-016-local_variable_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-016-local_variable_definition].out
new file mode 100644
index 000000000..5a75a7e64
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-016-local_variable_definition].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 16
+ line: 226
+ name: local variable definition
+result:
+- !Location
+ range:
+ end:
+ character: 19
+ line: 226
+ start:
+ character: 13
+ line: 226
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 229
+ start:
+ character: 13
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 229
+ start:
+ character: 53
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 231
+ start:
+ character: 16
+ line: 231
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-018-local_variable_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-018-local_variable_definition].out
new file mode 100644
index 000000000..21a4a8f9c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-018-local_variable_definition].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 18
+ line: 226
+ name: local variable definition
+result:
+- !Location
+ range:
+ end:
+ character: 19
+ line: 226
+ start:
+ character: 13
+ line: 226
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 229
+ start:
+ character: 13
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 229
+ start:
+ character: 53
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 231
+ start:
+ character: 16
+ line: 231
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-052-an_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-052-an_argument_usage].out
new file mode 100644
index 000000000..32801540c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-052-an_argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 52
+ line: 226
+ name: an argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 24
+ line: 224
+ start:
+ character: 21
+ line: 224
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 55
+ line: 226
+ start:
+ character: 52
+ line: 226
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-053-an_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-053-an_argument_usage].out
new file mode 100644
index 000000000..e42782d46
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-053-an_argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 53
+ line: 226
+ name: an argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 24
+ line: 224
+ start:
+ character: 21
+ line: 224
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 55
+ line: 226
+ start:
+ character: 52
+ line: 226
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-054-an_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-054-an_argument_usage].out
new file mode 100644
index 000000000..dfedde816
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-054-an_argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 54
+ line: 226
+ name: an argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 24
+ line: 224
+ start:
+ character: 21
+ line: 224
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 55
+ line: 226
+ start:
+ character: 52
+ line: 226
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-013-local_variable_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-013-local_variable_assignment].out
new file mode 100644
index 000000000..6a76e92ac
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-013-local_variable_assignment].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 13
+ line: 229
+ name: local variable assignment
+result:
+- !Location
+ range:
+ end:
+ character: 19
+ line: 226
+ start:
+ character: 13
+ line: 226
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 229
+ start:
+ character: 13
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 229
+ start:
+ character: 53
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 231
+ start:
+ character: 16
+ line: 231
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-016-local_variable_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-016-local_variable_assignment].out
new file mode 100644
index 000000000..2ab964cc9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-016-local_variable_assignment].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 16
+ line: 229
+ name: local variable assignment
+result:
+- !Location
+ range:
+ end:
+ character: 19
+ line: 226
+ start:
+ character: 13
+ line: 226
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 229
+ start:
+ character: 13
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 229
+ start:
+ character: 53
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 231
+ start:
+ character: 16
+ line: 231
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-018-local_variable_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-018-local_variable_assignment].out
new file mode 100644
index 000000000..d530a1a19
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-018-local_variable_assignment].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 18
+ line: 229
+ name: local variable assignment
+result:
+- !Location
+ range:
+ end:
+ character: 19
+ line: 226
+ start:
+ character: 13
+ line: 226
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 229
+ start:
+ character: 13
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 229
+ start:
+ character: 53
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 231
+ start:
+ character: 16
+ line: 231
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-016-local_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-016-local_variable_usage].out
new file mode 100644
index 000000000..450b3f8e3
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-016-local_variable_usage].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 16
+ line: 231
+ name: local variable usage
+result:
+- !Location
+ range:
+ end:
+ character: 19
+ line: 226
+ start:
+ character: 13
+ line: 226
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 229
+ start:
+ character: 13
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 229
+ start:
+ character: 53
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 231
+ start:
+ character: 16
+ line: 231
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-019-local_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-019-local_variable_usage].out
new file mode 100644
index 000000000..32c3633b2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-019-local_variable_usage].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 19
+ line: 231
+ name: local variable usage
+result:
+- !Location
+ range:
+ end:
+ character: 19
+ line: 226
+ start:
+ character: 13
+ line: 226
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 229
+ start:
+ character: 13
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 229
+ start:
+ character: 53
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 231
+ start:
+ character: 16
+ line: 231
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-021-local_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-021-local_variable_usage].out
new file mode 100644
index 000000000..41060d93e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-021-local_variable_usage].out
@@ -0,0 +1,41 @@
+data: !GeneratedTestData
+ character: 21
+ line: 231
+ name: local variable usage
+result:
+- !Location
+ range:
+ end:
+ character: 19
+ line: 226
+ start:
+ character: 13
+ line: 226
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 19
+ line: 229
+ start:
+ character: 13
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 59
+ line: 229
+ start:
+ character: 53
+ line: 229
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 231
+ start:
+ character: 16
+ line: 231
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-021-an_argument].out
new file mode 100644
index 000000000..b808fd268
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-021-an_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 21
+ line: 236
+ name: an argument
+result:
+- !Location
+ range:
+ end:
+ character: 28
+ line: 236
+ start:
+ character: 21
+ line: 236
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 39
+ line: 238
+ start:
+ character: 32
+ line: 238
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-024-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-024-an_argument].out
new file mode 100644
index 000000000..f712c7a10
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-024-an_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 24
+ line: 236
+ name: an argument
+result:
+- !Location
+ range:
+ end:
+ character: 28
+ line: 236
+ start:
+ character: 21
+ line: 236
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 39
+ line: 238
+ start:
+ character: 32
+ line: 238
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-027-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-027-an_argument].out
new file mode 100644
index 000000000..351c770bd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-027-an_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 27
+ line: 236
+ name: an argument
+result:
+- !Location
+ range:
+ end:
+ character: 28
+ line: 236
+ start:
+ character: 21
+ line: 236
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 39
+ line: 238
+ start:
+ character: 32
+ line: 238
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-032-argument_usage_in_while_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-032-argument_usage_in_while_option].out
new file mode 100644
index 000000000..4c6d58dcb
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-032-argument_usage_in_while_option].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 32
+ line: 238
+ name: argument usage in while option
+result:
+- !Location
+ range:
+ end:
+ character: 28
+ line: 236
+ start:
+ character: 21
+ line: 236
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 39
+ line: 238
+ start:
+ character: 32
+ line: 238
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-035-argument_usage_in_while_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-035-argument_usage_in_while_option].out
new file mode 100644
index 000000000..4dcd5738b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-035-argument_usage_in_while_option].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 35
+ line: 238
+ name: argument usage in while option
+result:
+- !Location
+ range:
+ end:
+ character: 28
+ line: 236
+ start:
+ character: 21
+ line: 236
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 39
+ line: 238
+ start:
+ character: 32
+ line: 238
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-038-argument_usage_in_while_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-038-argument_usage_in_while_option].out
new file mode 100644
index 000000000..0d1f2005e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-038-argument_usage_in_while_option].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 38
+ line: 238
+ name: argument usage in while option
+result:
+- !Location
+ range:
+ end:
+ character: 28
+ line: 236
+ start:
+ character: 21
+ line: 236
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 39
+ line: 238
+ start:
+ character: 32
+ line: 238
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-017-variable_definition_in_if_block].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-017-variable_definition_in_if_block].out
new file mode 100644
index 000000000..9011c129f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-017-variable_definition_in_if_block].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 17
+ line: 247
+ name: variable definition in if block
+result:
+- !Location
+ range:
+ end:
+ character: 23
+ line: 247
+ start:
+ character: 17
+ line: 247
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 23
+ line: 250
+ start:
+ character: 17
+ line: 250
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 253
+ start:
+ character: 16
+ line: 253
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-020-variable_definition_in_if_block].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-020-variable_definition_in_if_block].out
new file mode 100644
index 000000000..3c43bf2d5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-020-variable_definition_in_if_block].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 20
+ line: 247
+ name: variable definition in if block
+result:
+- !Location
+ range:
+ end:
+ character: 23
+ line: 247
+ start:
+ character: 17
+ line: 247
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 23
+ line: 250
+ start:
+ character: 17
+ line: 250
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 253
+ start:
+ character: 16
+ line: 253
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-022-variable_definition_in_if_block].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-022-variable_definition_in_if_block].out
new file mode 100644
index 000000000..4c7527d6c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-022-variable_definition_in_if_block].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 22
+ line: 247
+ name: variable definition in if block
+result:
+- !Location
+ range:
+ end:
+ character: 23
+ line: 247
+ start:
+ character: 17
+ line: 247
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 23
+ line: 250
+ start:
+ character: 17
+ line: 250
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 253
+ start:
+ character: 16
+ line: 253
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-017-variable_definition_in_else_block].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-017-variable_definition_in_else_block].out
new file mode 100644
index 000000000..f2a957adb
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-017-variable_definition_in_else_block].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 17
+ line: 250
+ name: variable definition in else block
+result:
+- !Location
+ range:
+ end:
+ character: 23
+ line: 247
+ start:
+ character: 17
+ line: 247
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 23
+ line: 250
+ start:
+ character: 17
+ line: 250
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 253
+ start:
+ character: 16
+ line: 253
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-020-variable_definition_in_else_block].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-020-variable_definition_in_else_block].out
new file mode 100644
index 000000000..3d799f123
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-020-variable_definition_in_else_block].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 20
+ line: 250
+ name: variable definition in else block
+result:
+- !Location
+ range:
+ end:
+ character: 23
+ line: 247
+ start:
+ character: 17
+ line: 247
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 23
+ line: 250
+ start:
+ character: 17
+ line: 250
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 253
+ start:
+ character: 16
+ line: 253
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-022-variable_definition_in_else_block].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-022-variable_definition_in_else_block].out
new file mode 100644
index 000000000..d0b3fa1b9
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-022-variable_definition_in_else_block].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 22
+ line: 250
+ name: variable definition in else block
+result:
+- !Location
+ range:
+ end:
+ character: 23
+ line: 247
+ start:
+ character: 17
+ line: 247
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 23
+ line: 250
+ start:
+ character: 17
+ line: 250
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 253
+ start:
+ character: 16
+ line: 253
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-016-variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-016-variable_usage].out
new file mode 100644
index 000000000..91ece1c3e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-016-variable_usage].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 16
+ line: 253
+ name: variable usage
+result:
+- !Location
+ range:
+ end:
+ character: 23
+ line: 247
+ start:
+ character: 17
+ line: 247
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 23
+ line: 250
+ start:
+ character: 17
+ line: 250
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 253
+ start:
+ character: 16
+ line: 253
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-019-variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-019-variable_usage].out
new file mode 100644
index 000000000..5b8063e31
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-019-variable_usage].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 19
+ line: 253
+ name: variable usage
+result:
+- !Location
+ range:
+ end:
+ character: 23
+ line: 247
+ start:
+ character: 17
+ line: 247
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 23
+ line: 250
+ start:
+ character: 17
+ line: 250
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 253
+ start:
+ character: 16
+ line: 253
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-021-variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-021-variable_usage].out
new file mode 100644
index 000000000..4f75e916c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-021-variable_usage].out
@@ -0,0 +1,32 @@
+data: !GeneratedTestData
+ character: 21
+ line: 253
+ name: variable usage
+result:
+- !Location
+ range:
+ end:
+ character: 23
+ line: 247
+ start:
+ character: 17
+ line: 247
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 23
+ line: 250
+ start:
+ character: 17
+ line: 250
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 22
+ line: 253
+ start:
+ character: 16
+ line: 253
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-021-an_argument].out
new file mode 100644
index 000000000..da24a566c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-021-an_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 21
+ line: 258
+ name: an argument
+result:
+- !Location
+ range:
+ end:
+ character: 26
+ line: 258
+ start:
+ character: 21
+ line: 258
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 261
+ start:
+ character: 19
+ line: 261
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-024-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-024-an_argument].out
new file mode 100644
index 000000000..ca5648f88
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-024-an_argument].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 24
+ line: 258
+ name: an argument
+result:
+- !Location
+ range:
+ end:
+ character: 26
+ line: 258
+ start:
+ character: 21
+ line: 258
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 261
+ start:
+ character: 19
+ line: 261
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-027-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-027-an_argument].out
new file mode 100644
index 000000000..a89ebc591
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-027-an_argument].out
@@ -0,0 +1,5 @@
+data: !GeneratedTestData
+ character: 27
+ line: 258
+ name: an argument
+result: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-014-local_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-014-local_variable_usage].out
new file mode 100644
index 000000000..27cc20e14
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-014-local_variable_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 14
+ line: 261
+ name: local variable usage
+result:
+- !Location
+ range:
+ end:
+ character: 12
+ line: 260
+ start:
+ character: 11
+ line: 260
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 15
+ line: 261
+ start:
+ character: 14
+ line: 261
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-019-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-019-argument_usage].out
new file mode 100644
index 000000000..48c0dc3e8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-019-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 19
+ line: 261
+ name: argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 26
+ line: 258
+ start:
+ character: 21
+ line: 258
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 261
+ start:
+ character: 19
+ line: 261
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-021-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-021-argument_usage].out
new file mode 100644
index 000000000..6e6a414a8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-021-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 21
+ line: 261
+ name: argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 26
+ line: 258
+ start:
+ character: 21
+ line: 258
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 261
+ start:
+ character: 19
+ line: 261
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-023-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-023-argument_usage].out
new file mode 100644
index 000000000..4f2479e5b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-023-argument_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 23
+ line: 261
+ name: argument usage
+result:
+- !Location
+ range:
+ end:
+ character: 26
+ line: 258
+ start:
+ character: 21
+ line: 258
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 24
+ line: 261
+ start:
+ character: 19
+ line: 261
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-036-argument_usage_in_while_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-036-argument_usage_in_while_option].out
new file mode 100644
index 000000000..436856538
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-036-argument_usage_in_while_option].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 36
+ line: 261
+ name: argument usage in while option
+result:
+- !Location
+ range:
+ end:
+ character: 40
+ line: 258
+ start:
+ character: 33
+ line: 258
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 261
+ start:
+ character: 36
+ line: 261
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-039-argument_usage_in_while_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-039-argument_usage_in_while_option].out
new file mode 100644
index 000000000..382d344ba
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-039-argument_usage_in_while_option].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 39
+ line: 261
+ name: argument usage in while option
+result:
+- !Location
+ range:
+ end:
+ character: 40
+ line: 258
+ start:
+ character: 33
+ line: 258
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 261
+ start:
+ character: 36
+ line: 261
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-042-argument_usage_in_while_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-042-argument_usage_in_while_option].out
new file mode 100644
index 000000000..a921f1f39
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-042-argument_usage_in_while_option].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 42
+ line: 261
+ name: argument usage in while option
+result:
+- !Location
+ range:
+ end:
+ character: 40
+ line: 258
+ start:
+ character: 33
+ line: 258
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 43
+ line: 261
+ start:
+ character: 36
+ line: 261
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-031-local_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-031-local_variable_usage].out
new file mode 100644
index 000000000..549ecf090
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-031-local_variable_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 31
+ line: 274
+ name: local variable usage
+result:
+- !Location
+ range:
+ end:
+ character: 15
+ line: 269
+ start:
+ character: 6
+ line: 269
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 274
+ start:
+ character: 31
+ line: 274
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-035-local_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-035-local_variable_usage].out
new file mode 100644
index 000000000..1eb1aeaff
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-035-local_variable_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 35
+ line: 274
+ name: local variable usage
+result:
+- !Location
+ range:
+ end:
+ character: 15
+ line: 269
+ start:
+ character: 6
+ line: 269
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 274
+ start:
+ character: 31
+ line: 274
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-039-local_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-039-local_variable_usage].out
new file mode 100644
index 000000000..6f3f9c109
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-039-local_variable_usage].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 39
+ line: 274
+ name: local variable usage
+result:
+- !Location
+ range:
+ end:
+ character: 15
+ line: 269
+ start:
+ character: 6
+ line: 269
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 40
+ line: 274
+ start:
+ character: 31
+ line: 274
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-039-variable_in_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-039-variable_in_option].out
new file mode 100644
index 000000000..a4094017e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-039-variable_in_option].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 39
+ line: 281
+ name: variable in option
+result:
+- !Location
+ range:
+ end:
+ character: 16
+ line: 270
+ start:
+ character: 6
+ line: 270
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 49
+ line: 281
+ start:
+ character: 39
+ line: 281
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-044-variable_in_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-044-variable_in_option].out
new file mode 100644
index 000000000..bf8ea212a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-044-variable_in_option].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 44
+ line: 281
+ name: variable in option
+result:
+- !Location
+ range:
+ end:
+ character: 16
+ line: 270
+ start:
+ character: 6
+ line: 270
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 49
+ line: 281
+ start:
+ character: 39
+ line: 281
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-048-variable_in_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-048-variable_in_option].out
new file mode 100644
index 000000000..080ae62df
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-048-variable_in_option].out
@@ -0,0 +1,23 @@
+data: !GeneratedTestData
+ character: 48
+ line: 281
+ name: variable in option
+result:
+- !Location
+ range:
+ end:
+ character: 16
+ line: 270
+ start:
+ character: 6
+ line: 270
+ uri: tests/references.robot
+- !Location
+ range:
+ end:
+ character: 49
+ line: 281
+ start:
+ character: 39
+ line: 281
+ uri: tests/references.robot
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[__init__.robot].out
new file mode 100644
index 000000000..f17fc64b4
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[__init__.robot].out
@@ -0,0 +1,28 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 1
+ - 0
+ - 8
+ - 23
+ - 0
+ - 0
+ - 12
+ - 22
+ - 51
+ - 0
+ - 2
+ - 0
+ - 11
+ - 24
+ - 0
+ - 0
+ - 14
+ - 26
+ - 37
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[bddstyle.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[bddstyle.robot].out
new file mode 100644
index 000000000..abd63c2b8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[bddstyle.robot].out
@@ -0,0 +1,348 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 14
+ - 33
+ - 1
+ - 0
+ - 14
+ - 8
+ - 36
+ - 0
+ - 0
+ - 8
+ - 12
+ - 33
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 37
+ - 33
+ - 1
+ - 0
+ - 37
+ - 13
+ - 36
+ - 0
+ - 0
+ - 13
+ - 1
+ - 33
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
+ - 1
+ - 0
+ - 31
+ - 33
+ - 1
+ - 0
+ - 31
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
+ - 1
+ - 33
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 3
+ - 0
+ - 2
+ - 33
+ - 1
+ - 0
+ - 6
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 8
+ - 54
+ - 0
+ - 0
+ - 12
+ - 13
+ - 54
+ - 0
+ - 0
+ - 17
+ - 9
+ - 54
+ - 0
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 0
+ - 0
+ - 14
+ - 8
+ - 36
+ - 2048
+ - 0
+ - 9
+ - 11
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 37
+ - 37
+ - 0
+ - 0
+ - 37
+ - 13
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 9
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 8
+ - 36
+ - 2048
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 0
+ - 14
+ - 2
+ - 37
+ - 0
+ - 1
+ - 0
+ - 10
+ - 32
+ - 1
+ - 0
+ - 14
+ - 2
+ - 37
+ - 0
+ - 1
+ - 0
+ - 10
+ - 32
+ - 1
+ - 0
+ - 14
+ - 2
+ - 37
+ - 0
+ - 1
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 0
+ - 0
+ - 14
+ - 4
+ - 35
+ - 2048
+ - 0
+ - 5
+ - 11
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 37
+ - 37
+ - 0
+ - 0
+ - 37
+ - 1
+ - 35
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 10
+ - 35
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 5
+ - 35
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 4
+ - 36
+ - 2048
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[code_action_show_documentation.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[code_action_show_documentation.robot].out
new file mode 100644
index 000000000..63f49473f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[code_action_show_documentation.robot].out
@@ -0,0 +1,1068 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 1
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 16
+ - 11
+ - 51
+ - 0
+ - 2
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 16
+ - 11
+ - 51
+ - 0
+ - 2
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
+ - 22
+ - 51
+ - 0
+ - 2
+ - 0
+ - 9
+ - 23
+ - 0
+ - 0
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
+ - 22
+ - 51
+ - 0
+ - 1
+ - 0
+ - 8
+ - 23
+ - 0
+ - 0
+ - 16
+ - 22
+ - 51
+ - 0
+ - 2
+ - 0
+ - 8
+ - 23
+ - 0
+ - 0
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
+ - 36
+ - 51
+ - 0
+ - 2
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 16
+ - 8
+ - 51
+ - 0
+ - 0
+ - 12
+ - 7
+ - 54
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 15
+ - 9
+ - 23
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
+ - 0
+ - 2
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 16
+ - 8
+ - 51
+ - 0
+ - 0
+ - 12
+ - 7
+ - 54
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 23
+ - 0
+ - 0
+ - 13
+ - 7
+ - 51
+ - 0
+ - 2
+ - 0
+ - 11
+ - 24
+ - 0
+ - 0
+ - 15
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 1024
+ - 2
+ - 0
+ - 10
+ - 24
+ - 0
+ - 0
+ - 14
+ - 14
+ - 37
+ - 1024
+ - 3
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 5
+ - 24
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
+ - 1
+ - 4
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
+ - 2
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 14
+ - 37
+ - 1024
+ - 2
+ - 4
+ - 2
+ - 35
+ - 0
+ - 1
+ - 4
+ - 5
+ - 35
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 1024
+ - 2
+ - 4
+ - 2
+ - 35
+ - 0
+ - 1
+ - 4
+ - 5
+ - 35
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 2
+ - 4
+ - 15
+ - 37
+ - 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 7
+ - 51
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 2
+ - 4
+ - 15
+ - 37
+ - 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
+ - 3
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 5
+ - 24
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 13
+ - 37
+ - 0
+ - 0
+ - 13
+ - 16
+ - 35
+ - 2048
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 13
+ - 37
+ - 0
+ - 0
+ - 13
+ - 19
+ - 35
+ - 2048
+ - 2
+ - 4
+ - 12
+ - 37
+ - 0
+ - 2
+ - 4
+ - 13
+ - 37
+ - 0
+ - 0
+ - 13
+ - 17
+ - 35
+ - 2048
+ - 3
+ - 4
+ - 4
+ - 37
+ - 0
+ - 0
+ - 4
+ - 1
+ - 35
+ - 2048
+ - 0
+ - 2
+ - 9
+ - 37
+ - 0
+ - 0
+ - 9
+ - 6
+ - 35
+ - 2048
+ - 3
+ - 4
+ - 4
+ - 37
+ - 0
+ - 0
+ - 4
+ - 5
+ - 35
+ - 2048
+ - 0
+ - 6
+ - 9
+ - 37
+ - 0
+ - 0
+ - 9
+ - 6
+ - 35
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 37
+ - 0
+ - 0
+ - 4
+ - 14
+ - 35
+ - 2048
+ - 0
+ - 15
+ - 3
+ - 37
+ - 0
+ - 0
+ - 3
+ - 6
+ - 35
+ - 2048
+ - 2
+ - 4
+ - 7
+ - 37
+ - 0
+ - 0
+ - 7
+ - 10
+ - 36
+ - 2048
+ - 0
+ - 11
+ - 13
+ - 37
+ - 0
+ - 3
+ - 4
+ - 21
+ - 37
+ - 0
+ - 2
+ - 4
+ - 21
+ - 37
+ - 0
+ - 0
+ - 25
+ - 19
+ - 17
+ - 0
+ - 2
+ - 4
+ - 4
+ - 37
+ - 0
+ - 0
+ - 4
+ - 18
+ - 35
+ - 2048
+ - 0
+ - 19
+ - 3
+ - 37
+ - 0
+ - 0
+ - 3
+ - 6
+ - 35
+ - 2048
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 4
+ - 37
+ - 0
+ - 2
+ - 4
+ - 4
+ - 37
+ - 0
+ - 2
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 13
+ - 33
+ - 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 2
+ - 4
+ - 12
+ - 37
+ - 0
+ - 0
+ - 17
+ - 7
+ - 36
+ - 0
+ - 2
+ - 0
+ - 12
+ - 33
+ - 1
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 7
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
+ - 3
+ - 0
+ - 4
+ - 33
+ - 1
+ - 0
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
+ - 10
+ - 33
+ - 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 2
+ - 5
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 4
+ - 33
+ - 1
+ - 0
+ - 4
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
+ - 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 4
+ - 33
+ - 1
+ - 0
+ - 4
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
+ - 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 4
+ - 33
+ - 1
+ - 0
+ - 4
+ - 18
+ - 36
+ - 0
+ - 0
+ - 18
+ - 4
+ - 33
+ - 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 7
+ - 33
+ - 1
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 10
+ - 14
+ - 33
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 21
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 8
+ - 7
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 27
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 5
+ - 54
+ - 0
+ - 0
+ - 9
+ - 8
+ - 7
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 27
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 54
+ - 0
+ - 0
+ - 8
+ - 4
+ - 7
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[document_highlight.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[document_highlight.robot].out
new file mode 100644
index 000000000..f92227379
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[document_highlight.robot].out
@@ -0,0 +1,1203 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 1
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 16
+ - 11
+ - 51
+ - 0
+ - 1
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
+ - 22
+ - 51
+ - 0
+ - 2
+ - 0
+ - 9
+ - 23
+ - 0
+ - 0
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
+ - 22
+ - 51
+ - 0
+ - 2
+ - 0
+ - 8
+ - 23
+ - 0
+ - 0
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
+ - 36
+ - 51
+ - 0
+ - 3
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 16
+ - 8
+ - 51
+ - 0
+ - 0
+ - 12
+ - 7
+ - 54
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 15
+ - 9
+ - 23
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
+ - 0
+ - 1
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 16
+ - 8
+ - 51
+ - 0
+ - 0
+ - 12
+ - 7
+ - 54
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 23
+ - 0
+ - 0
+ - 13
+ - 7
+ - 51
+ - 0
+ - 4
+ - 0
+ - 11
+ - 24
+ - 0
+ - 0
+ - 15
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 1024
+ - 2
+ - 0
+ - 10
+ - 24
+ - 0
+ - 0
+ - 14
+ - 14
+ - 37
+ - 1024
+ - 3
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 5
+ - 24
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
+ - 3
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 14
+ - 37
+ - 1024
+ - 2
+ - 4
+ - 2
+ - 35
+ - 0
+ - 1
+ - 4
+ - 5
+ - 35
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 1024
+ - 2
+ - 4
+ - 2
+ - 35
+ - 0
+ - 1
+ - 4
+ - 5
+ - 35
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 2
+ - 4
+ - 15
+ - 37
+ - 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 7
+ - 51
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 3
+ - 4
+ - 15
+ - 37
+ - 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
+ - 3
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 21
+ - 37
+ - 0
+ - 1
+ - 4
+ - 27
+ - 37
+ - 0
+ - 1
+ - 4
+ - 27
+ - 37
+ - 0
+ - 1
+ - 4
+ - 13
+ - 51
+ - 0
+ - 0
+ - 13
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 19
+ - 37
+ - 0
+ - 0
+ - 23
+ - 1
+ - 54
+ - 0
+ - 0
+ - 1
+ - 1
+ - 21
+ - 0
+ - 0
+ - 6
+ - 11
+ - 54
+ - 0
+ - 0
+ - 11
+ - 1
+ - 21
+ - 0
+ - 0
+ - 7
+ - 12
+ - 54
+ - 0
+ - 0
+ - 12
+ - 1
+ - 21
+ - 0
+ - 5
+ - 4
+ - 11
+ - 51
+ - 0
+ - 0
+ - 11
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 4
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 4
+ - 37
+ - 0
+ - 2
+ - 4
+ - 4
+ - 37
+ - 0
+ - 3
+ - 0
+ - 7
+ - 32
+ - 1
+ - 1
+ - 4
+ - 2
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 7
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 2
+ - 34
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 7
+ - 34
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 2
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 7
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 11
+ - 4
+ - 34
+ - 0
+ - 0
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 4
+ - 4
+ - 2
+ - 34
+ - 0
+ - 0
+ - 10
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 7
+ - 34
+ - 0
+ - 0
+ - 17
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 11
+ - 4
+ - 34
+ - 0
+ - 0
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 5
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 21
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 8
+ - 7
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 3
+ - 0
+ - 27
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 5
+ - 54
+ - 0
+ - 0
+ - 9
+ - 8
+ - 7
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
+ - 4
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 3
+ - 0
+ - 27
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 54
+ - 0
+ - 0
+ - 8
+ - 4
+ - 7
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 7
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
+ - 4
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 3
+ - 4
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 18
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 15
+ - 38
+ - 1024
+ - 0
+ - 19
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 24
+ - 15
+ - 38
+ - 1024
+ - 0
+ - 19
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 18
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 11
+ - 38
+ - 1024
+ - 0
+ - 15
+ - 4
+ - 38
+ - 0
+ - 0
+ - 8
+ - 7
+ - 36
+ - 0
+ - 3
+ - 0
+ - 4
+ - 33
+ - 1
+ - 0
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
+ - 10
+ - 33
+ - 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
+ - 4
+ - 0
+ - 49
+ - 33
+ - 1
+ - 4
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 7
+ - 24
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 24
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 15
+ - 7
+ - 0
+ - 0
+ - 15
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ - 2
+ - 0
+ - 65
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 15
+ - 7
+ - 0
+ - 0
+ - 15
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
+ - 4
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 7
+ - 24
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 24
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[duplicated_resources.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[duplicated_resources.robot].out
new file mode 100644
index 000000000..413d2bcd8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[duplicated_resources.robot].out
@@ -0,0 +1,148 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 2
+ - 0
+ - 8
+ - 23
+ - 0
+ - 0
+ - 18
+ - 41
+ - 51
+ - 0
+ - 1
+ - 0
+ - 8
+ - 23
+ - 0
+ - 0
+ - 18
+ - 41
+ - 51
+ - 0
+ - 1
+ - 0
+ - 8
+ - 23
+ - 0
+ - 0
+ - 18
+ - 28
+ - 51
+ - 0
+ - 2
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 10
+ - 11
+ - 51
+ - 0
+ - 1
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 11
+ - 8
+ - 51
+ - 0
+ - 2
+ - 0
+ - 9
+ - 23
+ - 0
+ - 0
+ - 13
+ - 11
+ - 51
+ - 0
+ - 1
+ - 0
+ - 9
+ - 23
+ - 0
+ - 0
+ - 12
+ - 14
+ - 51
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 20
+ - 37
+ - 0
+ - 1
+ - 4
+ - 20
+ - 37
+ - 0
+ - 1
+ - 4
+ - 18
+ - 37
+ - 0
+ - 1
+ - 4
+ - 10
+ - 51
+ - 0
+ - 0
+ - 10
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 20
+ - 37
+ - 0
+ - 1
+ - 4
+ - 10
+ - 51
+ - 0
+ - 0
+ - 10
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 20
+ - 37
+ - 0
+ - 1
+ - 4
+ - 10
+ - 51
+ - 0
+ - 0
+ - 10
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 18
+ - 37
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[external_libray.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[external_libray.robot].out
new file mode 100644
index 000000000..60f2a2488
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[external_libray.robot].out
@@ -0,0 +1,58 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 1
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 11
+ - 11
+ - 51
+ - 0
+ - 1
+ - 0
+ - 8
+ - 23
+ - 0
+ - 0
+ - 12
+ - 22
+ - 51
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 17
+ - 37
+ - 0
+ - 1
+ - 4
+ - 13
+ - 51
+ - 0
+ - 0
+ - 13
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 26
+ - 37
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[foldingrange.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[foldingrange.robot].out
new file mode 100644
index 000000000..4ffb0b878
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[foldingrange.robot].out
@@ -0,0 +1,398 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 3
+ - 0
+ - 3
+ - 41
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 3
+ - 0
+ - 5
+ - 32
+ - 1
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 9
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 2
+ - 44
+ - 0
+ - 2
+ - 8
+ - 2
+ - 34
+ - 0
+ - 0
+ - 6
+ - 4
+ - 36
+ - 0
+ - 2
+ - 12
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 8
+ - 7
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
+ - 0
+ - 2
+ - 12
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 8
+ - 4
+ - 34
+ - 0
+ - 2
+ - 12
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 8
+ - 3
+ - 34
+ - 0
+ - 3
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 3
+ - 0
+ - 8
+ - 32
+ - 1
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 2
+ - 0
+ - 16
+ - 31
+ - 0
+ - 3
+ - 0
+ - 9
+ - 33
+ - 1
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 2
+ - 0
+ - 16
+ - 30
+ - 0
+ - 7
+ - 0
+ - 18
+ - 28
+ - 0
+ - 2
+ - 0
+ - 13
+ - 32
+ - 1
+ - 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 2
+ - 34
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 3
+ - 4
+ - 2
+ - 34
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 7
+ - 34
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 8
+ - 2
+ - 34
+ - 0
+ - 1
+ - 12
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 8
+ - 4
+ - 34
+ - 0
+ - 1
+ - 12
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 8
+ - 3
+ - 34
+ - 0
+ - 1
+ - 4
+ - 7
+ - 34
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 4
+ - 34
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 3
+ - 0
+ - 16
+ - 32
+ - 1
+ - 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 0
+ - 16
+ - 6
+ - 36
+ - 0
+ - 1
+ - 4
+ - 5
+ - 34
+ - 0
+ - 2
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 1
+ - 8
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 0
+ - 16
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 3
+ - 4
+ - 12
+ - 37
+ - 1024
+ - 3
+ - 0
+ - 14
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 6
+ - 34
+ - 0
+ - 2
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 3
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 7
+ - 34
+ - 0
+ - 2
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 3
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 6
+ - 34
+ - 0
+ - 2
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 6
+ - 34
+ - 0
+ - 2
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 7
+ - 34
+ - 0
+ - 2
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[goto.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[goto.robot].out
new file mode 100644
index 000000000..c53530ddb
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[goto.robot].out
@@ -0,0 +1,1303 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 1
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 18
+ - 11
+ - 51
+ - 0
+ - 3
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
+ - 22
+ - 51
+ - 0
+ - 3
+ - 0
+ - 9
+ - 23
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
+ - 22
+ - 51
+ - 0
+ - 3
+ - 0
+ - 8
+ - 23
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
+ - 36
+ - 51
+ - 0
+ - 4
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 18
+ - 6
+ - 36
+ - 0
+ - 0
+ - 6
+ - 19
+ - 51
+ - 0
+ - 0
+ - 23
+ - 7
+ - 54
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 23
+ - 0
+ - 0
+ - 13
+ - 7
+ - 51
+ - 0
+ - 5
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 0
+ - 18
+ - 1
+ - 54
+ - 0
+ - 0
+ - 1
+ - 1
+ - 21
+ - 0
+ - 0
+ - 6
+ - 1
+ - 54
+ - 0
+ - 0
+ - 1
+ - 1
+ - 21
+ - 0
+ - 0
+ - 6
+ - 1
+ - 54
+ - 0
+ - 0
+ - 1
+ - 1
+ - 21
+ - 0
+ - 1
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 6
+ - 36
+ - 0
+ - 2
+ - 0
+ - 11
+ - 36
+ - 0
+ - 2
+ - 0
+ - 11
+ - 36
+ - 0
+ - 0
+ - 15
+ - 5
+ - 54
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 6
+ - 6
+ - 54
+ - 0
+ - 0
+ - 6
+ - 1
+ - 21
+ - 0
+ - 3
+ - 0
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
+ - 0
+ - 9
+ - 11
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
+ - 4
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 24
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
+ - 4
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ - 2
+ - 4
+ - 11
+ - 51
+ - 0
+ - 0
+ - 11
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
+ - 0
+ - 5
+ - 4
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
+ - 4
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 0
+ - 12
+ - 2
+ - 44
+ - 0
+ - 0
+ - 6
+ - 9
+ - 36
+ - 0
+ - 3
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 34
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
+ - 3
+ - 4
+ - 26
+ - 37
+ - 0
+ - 3
+ - 4
+ - 13
+ - 51
+ - 0
+ - 0
+ - 13
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 26
+ - 37
+ - 0
+ - 3
+ - 4
+ - 16
+ - 37
+ - 0
+ - 2
+ - 4
+ - 18
+ - 37
+ - 0
+ - 3
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 24
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 5
+ - 24
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 3
+ - 37
+ - 1024
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 3
+ - 37
+ - 1024
+ - 4
+ - 0
+ - 16
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 3
+ - 37
+ - 1024
+ - 3
+ - 4
+ - 5
+ - 35
+ - 0
+ - 1
+ - 4
+ - 5
+ - 35
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 32
+ - 37
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 4
+ - 37
+ - 0
+ - 3
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 2
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 7
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 2
+ - 34
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 7
+ - 34
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 2
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 7
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 11
+ - 4
+ - 34
+ - 0
+ - 0
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 4
+ - 4
+ - 2
+ - 34
+ - 0
+ - 0
+ - 10
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 7
+ - 34
+ - 0
+ - 0
+ - 17
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 11
+ - 4
+ - 34
+ - 0
+ - 0
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 3
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 8
+ - 37
+ - 1024
+ - 3
+ - 0
+ - 7
+ - 32
+ - 1
+ - 1
+ - 4
+ - 7
+ - 37
+ - 0
+ - 2
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 13
+ - 51
+ - 0
+ - 0
+ - 13
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 19
+ - 37
+ - 0
+ - 0
+ - 23
+ - 1
+ - 54
+ - 0
+ - 0
+ - 1
+ - 1
+ - 21
+ - 0
+ - 0
+ - 6
+ - 11
+ - 54
+ - 0
+ - 0
+ - 11
+ - 1
+ - 21
+ - 0
+ - 0
+ - 7
+ - 12
+ - 54
+ - 0
+ - 0
+ - 12
+ - 1
+ - 21
+ - 0
+ - 5
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 16
+ - 33
+ - 1
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 3
+ - 0
+ - 21
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 8
+ - 7
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 3
+ - 0
+ - 27
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 5
+ - 54
+ - 0
+ - 0
+ - 9
+ - 8
+ - 7
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
+ - 4
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 3
+ - 0
+ - 32
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 5
+ - 54
+ - 0
+ - 0
+ - 9
+ - 9
+ - 7
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
+ - 5
+ - 7
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 36
+ - 0
+ - 6
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 4
+ - 0
+ - 27
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 54
+ - 0
+ - 0
+ - 8
+ - 4
+ - 7
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
+ - 4
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 3
+ - 0
+ - 7
+ - 33
+ - 1
+ - 1
+ - 4
+ - 7
+ - 51
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 2
+ - 4
+ - 7
+ - 51
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 2
+ - 4
+ - 11
+ - 51
+ - 0
+ - 0
+ - 11
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 3
+ - 0
+ - 49
+ - 33
+ - 1
+ - 4
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 7
+ - 24
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 24
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 15
+ - 7
+ - 0
+ - 0
+ - 15
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ - 2
+ - 0
+ - 65
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 15
+ - 7
+ - 0
+ - 0
+ - 15
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
+ - 4
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 7
+ - 24
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 24
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[hover.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[hover.robot].out
new file mode 100644
index 000000000..b28ca4891
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[hover.robot].out
@@ -0,0 +1,1773 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 1
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 18
+ - 11
+ - 51
+ - 0
+ - 2
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 18
+ - 8
+ - 51
+ - 0
+ - 0
+ - 12
+ - 7
+ - 54
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 15
+ - 9
+ - 23
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
+ - 0
+ - 2
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 18
+ - 8
+ - 51
+ - 0
+ - 0
+ - 12
+ - 7
+ - 54
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 23
+ - 0
+ - 0
+ - 13
+ - 7
+ - 51
+ - 0
+ - 2
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
+ - 22
+ - 51
+ - 0
+ - 3
+ - 0
+ - 9
+ - 23
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
+ - 22
+ - 51
+ - 0
+ - 3
+ - 0
+ - 8
+ - 23
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
+ - 36
+ - 51
+ - 0
+ - 3
+ - 0
+ - 8
+ - 23
+ - 0
+ - 0
+ - 18
+ - 41
+ - 51
+ - 0
+ - 1
+ - 0
+ - 8
+ - 23
+ - 0
+ - 0
+ - 18
+ - 41
+ - 51
+ - 0
+ - 2
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 15
+ - 14
+ - 51
+ - 0
+ - 0
+ - 18
+ - 9
+ - 23
+ - 0
+ - 0
+ - 13
+ - 7
+ - 51
+ - 0
+ - 3
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 15
+ - 17
+ - 51
+ - 0
+ - 0
+ - 29
+ - 9
+ - 23
+ - 0
+ - 0
+ - 13
+ - 8
+ - 51
+ - 0
+ - 3
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 15
+ - 17
+ - 51
+ - 0
+ - 0
+ - 30
+ - 9
+ - 23
+ - 0
+ - 0
+ - 13
+ - 10
+ - 51
+ - 0
+ - 4
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 3
+ - 0
+ - 9
+ - 36
+ - 0
+ - 0
+ - 18
+ - 1
+ - 54
+ - 0
+ - 0
+ - 1
+ - 1
+ - 21
+ - 0
+ - 0
+ - 6
+ - 1
+ - 54
+ - 0
+ - 0
+ - 1
+ - 1
+ - 21
+ - 0
+ - 0
+ - 6
+ - 1
+ - 54
+ - 0
+ - 0
+ - 1
+ - 1
+ - 21
+ - 0
+ - 3
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 18
+ - 36
+ - 0
+ - 3
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 20
+ - 36
+ - 0
+ - 5
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 25
+ - 36
+ - 0
+ - 0
+ - 26
+ - 4
+ - 36
+ - 0
+ - 8
+ - 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 6
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 24
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 5
+ - 24
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 3
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 3
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 11
+ - 51
+ - 0
+ - 0
+ - 11
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 0
+ - 0
+ - 18
+ - 9
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 0
+ - 12
+ - 2
+ - 44
+ - 0
+ - 0
+ - 6
+ - 9
+ - 36
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
+ - 3
+ - 4
+ - 26
+ - 37
+ - 0
+ - 3
+ - 4
+ - 13
+ - 51
+ - 0
+ - 0
+ - 13
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 26
+ - 37
+ - 0
+ - 4
+ - 0
+ - 6
+ - 32
+ - 1
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 3
+ - 37
+ - 1024
+ - 3
+ - 4
+ - 5
+ - 35
+ - 0
+ - 1
+ - 4
+ - 5
+ - 35
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 2
+ - 4
+ - 15
+ - 37
+ - 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 7
+ - 51
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 1
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 7
+ - 51
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 2
+ - 4
+ - 15
+ - 37
+ - 1024
+ - 0
+ - 19
+ - 5
+ - 54
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 6
+ - 54
+ - 0
+ - 0
+ - 6
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 18
+ - 7
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 41
+ - 0
+ - 0
+ - 7
+ - 3
+ - 38
+ - 1024
+ - 0
+ - 28
+ - 19
+ - 17
+ - 0
+ - 1
+ - 4
+ - 3
+ - 41
+ - 0
+ - 0
+ - 5
+ - 4
+ - 34
+ - 0
+ - 1
+ - 4
+ - 3
+ - 41
+ - 0
+ - 0
+ - 7
+ - 15
+ - 38
+ - 0
+ - 0
+ - 21
+ - 19
+ - 17
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 2
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 7
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 2
+ - 34
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 7
+ - 34
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 2
+ - 34
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 7
+ - 34
+ - 0
+ - 0
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 11
+ - 4
+ - 34
+ - 0
+ - 0
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 4
+ - 4
+ - 2
+ - 34
+ - 0
+ - 0
+ - 10
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 7
+ - 34
+ - 0
+ - 0
+ - 17
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 11
+ - 4
+ - 34
+ - 0
+ - 0
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 4
+ - 0
+ - 7
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 5
+ - 24
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 0
+ - 1
+ - 3
+ - 37
+ - 1024
+ - 3
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 1
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 3
+ - 37
+ - 1024
+ - 4
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 3
+ - 37
+ - 1024
+ - 3
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 3
+ - 37
+ - 1024
+ - 3
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 3
+ - 37
+ - 1024
+ - 3
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 3
+ - 37
+ - 1024
+ - 3
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 3
+ - 37
+ - 1024
+ - 3
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 3
+ - 37
+ - 1024
+ - 5
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 38
+ - 0
+ - 0
+ - 1
+ - 3
+ - 38
+ - 1024
+ - 0
+ - 13
+ - 7
+ - 34
+ - 0
+ - 0
+ - 12
+ - 3
+ - 38
+ - 1024
+ - 0
+ - 11
+ - 4
+ - 34
+ - 0
+ - 0
+ - 6
+ - 3
+ - 38
+ - 1024
+ - 5
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 16
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 38
+ - 0
+ - 0
+ - 1
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 3
+ - 38
+ - 1024
+ - 4
+ - 0
+ - 8
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 0
+ - 1
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 12
+ - 37
+ - 0
+ - 2
+ - 4
+ - 13
+ - 51
+ - 0
+ - 0
+ - 13
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 4
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 20
+ - 37
+ - 0
+ - 2
+ - 4
+ - 20
+ - 37
+ - 0
+ - 2
+ - 4
+ - 18
+ - 37
+ - 0
+ - 2
+ - 4
+ - 10
+ - 51
+ - 0
+ - 0
+ - 10
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 20
+ - 37
+ - 0
+ - 2
+ - 4
+ - 10
+ - 51
+ - 0
+ - 0
+ - 10
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 20
+ - 37
+ - 0
+ - 2
+ - 4
+ - 10
+ - 51
+ - 0
+ - 0
+ - 10
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 18
+ - 37
+ - 0
+ - 3
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 4
+ - 37
+ - 0
+ - 3
+ - 0
+ - 8
+ - 32
+ - 1
+ - 1
+ - 4
+ - 7
+ - 51
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 16
+ - 37
+ - 0
+ - 3
+ - 4
+ - 7
+ - 51
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 21
+ - 37
+ - 0
+ - 3
+ - 4
+ - 8
+ - 51
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 3
+ - 4
+ - 10
+ - 51
+ - 0
+ - 0
+ - 10
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 3
+ - 4
+ - 19
+ - 51
+ - 0
+ - 0
+ - 19
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 4
+ - 0
+ - 7
+ - 32
+ - 1
+ - 1
+ - 4
+ - 13
+ - 51
+ - 0
+ - 0
+ - 13
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 19
+ - 37
+ - 0
+ - 0
+ - 23
+ - 1
+ - 54
+ - 0
+ - 0
+ - 1
+ - 1
+ - 21
+ - 0
+ - 0
+ - 6
+ - 11
+ - 54
+ - 0
+ - 0
+ - 11
+ - 1
+ - 21
+ - 0
+ - 0
+ - 7
+ - 12
+ - 54
+ - 0
+ - 0
+ - 12
+ - 1
+ - 21
+ - 0
+ - 5
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 9
+ - 33
+ - 1
+ - 1
+ - 4
+ - 11
+ - 37
+ - 1024
+ - 0
+ - 15
+ - 3
+ - 38
+ - 1024
+ - 4
+ - 4
+ - 12
+ - 37
+ - 1024
+ - 0
+ - 16
+ - 16
+ - 38
+ - 0
+ - 0
+ - 20
+ - 20
+ - 38
+ - 0
+ - 5
+ - 4
+ - 12
+ - 37
+ - 1024
+ - 0
+ - 16
+ - 3
+ - 38
+ - 1024
+ - 0
+ - 9
+ - 3
+ - 34
+ - 0
+ - 0
+ - 5
+ - 16
+ - 38
+ - 0
+ - 0
+ - 18
+ - 3
+ - 34
+ - 0
+ - 0
+ - 5
+ - 20
+ - 38
+ - 0
+ - 7
+ - 0
+ - 16
+ - 33
+ - 1
+ - 2
+ - 4
+ - 14
+ - 37
+ - 1024
+ - 2
+ - 0
+ - 13
+ - 33
+ - 1
+ - 1
+ - 4
+ - 9
+ - 37
+ - 1024
+ - 3
+ - 0
+ - 21
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 8
+ - 7
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 3
+ - 0
+ - 27
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 5
+ - 54
+ - 0
+ - 0
+ - 9
+ - 8
+ - 7
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
+ - 4
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 3
+ - 0
+ - 27
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 54
+ - 0
+ - 0
+ - 8
+ - 4
+ - 7
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
+ - 4
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 3
+ - 0
+ - 25
+ - 33
+ - 1
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 1
+ - 8
+ - 4
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 6
+ - 34
+ - 0
+ - 0
+ - 8
+ - 2
+ - 23
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[old_for.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[old_for.robot].out
new file mode 100644
index 000000000..7be4fa033
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[old_for.robot].out
@@ -0,0 +1,98 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 4
+ - 37
+ - 0
+ - 0
+ - 8
+ - 9
+ - 36
+ - 0
+ - 1
+ - 8
+ - 1
+ - 37
+ - 0
+ - 0
+ - 9
+ - 9
+ - 36
+ - 0
+ - 1
+ - 8
+ - 1
+ - 37
+ - 0
+ - 2
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 2
+ - 34
+ - 0
+ - 0
+ - 14
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 14
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 8
+ - 44
+ - 0
+ - 1
+ - 8
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 18
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[playground.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[playground.robot].out
new file mode 100644
index 000000000..40dfae3ad
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[playground.robot].out
@@ -0,0 +1,198 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 13
+ - 36
+ - 0
+ - 1
+ - 0
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 8
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 2
+ - 34
+ - 0
+ - 0
+ - 11
+ - 8
+ - 37
+ - 1024
+ - 0
+ - 17
+ - 4
+ - 34
+ - 0
+ - 0
+ - 8
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 4
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 8
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 54
+ - 0
+ - 0
+ - 8
+ - 4
+ - 54
+ - 0
+ - 0
+ - 6
+ - 4
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[references.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[references.robot].out
new file mode 100644
index 000000000..d90a50ead
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[references.robot].out
@@ -0,0 +1,1958 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 1
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 16
+ - 11
+ - 51
+ - 0
+ - 2
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
+ - 22
+ - 51
+ - 0
+ - 3
+ - 0
+ - 9
+ - 23
+ - 0
+ - 0
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
+ - 22
+ - 51
+ - 0
+ - 3
+ - 0
+ - 8
+ - 23
+ - 0
+ - 0
+ - 16
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
+ - 36
+ - 51
+ - 0
+ - 2
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 16
+ - 8
+ - 51
+ - 0
+ - 0
+ - 12
+ - 7
+ - 54
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 15
+ - 9
+ - 23
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
+ - 0
+ - 2
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 16
+ - 8
+ - 51
+ - 0
+ - 0
+ - 12
+ - 7
+ - 54
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 23
+ - 0
+ - 0
+ - 13
+ - 7
+ - 51
+ - 0
+ - 3
+ - 0
+ - 11
+ - 24
+ - 0
+ - 0
+ - 15
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 1024
+ - 2
+ - 0
+ - 10
+ - 24
+ - 0
+ - 0
+ - 14
+ - 14
+ - 37
+ - 1024
+ - 3
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 10
+ - 36
+ - 0
+ - 1
+ - 0
+ - 7
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 5
+ - 24
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
+ - 3
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 14
+ - 37
+ - 1024
+ - 2
+ - 4
+ - 2
+ - 35
+ - 0
+ - 1
+ - 4
+ - 5
+ - 35
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 7
+ - 51
+ - 1024
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 14
+ - 37
+ - 1024
+ - 2
+ - 4
+ - 2
+ - 35
+ - 0
+ - 1
+ - 4
+ - 5
+ - 35
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 51
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 2
+ - 4
+ - 15
+ - 37
+ - 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 7
+ - 51
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 2
+ - 4
+ - 15
+ - 37
+ - 1024
+ - 0
+ - 19
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 10
+ - 36
+ - 0
+ - 4
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 5
+ - 24
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 13
+ - 37
+ - 0
+ - 0
+ - 13
+ - 16
+ - 35
+ - 2048
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 13
+ - 37
+ - 0
+ - 0
+ - 13
+ - 19
+ - 35
+ - 2048
+ - 2
+ - 4
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 13
+ - 37
+ - 0
+ - 0
+ - 13
+ - 17
+ - 35
+ - 2048
+ - 3
+ - 4
+ - 4
+ - 37
+ - 0
+ - 0
+ - 4
+ - 1
+ - 35
+ - 2048
+ - 0
+ - 2
+ - 9
+ - 37
+ - 0
+ - 0
+ - 9
+ - 6
+ - 35
+ - 2048
+ - 3
+ - 4
+ - 4
+ - 37
+ - 0
+ - 0
+ - 4
+ - 5
+ - 35
+ - 2048
+ - 0
+ - 6
+ - 9
+ - 37
+ - 0
+ - 0
+ - 9
+ - 6
+ - 35
+ - 2048
+ - 2
+ - 4
+ - 4
+ - 37
+ - 0
+ - 0
+ - 4
+ - 14
+ - 35
+ - 2048
+ - 0
+ - 15
+ - 3
+ - 37
+ - 0
+ - 0
+ - 3
+ - 6
+ - 35
+ - 2048
+ - 3
+ - 4
+ - 7
+ - 37
+ - 0
+ - 0
+ - 7
+ - 10
+ - 36
+ - 2048
+ - 0
+ - 11
+ - 13
+ - 37
+ - 0
+ - 3
+ - 4
+ - 7
+ - 37
+ - 0
+ - 0
+ - 7
+ - 7
+ - 36
+ - 2048
+ - 0
+ - 8
+ - 13
+ - 37
+ - 0
+ - 3
+ - 4
+ - 21
+ - 37
+ - 0
+ - 2
+ - 4
+ - 21
+ - 37
+ - 0
+ - 0
+ - 25
+ - 19
+ - 17
+ - 0
+ - 2
+ - 4
+ - 4
+ - 37
+ - 0
+ - 0
+ - 4
+ - 18
+ - 35
+ - 2048
+ - 0
+ - 19
+ - 3
+ - 37
+ - 0
+ - 0
+ - 3
+ - 6
+ - 35
+ - 2048
+ - 3
+ - 4
+ - 4
+ - 37
+ - 0
+ - 0
+ - 4
+ - 18
+ - 35
+ - 2048
+ - 0
+ - 19
+ - 3
+ - 37
+ - 0
+ - 0
+ - 3
+ - 6
+ - 35
+ - 2048
+ - 4
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 4
+ - 37
+ - 0
+ - 0
+ - 6
+ - 2
+ - 54
+ - 0
+ - 0
+ - 2
+ - 1
+ - 21
+ - 0
+ - 2
+ - 4
+ - 13
+ - 51
+ - 0
+ - 0
+ - 13
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 37
+ - 0
+ - 0
+ - 6
+ - 2
+ - 54
+ - 0
+ - 0
+ - 2
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 15
+ - 54
+ - 0
+ - 0
+ - 15
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 7
+ - 36
+ - 0
+ - 0
+ - 8
+ - 7
+ - 36
+ - 0
+ - 0
+ - 9
+ - 1
+ - 17
+ - 0
+ - 0
+ - 3
+ - 4
+ - 17
+ - 0
+ - 5
+ - 0
+ - 7
+ - 32
+ - 1
+ - 1
+ - 4
+ - 13
+ - 51
+ - 0
+ - 0
+ - 13
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 19
+ - 37
+ - 0
+ - 0
+ - 23
+ - 1
+ - 54
+ - 0
+ - 0
+ - 1
+ - 1
+ - 21
+ - 0
+ - 0
+ - 6
+ - 11
+ - 54
+ - 0
+ - 0
+ - 11
+ - 1
+ - 21
+ - 0
+ - 0
+ - 7
+ - 12
+ - 54
+ - 0
+ - 0
+ - 12
+ - 1
+ - 21
+ - 0
+ - 4
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 7
+ - 54
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 2
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 13
+ - 33
+ - 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 1
+ - 4
+ - 12
+ - 37
+ - 0
+ - 0
+ - 17
+ - 7
+ - 36
+ - 0
+ - 2
+ - 0
+ - 12
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 7
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
+ - 2
+ - 0
+ - 4
+ - 33
+ - 1
+ - 0
+ - 4
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
+ - 10
+ - 33
+ - 1
+ - 0
+ - 10
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 19
+ - 8
+ - 36
+ - 0
+ - 4
+ - 0
+ - 4
+ - 33
+ - 1
+ - 0
+ - 4
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
+ - 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 4
+ - 33
+ - 1
+ - 0
+ - 4
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 4
+ - 33
+ - 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 4
+ - 33
+ - 1
+ - 0
+ - 4
+ - 18
+ - 36
+ - 0
+ - 0
+ - 18
+ - 4
+ - 33
+ - 1
+ - 0
+ - 4
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 7
+ - 33
+ - 1
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 10
+ - 14
+ - 33
+ - 1
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 2
+ - 0
+ - 21
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 8
+ - 7
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 3
+ - 0
+ - 27
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 5
+ - 54
+ - 0
+ - 0
+ - 9
+ - 8
+ - 7
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
+ - 4
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 3
+ - 0
+ - 27
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 54
+ - 0
+ - 0
+ - 8
+ - 4
+ - 7
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
+ - 4
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 3
+ - 0
+ - 49
+ - 33
+ - 1
+ - 4
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 7
+ - 24
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 24
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 54
+ - 0
+ - 0
+ - 8
+ - 4
+ - 7
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 65
+ - 33
+ - 1
+ - 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
+ - 12
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 54
+ - 0
+ - 0
+ - 8
+ - 4
+ - 7
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
+ - 4
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 7
+ - 24
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 24
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 12
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 3
+ - 0
+ - 27
+ - 33
+ - 1
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 5
+ - 34
+ - 0
+ - 0
+ - 17
+ - 5
+ - 36
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 2
+ - 34
+ - 0
+ - 1
+ - 8
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 18
+ - 10
+ - 36
+ - 0
+ - 2
+ - 8
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 12
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 0
+ - 33
+ - 33
+ - 1
+ - 2
+ - 4
+ - 3
+ - 41
+ - 0
+ - 1
+ - 4
+ - 3
+ - 41
+ - 0
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 6
+ - 54
+ - 0
+ - 2
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 35
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 39
+ - 36
+ - 0
+ - 2
+ - 4
+ - 6
+ - 34
+ - 0
+ - 0
+ - 10
+ - 9
+ - 36
+ - 0
+ - 3
+ - 0
+ - 57
+ - 33
+ - 1
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 10
+ - 54
+ - 0
+ - 2
+ - 4
+ - 5
+ - 34
+ - 0
+ - 0
+ - 9
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 5
+ - 36
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 10
+ - 34
+ - 0
+ - 2
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 0
+ - 31
+ - 33
+ - 1
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 6
+ - 54
+ - 0
+ - 1
+ - 4
+ - 2
+ - 34
+ - 0
+ - 1
+ - 8
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 2
+ - 4
+ - 4
+ - 34
+ - 0
+ - 1
+ - 8
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 1
+ - 4
+ - 6
+ - 34
+ - 0
+ - 0
+ - 10
+ - 9
+ - 36
+ - 0
+ - 3
+ - 0
+ - 44
+ - 33
+ - 1
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 8
+ - 54
+ - 0
+ - 0
+ - 12
+ - 10
+ - 54
+ - 0
+ - 2
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 5
+ - 34
+ - 0
+ - 0
+ - 24
+ - 5
+ - 36
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 10
+ - 34
+ - 0
+ - 4
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 0
+ - 23
+ - 33
+ - 1
+ - 1
+ - 4
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
+ - 12
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 13
+ - 36
+ - 0
+ - 0
+ - 18
+ - 12
+ - 37
+ - 1024
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 1
+ - 8
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 6
+ - 34
+ - 0
+ - 0
+ - 25
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
+ - 4
+ - 36
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 5
+ - 34
+ - 0
+ - 2
+ - 8
+ - 13
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 1
+ - 8
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 6
+ - 34
+ - 0
+ - 0
+ - 28
+ - 4
+ - 36
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 13
+ - 34
+ - 0
+ - 2
+ - 8
+ - 15
+ - 37
+ - 0
+ - 1
+ - 4
+ - 6
+ - 34
+ - 0
+ - 0
+ - 36
+ - 4
+ - 36
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 6
+ - 34
+ - 0
+ - 1
+ - 8
+ - 15
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[remotetest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[remotetest.robot].out
new file mode 100644
index 000000000..539e5d2db
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[remotetest.robot].out
@@ -0,0 +1,23 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 4
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 30
+ - 37
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[reserved.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[reserved.robot].out
new file mode 100644
index 000000000..ef17f9962
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[reserved.robot].out
@@ -0,0 +1,73 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 14
+ - 37
+ - 0
+ - 1
+ - 4
+ - 5
+ - 37
+ - 0
+ - 1
+ - 4
+ - 6
+ - 37
+ - 0
+ - 1
+ - 4
+ - 8
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 0
+ - 0
+ - 7
+ - 19
+ - 17
+ - 0
+ - 1
+ - 4
+ - 7
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 0
+ - 1
+ - 4
+ - 2
+ - 37
+ - 0
+ - 0
+ - 6
+ - 19
+ - 17
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[sematic_tokenizing.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[sematic_tokenizing.robot].out
new file mode 100644
index 000000000..a0933c3eb
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[sematic_tokenizing.robot].out
@@ -0,0 +1,328 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 1
+ - 0
+ - 8
+ - 23
+ - 0
+ - 0
+ - 12
+ - 22
+ - 51
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 40
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 34
+ - 0
+ - 0
+ - 17
+ - 5
+ - 36
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 1
+ - 34
+ - 0
+ - 0
+ - 5
+ - 8
+ - 36
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 34
+ - 0
+ - 1
+ - 8
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 1
+ - 4
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 24
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 34
+ - 0
+ - 0
+ - 17
+ - 5
+ - 36
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 34
+ - 0
+ - 0
+ - 8
+ - 16
+ - 36
+ - 0
+ - 0
+ - 16
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 31
+ - 34
+ - 0
+ - 1
+ - 8
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 0
+ - 14
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 8
+ - 37
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
+ - 1
+ - 35
+ - 0
+ - 2
+ - 0
+ - 27
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 0
+ - 0
+ - 3
+ - 4
+ - 35
+ - 2048
+ - 0
+ - 5
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 5
+ - 35
+ - 2048
+ - 1
+ - 4
+ - 13
+ - 51
+ - 0
+ - 0
+ - 13
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 3
+ - 37
+ - 0
+ - 0
+ - 3
+ - 4
+ - 35
+ - 2048
+ - 0
+ - 5
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 5
+ - 35
+ - 2048
+ - 2
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 12
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 7
+ - 54
+ - 0
+ - 1
+ - 4
+ - 2
+ - 37
+ - 0
+ - 3
+ - 0
+ - 8
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 54
+ - 0
+ - 0
+ - 8
+ - 4
+ - 54
+ - 0
+ - 0
+ - 8
+ - 4
+ - 54
+ - 0
+ - 2
+ - 4
+ - 2
+ - 37
+ - 0
+ - 0
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[setup_teardown.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[setup_teardown.robot].out
new file mode 100644
index 000000000..75cf1183e
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[setup_teardown.robot].out
@@ -0,0 +1,278 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 1
+ - 0
+ - 11
+ - 24
+ - 0
+ - 0
+ - 20
+ - 13
+ - 37
+ - 0
+ - 0
+ - 13
+ - 11
+ - 35
+ - 2048
+ - 1
+ - 0
+ - 14
+ - 24
+ - 0
+ - 0
+ - 20
+ - 13
+ - 37
+ - 0
+ - 0
+ - 13
+ - 14
+ - 35
+ - 2048
+ - 1
+ - 0
+ - 10
+ - 24
+ - 0
+ - 0
+ - 20
+ - 13
+ - 37
+ - 0
+ - 0
+ - 13
+ - 10
+ - 35
+ - 2048
+ - 2
+ - 0
+ - 13
+ - 24
+ - 0
+ - 0
+ - 20
+ - 5
+ - 37
+ - 0
+ - 2
+ - 0
+ - 12
+ - 24
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 2
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 5
+ - 24
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 13
+ - 37
+ - 0
+ - 0
+ - 13
+ - 16
+ - 35
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 13
+ - 37
+ - 0
+ - 0
+ - 13
+ - 19
+ - 35
+ - 2048
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 5
+ - 24
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - -9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 3
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 13
+ - 33
+ - 1
+ - 0
+ - 13
+ - 7
+ - 36
+ - 0
+ - 1
+ - 4
+ - 12
+ - 37
+ - 0
+ - 0
+ - 16
+ - 7
+ - 36
+ - 0
+ - 2
+ - 0
+ - 12
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 7
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
+ - 2
+ - 0
+ - 5
+ - 33
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[signature_help.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[signature_help.robot].out
new file mode 100644
index 000000000..44c7241a5
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[signature_help.robot].out
@@ -0,0 +1,168 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 1
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 11
+ - 11
+ - 51
+ - 0
+ - 2
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 12
+ - 10
+ - 51
+ - 0
+ - 0
+ - 21
+ - 1
+ - 17
+ - 0
+ - 3
+ - 0
+ - 11
+ - 24
+ - 0
+ - 0
+ - 15
+ - 12
+ - 37
+ - 0
+ - 4
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 26
+ - 37
+ - 0
+ - 0
+ - 73
+ - 1
+ - 17
+ - 0
+ - 5
+ - 4
+ - 12
+ - 37
+ - 0
+ - 0
+ - 20
+ - 1
+ - 17
+ - 0
+ - 2
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 12
+ - 37
+ - 0
+ - 0
+ - 38
+ - 1
+ - 17
+ - 0
+ - 5
+ - 4
+ - 22
+ - 37
+ - 0
+ - 0
+ - 44
+ - 1
+ - 17
+ - 0
+ - 6
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 26
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 10
+ - 54
+ - 0
+ - 0
+ - 14
+ - 8
+ - 7
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 9
+ - 7
+ - 7
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 36
+ - 0
+ - 1
+ - 4
+ - 12
+ - 37
+ - 1024
+ - 0
+ - 17
+ - 1
+ - 17
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[symbols.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[symbols.robot].out
new file mode 100644
index 000000000..e13362ffe
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[symbols.robot].out
@@ -0,0 +1,268 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 2
+ - 0
+ - 7
+ - 23
+ - 0
+ - 0
+ - 11
+ - 11
+ - 51
+ - 0
+ - 2
+ - 0
+ - 17
+ - 27
+ - 0
+ - 2
+ - 0
+ - 8
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 2
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
+ - 8
+ - 37
+ - 1024
+ - 3
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 37
+ - 1024
+ - 3
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 5
+ - 12
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
+ - 0
+ - 13
+ - 2
+ - 44
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 1
+ - 8
+ - 4
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 6
+ - 34
+ - 0
+ - 0
+ - 19
+ - 2
+ - 23
+ - 0
+ - 0
+ - 6
+ - 6
+ - 36
+ - 0
+ - 2
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 18
+ - 6
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 1
+ - 4
+ - 15
+ - 37
+ - 0
+ - 2
+ - 0
+ - 16
+ - 30
+ - 0
+ - 3
+ - 0
+ - 16
+ - 31
+ - 0
+ - 2
+ - 0
+ - 10
+ - 33
+ - 1
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 8
+ - 54
+ - 0
+ - 0
+ - 12
+ - 9
+ - 54
+ - 0
+ - 3
+ - 0
+ - 16
+ - 31
+ - 0
+ - 2
+ - 0
+ - 15
+ - 33
+ - 1
+ - 3
+ - 4
+ - 12
+ - 37
+ - 1024
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 3
+ - 4
+ - 11
+ - 37
+ - 0
+ - 2
+ - 0
+ - 16
+ - 31
+ - 0
+ - 4
+ - 4
+ - 11
+ - 37
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 20
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 5
+ - 10
+ - 36
+ - 0
+ - 2
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 11
+ - 8
+ - 37
+ - 1024
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[templates.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[templates.robot].out
new file mode 100644
index 000000000..96839db4b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[templates.robot].out
@@ -0,0 +1,913 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 1
+ - 0
+ - 13
+ - 24
+ - 0
+ - 0
+ - 20
+ - 22
+ - 37
+ - 0
+ - 2
+ - 0
+ - 13
+ - 52
+ - 0
+ - 2
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 24
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 16
+ - 37
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 8
+ - 36
+ - 0
+ - 0
+ - 12
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 11
+ - 36
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 14
+ - 36
+ - 0
+ - 0
+ - 18
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 11
+ - 36
+ - 0
+ - 0
+ - 15
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 8
+ - 36
+ - 0
+ - 0
+ - 12
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 3
+ - 35
+ - 0
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
+ - 0
+ - 18
+ - 1
+ - 35
+ - 0
+ - 2
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 24
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 3
+ - 35
+ - 0
+ - 0
+ - 7
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 35
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 2
+ - 0
+ - 9
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 2
+ - 0
+ - 23
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 2
+ - 0
+ - 24
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 2
+ - 0
+ - 24
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 2
+ - 0
+ - 24
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 11
+ - 37
+ - 0
+ - 0
+ - 11
+ - 1
+ - 35
+ - 2048
+ - 0
+ - 2
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 2048
+ - 0
+ - 2
+ - 3
+ - 37
+ - 0
+ - 0
+ - 3
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 2
+ - 0
+ - 35
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 41
+ - 35
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 2
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 22
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 54
+ - 0
+ - 0
+ - 8
+ - 4
+ - 54
+ - 0
+ - 0
+ - 8
+ - 4
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 16
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 54
+ - 0
+ - 0
+ - 8
+ - 4
+ - 54
+ - 0
+ - 0
+ - 8
+ - 4
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 12
+ - 33
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 12
+ - 37
+ - 1024
+ - 0
+ - 16
+ - 3
+ - 38
+ - 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
+ - 0
+ - 21
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 3
+ - 38
+ - 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
+ - 2
+ - 0
+ - 19
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 6
+ - 54
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 8
+ - 44
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 6
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 0
+ - 11
+ - 33
+ - 1
+ - 0
+ - 11
+ - 4
+ - 36
+ - 0
+ - 0
+ - 4
+ - 6
+ - 33
+ - 1
+ - 0
+ - 6
+ - 11
+ - 36
+ - 0
+ - 0
+ - 11
+ - 4
+ - 33
+ - 1
+ - 0
+ - 4
+ - 11
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
+ - 2
+ - 0
+ - 12
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 54
+ - 0
+ - 0
+ - 8
+ - 4
+ - 54
+ - 0
+ - 0
+ - 8
+ - 11
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[templates2.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[templates2.robot].out
new file mode 100644
index 000000000..a7484130f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[templates2.robot].out
@@ -0,0 +1,528 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 1
+ - 0
+ - 13
+ - 24
+ - 0
+ - 0
+ - 17
+ - 42
+ - 37
+ - 0
+ - 2
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 13
+ - 36
+ - 0
+ - 1
+ - 0
+ - 17
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 0
+ - 34
+ - 8
+ - 28
+ - 0
+ - 0
+ - 17
+ - 8
+ - 28
+ - 0
+ - 1
+ - 0
+ - 17
+ - 32
+ - 1
+ - 0
+ - 34
+ - 7
+ - 35
+ - 0
+ - 0
+ - 17
+ - 17
+ - 36
+ - 0
+ - 1
+ - 0
+ - 16
+ - 32
+ - 1
+ - 0
+ - 34
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
+ - 7
+ - 35
+ - 0
+ - 1
+ - 0
+ - 30
+ - 32
+ - 1
+ - 0
+ - 34
+ - 7
+ - 35
+ - 0
+ - 0
+ - 17
+ - 7
+ - 35
+ - 0
+ - 1
+ - 0
+ - 15
+ - 32
+ - 1
+ - 0
+ - 34
+ - 8
+ - 36
+ - 0
+ - 0
+ - 17
+ - 17
+ - 36
+ - 0
+ - 1
+ - 0
+ - 14
+ - 32
+ - 1
+ - 0
+ - 34
+ - 13
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 28
+ - 32
+ - 1
+ - 0
+ - 34
+ - 8
+ - 36
+ - 0
+ - 0
+ - 17
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 22
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 15
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 2
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
+ - 0
+ - 1
+ - 8
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 44
+ - 0
+ - 1
+ - 8
+ - 7
+ - 35
+ - 0
+ - 0
+ - 11
+ - 8
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 0
+ - 24
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 15
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 2
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
+ - 0
+ - 1
+ - 8
+ - 2
+ - 34
+ - 0
+ - 0
+ - 4
+ - 7
+ - 36
+ - 0
+ - 1
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
+ - 1
+ - 8
+ - 4
+ - 34
+ - 0
+ - 1
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
+ - 1
+ - 8
+ - 3
+ - 34
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 0
+ - 32
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 15
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 2
+ - 44
+ - 0
+ - 0
+ - 6
+ - 8
+ - 36
+ - 0
+ - 1
+ - 8
+ - 2
+ - 34
+ - 0
+ - 0
+ - 4
+ - 7
+ - 36
+ - 0
+ - 1
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
+ - 1
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
+ - 0
+ - 11
+ - 1
+ - 35
+ - 0
+ - 1
+ - 8
+ - 4
+ - 34
+ - 0
+ - 1
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 11
+ - 7
+ - 35
+ - 0
+ - 1
+ - 8
+ - 3
+ - 34
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 42
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 11
+ - 54
+ - 0
+ - 0
+ - 15
+ - 11
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 15
+ - 11
+ - 36
+ - 0
+ - 2
+ - 0
+ - 15
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 54
+ - 0
+ - 0
+ - 8
+ - 4
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[variables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[variables.robot].out
new file mode 100644
index 000000000..0d17e25e2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[variables.robot].out
@@ -0,0 +1,1593 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 1
+ - 0
+ - 14
+ - 24
+ - 0
+ - 0
+ - 20
+ - 12
+ - 37
+ - 1024
+ - 0
+ - 16
+ - 3
+ - 38
+ - 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 3
+ - 38
+ - 1024
+ - 0
+ - 7
+ - 16
+ - 36
+ - 0
+ - 0
+ - 17
+ - 12
+ - 36
+ - 0
+ - 0
+ - 15
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 13
+ - 38
+ - 1024
+ - 1
+ - 0
+ - 10
+ - 24
+ - 0
+ - 0
+ - 14
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
+ - 1
+ - 0
+ - 9
+ - 23
+ - 0
+ - 0
+ - 13
+ - 14
+ - 51
+ - 0
+ - 1
+ - 0
+ - 9
+ - 23
+ - 0
+ - 0
+ - 13
+ - 12
+ - 51
+ - 0
+ - 1
+ - 0
+ - 9
+ - 23
+ - 0
+ - 0
+ - 13
+ - 11
+ - 51
+ - 0
+ - 2
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 16
+ - 36
+ - 0
+ - 0
+ - 20
+ - 17
+ - 36
+ - 0
+ - 0
+ - 18
+ - 19
+ - 36
+ - 0
+ - 1
+ - 0
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
+ - 12
+ - 36
+ - 0
+ - 0
+ - 13
+ - 14
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
+ - 3
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
+ - 3
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 0
+ - 9
+ - 7
+ - 36
+ - 0
+ - 1
+ - 0
+ - 5
+ - 36
+ - 0
+ - 1
+ - 0
+ - 7
+ - 36
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 5
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 21
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 20
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 22
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 12
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
+ - 2
+ - 4
+ - 12
+ - 37
+ - 0
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 14
+ - 36
+ - 0
+ - 0
+ - 15
+ - 15
+ - 36
+ - 0
+ - 2
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
+ - 2
+ - 44
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 19
+ - 37
+ - 0
+ - 3
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 19
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 24
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 1
+ - 4
+ - 6
+ - 36
+ - 0
+ - 0
+ - 10
+ - 12
+ - 37
+ - 1024
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 6
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 24
+ - 36
+ - 0
+ - 1
+ - 4
+ - 15
+ - 36
+ - 0
+ - 0
+ - 19
+ - 12
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 24
+ - 36
+ - 0
+ - 0
+ - 28
+ - 20
+ - 17
+ - 0
+ - 2
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 12
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ - 2
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
+ - 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
+ - 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
+ - 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 12
+ - 37
+ - 1024
+ - 0
+ - 16
+ - 13
+ - 36
+ - 0
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 8
+ - 37
+ - 1024
+ - 2
+ - 4
+ - 2
+ - 34
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 7
+ - 34
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 5
+ - 34
+ - 0
+ - 1
+ - 8
+ - 5
+ - 34
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 2
+ - 34
+ - 0
+ - 0
+ - 16
+ - 3
+ - 37
+ - 1024
+ - 2
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 8
+ - 37
+ - 1024
+ - 2
+ - 4
+ - 4
+ - 36
+ - 0
+ - 0
+ - 8
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 14
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 14
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 7
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 20
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 16
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 22
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 25
+ - 37
+ - 1024
+ - 0
+ - 36
+ - 3
+ - 38
+ - 1024
+ - 1
+ - 4
+ - 17
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 27
+ - 3
+ - 38
+ - 1024
+ - 1
+ - 4
+ - 18
+ - 37
+ - 1024
+ - 0
+ - 29
+ - 3
+ - 38
+ - 1024
+ - 1
+ - 4
+ - 14
+ - 37
+ - 1024
+ - 0
+ - 27
+ - 8
+ - 38
+ - 1024
+ - 2
+ - 0
+ - 7
+ - 32
+ - 1
+ - 2
+ - 4
+ - 3
+ - 41
+ - 0
+ - 1
+ - 4
+ - 3
+ - 41
+ - 0
+ - 2
+ - 4
+ - 9
+ - 37
+ - 0
+ - 2
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 13
+ - 36
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 2
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 8
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 13
+ - 36
+ - 0
+ - 2
+ - 0
+ - 9
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 3
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 3
+ - 1
+ - 35
+ - 0
+ - 0
+ - 3
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 3
+ - 1
+ - 35
+ - 0
+ - 0
+ - 3
+ - 1
+ - 35
+ - 0
+ - 2
+ - 0
+ - 23
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 3
+ - 1
+ - 35
+ - 0
+ - 0
+ - 3
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 3
+ - 1
+ - 35
+ - 0
+ - 0
+ - 3
+ - 1
+ - 35
+ - 0
+ - 2
+ - 0
+ - 23
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 3
+ - 1
+ - 35
+ - 0
+ - 0
+ - 3
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 8
+ - 36
+ - 0
+ - 0
+ - 10
+ - 1
+ - 35
+ - 0
+ - 0
+ - 3
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 3
+ - 35
+ - 0
+ - 0
+ - 5
+ - 1
+ - 35
+ - 0
+ - 0
+ - 3
+ - 1
+ - 35
+ - 0
+ - 2
+ - 0
+ - 35
+ - 32
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 3
+ - 41
+ - 35
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 3
+ - 1
+ - 35
+ - 0
+ - 0
+ - 3
+ - 1
+ - 35
+ - 0
+ - 1
+ - 4
+ - 1
+ - 35
+ - 0
+ - 0
+ - 3
+ - 1
+ - 35
+ - 0
+ - 0
+ - 3
+ - 1
+ - 35
+ - 0
+ - 2
+ - 0
+ - 15
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 5
+ - 23
+ - 36
+ - 0
+ - 0
+ - 30
+ - 25
+ - 36
+ - 0
+ - 0
+ - 27
+ - 6
+ - 17
+ - 0
+ - 2
+ - 0
+ - 15
+ - 32
+ - 1
+ - 1
+ - 4
+ - 19
+ - 37
+ - 0
+ - 0
+ - 23
+ - 3
+ - 54
+ - 0
+ - 0
+ - 3
+ - 1
+ - 21
+ - 0
+ - 3
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 12
+ - 33
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 8
+ - 24
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 12
+ - 37
+ - 1024
+ - 0
+ - 16
+ - 3
+ - 38
+ - 1024
+ - 0
+ - 7
+ - 17
+ - 36
+ - 0
+ - 0
+ - 21
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 3
+ - 38
+ - 1024
+ - 0
+ - 7
+ - 18
+ - 36
+ - 0
+ - 2
+ - 0
+ - 19
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 6
+ - 54
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 6
+ - 8
+ - 44
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 6
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 0
+ - 11
+ - 33
+ - 1
+ - 0
+ - 11
+ - 13
+ - 36
+ - 0
+ - 0
+ - 13
+ - 6
+ - 33
+ - 1
+ - 0
+ - 6
+ - 4
+ - 36
+ - 0
+ - 0
+ - 4
+ - 4
+ - 33
+ - 1
+ - 0
+ - 4
+ - 11
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
+ - 2
+ - 0
+ - 12
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 3
+ - 4
+ - 54
+ - 0
+ - 0
+ - 6
+ - 4
+ - 54
+ - 0
+ - 0
+ - 6
+ - 11
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 0
+ - 2
+ - 0
+ - 31
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 7
+ - 54
+ - 0
+ - 0
+ - 11
+ - 3
+ - 54
+ - 0
+ - 0
+ - 7
+ - 10
+ - 7
+ - 0
+ - 0
+ - 10
+ - 1
+ - 21
+ - 0
+ - 0
+ - 14
+ - 8
+ - 54
+ - 0
+ - 0
+ - 12
+ - 11
+ - 54
+ - 0
+ - 0
+ - 15
+ - 11
+ - 7
+ - 0
+ - 0
+ - 11
+ - 1
+ - 21
+ - 0
+ - 1
+ - 4
+ - 12
+ - 37
+ - 1024
+ - 2
+ - 0
+ - 5
+ - 33
+ - 1
+ - 1
+ - 4
+ - 31
+ - 37
+ - 0
+ - 0
+ - 37
+ - 5
+ - 54
+ - 0
+ - 0
+ - 5
+ - 1
+ - 21
+ - 0
+ - 0
+ - 4
+ - 8
+ - 54
+ - 0
+ - 0
+ - 8
+ - 1
+ - 21
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-__init__.robot].out
new file mode 100644
index 000000000..e0e9f51af
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-__init__.robot].out
@@ -0,0 +1,8 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
new file mode 100644
index 000000000..fb00afb00
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out
@@ -0,0 +1,163 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 6
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 0
+ - 0
+ - 3
+ - 9
+ - 35
+ - 2048
+ - 0
+ - 10
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 5
+ - 35
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 37
+ - 0
+ - 0
+ - 3
+ - 9
+ - 35
+ - 2048
+ - 0
+ - 10
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 5
+ - 35
+ - 2048
+ - 0
+ - 6
+ - 13
+ - 37
+ - 0
+ - 2
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 3
+ - 33
+ - 1
+ - 0
+ - 3
+ - 12
+ - 36
+ - 0
+ - 0
+ - 12
+ - 6
+ - 33
+ - 1
+ - 0
+ - 6
+ - 8
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
+ - 0
+ - 18
+ - 8
+ - 36
+ - 0
+ - 2
+ - 0
+ - 3
+ - 33
+ - 1
+ - 0
+ - 3
+ - 12
+ - 36
+ - 0
+ - 0
+ - 12
+ - 6
+ - 33
+ - 1
+ - 0
+ - 6
+ - 8
+ - 36
+ - 0
+ - 0
+ - 8
+ - 14
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 7
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 12
+ - 12
+ - 36
+ - 0
+ - 0
+ - 18
+ - 8
+ - 36
+ - 0
+ - 0
+ - 23
+ - 7
+ - 36
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
new file mode 100644
index 000000000..eaf8038f2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out
@@ -0,0 +1,58 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 8
+ - 36
+ - 0
+ - 1
+ - 0
+ - 18
+ - 36
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 12
+ - 36
+ - 0
+ - 0
+ - 16
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 19
+ - 36
+ - 0
+ - 0
+ - 23
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 6
+ - 37
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
new file mode 100644
index 000000000..9bc959b6c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out
@@ -0,0 +1,48 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 1
+ - 0
+ - 9
+ - 23
+ - 0
+ - 0
+ - 13
+ - 11
+ - 51
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 16
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 16
+ - 36
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sometasks.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
new file mode 100644
index 000000000..3bcc51825
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sometasks.robot].out
@@ -0,0 +1,28 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 13
+ - 29
+ - 0
+ - 1
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 12
+ - 37
+ - 1024
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 12
+ - 37
+ - 1024
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
new file mode 100644
index 000000000..6fa23318f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out
@@ -0,0 +1,13 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 1
+ - 0
+ - 4
+ - 24
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
new file mode 100644
index 000000000..6d97c1255
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out
@@ -0,0 +1,23 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 12
+ - 37
+ - 1024
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
new file mode 100644
index 000000000..00fda5828
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out
@@ -0,0 +1,28 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 1
+ - 0
+ - 4
+ - 24
+ - 0
+ - 2
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 12
+ - 37
+ - 1024
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf70-vartest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf70-vartest.robot].out
new file mode 100644
index 000000000..851e64d25
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf70-vartest.robot].out
@@ -0,0 +1,468 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 15
+ - 37
+ - 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
+ - 2
+ - 0
+ - 14
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 13
+ - 12
+ - 34
+ - 0
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 13
+ - 11
+ - 34
+ - 0
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 15
+ - 37
+ - 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
+ - 3
+ - 0
+ - 22
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 13
+ - 6
+ - 34
+ - 0
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 13
+ - 13
+ - 34
+ - 0
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 15
+ - 37
+ - 1024
+ - 0
+ - 19
+ - 10
+ - 36
+ - 0
+ - 0
+ - 14
+ - 9
+ - 36
+ - 0
+ - 2
+ - 0
+ - 8
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 8
+ - 37
+ - 1024
+ - 0
+ - 12
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 8
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 23
+ - 11
+ - 34
+ - 0
+ - 1
+ - 4
+ - 8
+ - 37
+ - 1024
+ - 0
+ - 12
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 49
+ - 33
+ - 1
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 4
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 7
+ - 24
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 24
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 15
+ - 7
+ - 0
+ - 0
+ - 15
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ - 2
+ - 0
+ - 65
+ - 33
+ - 1
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 15
+ - 7
+ - 0
+ - 0
+ - 15
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 36
+ - 0
+ - 4
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 7
+ - 24
+ - 0
+ - 0
+ - 7
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 2
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 4
+ - 24
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 36
+ - 0
+ - 0
+ - 12
+ - 8
+ - 36
+ - 0
+ - 3
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf72-grouptest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
new file mode 100644
index 000000000..6f3ca2b33
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf72-grouptest.robot].out
@@ -0,0 +1,58 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 5
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 34
+ - 0
+ - 1
+ - 8
+ - 5
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 5
+ - 34
+ - 0
+ - 1
+ - 8
+ - 6
+ - 37
+ - 0
+ - 1
+ - 8
+ - 5
+ - 34
+ - 0
+ - 1
+ - 12
+ - 6
+ - 37
+ - 0
+ - 2
+ - 8
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out
new file mode 100644
index 000000000..a6451149d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf73-variable_conversion.robot].out
@@ -0,0 +1,598 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 9
+ - 36
+ - 0
+ - 1
+ - 0
+ - 26
+ - 36
+ - 0
+ - 1
+ - 0
+ - 15
+ - 36
+ - 0
+ - 1
+ - 0
+ - 21
+ - 36
+ - 0
+ - 1
+ - 0
+ - 17
+ - 36
+ - 0
+ - 1
+ - 0
+ - 20
+ - 36
+ - 0
+ - 1
+ - 0
+ - 29
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 15
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 7
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 11
+ - 36
+ - 0
+ - 0
+ - 13
+ - 20
+ - 36
+ - 0
+ - 1
+ - 4
+ - 26
+ - 37
+ - 0
+ - 1
+ - 4
+ - 39
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 1
+ - 4
+ - 36
+ - 37
+ - 0
+ - 0
+ - 40
+ - 7
+ - 36
+ - 0
+ - 2
+ - 0
+ - 15
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 15
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 19
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 9
+ - 32
+ - 1
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 8
+ - 44
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 4
+ - 3
+ - 34
+ - 0
+ - 0
+ - 7
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 12
+ - 44
+ - 0
+ - 1
+ - 8
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 5
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 34
+ - 0
+ - 2
+ - 0
+ - 13
+ - 32
+ - 1
+ - 1
+ - 4
+ - 9
+ - 36
+ - 0
+ - 0
+ - 13
+ - 2
+ - 34
+ - 0
+ - 0
+ - 12
+ - 8
+ - 37
+ - 1024
+ - 0
+ - 21
+ - 4
+ - 34
+ - 0
+ - 0
+ - 8
+ - 8
+ - 37
+ - 1024
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 30
+ - 32
+ - 1
+ - 1
+ - 4
+ - 2
+ - 37
+ - 0
+ - 0
+ - 2
+ - 7
+ - 35
+ - 2048
+ - 0
+ - 8
+ - 18
+ - 37
+ - 0
+ - 1
+ - 4
+ - 2
+ - 37
+ - 0
+ - 0
+ - 2
+ - 8
+ - 35
+ - 2048
+ - 0
+ - 9
+ - 18
+ - 37
+ - 0
+ - 3
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 26
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 9
+ - 54
+ - 0
+ - 0
+ - 13
+ - 15
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 55
+ - 0
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 0
+ - 13
+ - 10
+ - 34
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 3
+ - 36
+ - 0
+ - 2
+ - 0
+ - 39
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 4
+ - 7
+ - 0
+ - 0
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 6
+ - 9
+ - 7
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 2
+ - 0
+ - 36
+ - 33
+ - 1
+ - 1
+ - 4
+ - 1
+ - 21
+ - 0
+ - 0
+ - 1
+ - 9
+ - 24
+ - 0
+ - 0
+ - 9
+ - 1
+ - 21
+ - 0
+ - 0
+ - 5
+ - 22
+ - 54
+ - 0
+ - 1
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 4
+ - 36
+ - 0
+ - 12
+ - 0
+ - 2
+ - 33
+ - 1
+ - 0
+ - 2
+ - 32
+ - 36
+ - 0
+ - 0
+ - 32
+ - 19
+ - 33
+ - 1
+ - 2
+ - 4
+ - 3
+ - 37
+ - 1024
+ - 0
+ - 7
+ - 10
+ - 36
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[very_big_file.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[very_big_file.robot].out
new file mode 100644
index 000000000..15e147ff0
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[very_big_file.robot].out
@@ -0,0 +1,100803 @@
+result: !SemanticTokens
+ data:
+ - 0
+ - 0
+ - 16
+ - 26
+ - 0
+ - 4
+ - 0
+ - 17
+ - 27
+ - 0
+ - 1
+ - 0
+ - 12
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 1
+ - 0
+ - 11
+ - 36
+ - 0
+ - 1
+ - 0
+ - 17
+ - 36
+ - 0
+ - 3
+ - 0
+ - 18
+ - 28
+ - 0
+ - 1
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 11
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 2
+ - 0
+ - 10
+ - 32
+ - 1
+ - 1
+ - 4
+ - 5
+ - 39
+ - 0
+ - 0
+ - 5
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 31
+ - 37
+ - 0
+ - 0
+ - 31
+ - 12
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 40
+ - 37
+ - 0
+ - 0
+ - 40
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 5
+ - 37
+ - 0
+ - 0
+ - 5
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 62
+ - 37
+ - 0
+ - 0
+ - 62
+ - 11
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 12
+ - 37
+ - 0
+ - 0
+ - 12
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 32
+ - 37
+ - 0
+ - 0
+ - 32
+ - 17
+ - 36
+ - 2048
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 50
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 28
+ - 37
+ - 0
+ - 0
+ - 28
+ - 13
+ - 35
+ - 2048
+ - 0
+ - 14
+ - 19
+ - 37
+ - 0
+ - 1
+ - 4
+ - 4
+ - 39
+ - 0
+ - 0
+ - 4
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 30
+ - 37
+ - 0
+ - 0
+ - 30
+ - 10
+ - 35
+ - 2048
+ - 0
+ - 11
+ - 12
+ - 37
+ - 0
+ - 1
+ - 4
+ - 3
+ - 39
+ - 0
+ - 0
+ - 3
+ - 1
+ - 37
+ - 0
+ - 0
+ - 1
+ - 17
+ - 37
+ - 0
+ - 0
+ - 17
+ - 12
+ - 35
+ - 2048
+ - 0
+ - 13
+ - 20
+ - 37
+ - 0
+ - 0
+ - 20
+ - 6
+ - 35
+ - 2048
+ - 0
+ - 7
+ - 12
+ - 37
+ - 0
+ - 3
+ - 0
+ - 16
+ - 31
+ - 0
+ - 1
+ - 0
+ - 17
+ - 33
+ - 1
+ - 0
+ - 17
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
+ - 51
+ - 33
+ - 1
+ - 2
+ - 4
+ - 2
+ - 37
+ - 0
+ - 2
+ - 0
+ - 12
+ - 33
+ - 1
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
+ - 32
+ - 33
+ - 1
+ - 0
+ - 32
+ - 12
+ - 36
+ - 0
+ - 2
+ - 4
+ - 2
+ - 37
+ - 0
+ - 2
+ - 0
+ - 40
+ - 33
+ - 1
+ - 0
+ - 40
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
+ - 6
+ - 33
+ - 1
+ - 0
+ - 6
+ - 11
+ - 36
+ - 0
+ - 2
+ - 4
+ - 2
+ - 37
+ - 0
+ - 2
+ - 0
+ - 62
+ - 33
+ - 1
+ - 0
+ - 62
+ - 11
+ - 36
+ - 0
+ - 0
+ - 11
+ - 1
+ - 33
+ - 1
+ - 2
+ - 4
+ - 2
+ - 37
+ - 0
+ - 2
+ - 0
+ - 12
+ - 33
+ - 1
+ - 0
+ - 12
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
+ - 33
+ - 33
+ - 1
+ - 0
+ - 33
+ - 17
+ - 36
+ - 0
+ - 0
+ - 17
+ - 1
+ - 33
+ - 1
+ - 2
+ - 4
+ - 2
+ - 37
+ - 0
+ - 2
+ - 0
+ - 50
+ - 33
+ - 1
+ - 2
+ - 4
+ - 2
+ - 37
+ - 0
+ - 2
+ - 0
+ - 28
+ - 33
+ - 1
+ - 0
+ - 28
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
+ - 20
+ - 33
+ - 1
+ - 2
+ - 4
+ - 2
+ - 37
+ - 0
+ - 2
+ - 0
+ - 17
+ - 33
+ - 1
+ - 0
+ - 17
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
+ - 21
+ - 33
+ - 1
+ - 0
+ - 21
+ - 9
+ - 36
+ - 0
+ - 0
+ - 9
+ - 13
+ - 33
+ - 1
+ - 2
+ - 4
+ - 2
+ - 37
+ - 0
+ - 2
+ - 0
+ - 30
+ - 33
+ - 1
+ - 0
+ - 30
+ - 7
+ - 36
+ - 0
+ - 0
+ - 7
+ - 13
+ - 33
+ - 1
+ - 2
+ - 4
+ - 2
+ - 37
+ - 0
+ result_id: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-026-library_signature].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-026-library_signature].out
new file mode 100644
index 000000000..6ef1e4a21
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-026-library_signature].out
@@ -0,0 +1,21 @@
+data: !GeneratedTestData
+ character: 26
+ line: 3
+ name: library signature
+result: !SignatureHelp
+ active_parameter: 0
+ active_signature: 0
+ signatures:
+ - active_parameter: 0
+ documentation: null
+ label: '(l: List[int] | None = ${None}, s: str = Hello World!, i: int = ${0},
+ b: bool = ${False})'
+ parameters:
+ - documentation: null
+ label: 'l: List[int] | None = ${None}'
+ - documentation: null
+ label: 's: str = Hello World!'
+ - documentation: null
+ label: 'i: int = ${0}'
+ - documentation: null
+ label: 'b: bool = ${False}'
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-028-library_signature].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-028-library_signature].out
new file mode 100644
index 000000000..082168476
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-028-library_signature].out
@@ -0,0 +1,21 @@
+data: !GeneratedTestData
+ character: 28
+ line: 3
+ name: library signature
+result: !SignatureHelp
+ active_parameter: 0
+ active_signature: 0
+ signatures:
+ - active_parameter: 0
+ documentation: null
+ label: '(l: List[int] | None = ${None}, s: str = Hello World!, i: int = ${0},
+ b: bool = ${False})'
+ parameters:
+ - documentation: null
+ label: 'l: List[int] | None = ${None}'
+ - documentation: null
+ label: 's: str = Hello World!'
+ - documentation: null
+ label: 'i: int = ${0}'
+ - documentation: null
+ label: 'b: bool = ${False}'
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-030-library_signature].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-030-library_signature].out
new file mode 100644
index 000000000..180ba4b8a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-030-library_signature].out
@@ -0,0 +1,21 @@
+data: !GeneratedTestData
+ character: 30
+ line: 3
+ name: library signature
+result: !SignatureHelp
+ active_parameter: 0
+ active_signature: 0
+ signatures:
+ - active_parameter: 0
+ documentation: null
+ label: '(l: List[int] | None = ${None}, s: str = Hello World!, i: int = ${0},
+ b: bool = ${False})'
+ parameters:
+ - documentation: null
+ label: 'l: List[int] | None = ${None}'
+ - documentation: null
+ label: 's: str = Hello World!'
+ - documentation: null
+ label: 'i: int = ${0}'
+ - documentation: null
+ label: 'b: bool = ${False}'
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-006-031-Suite_Setup_first_param].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-006-031-Suite_Setup_first_param].out
new file mode 100644
index 000000000..667dd602c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-006-031-Suite_Setup_first_param].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 31
+ line: 6
+ name: Suite Setup first param
+result: !SignatureHelp
+ active_parameter: 0
+ active_signature: 0
+ signatures:
+ - active_parameter: 0
+ documentation: null
+ label: '(i: int, b: bool, l: List[int] | None = ${None})'
+ parameters:
+ - documentation: null
+ label: 'i: int'
+ - documentation: null
+ label: 'b: bool'
+ - documentation: null
+ label: 'l: List[int] | None = ${None}'
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-006-036-Suite_Setup_second_param].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-006-036-Suite_Setup_second_param].out
new file mode 100644
index 000000000..fe66d0acc
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-006-036-Suite_Setup_second_param].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 36
+ line: 6
+ name: Suite Setup second param
+result: !SignatureHelp
+ active_parameter: 1
+ active_signature: 0
+ signatures:
+ - active_parameter: 1
+ documentation: null
+ label: '(i: int, b: bool, l: List[int] | None = ${None})'
+ parameters:
+ - documentation: null
+ label: 'i: int'
+ - documentation: null
+ label: 'b: bool'
+ - documentation: null
+ label: 'l: List[int] | None = ${None}'
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-034-first_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-034-first_param_resource].out
new file mode 100644
index 000000000..5d215af07
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-034-first_param_resource].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 34
+ line: 12
+ name: first param resource
+result: !SignatureHelp
+ active_parameter: 0
+ active_signature: 0
+ signatures:
+ - active_parameter: 0
+ documentation: null
+ label: (message, level = INFO, html = ${False})
+ parameters:
+ - documentation: null
+ label: message
+ - documentation: null
+ label: level = INFO
+ - documentation: null
+ label: html = ${False}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-036-first_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-036-first_param_resource].out
new file mode 100644
index 000000000..1ba47bed8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-036-first_param_resource].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 36
+ line: 12
+ name: first param resource
+result: !SignatureHelp
+ active_parameter: 0
+ active_signature: 0
+ signatures:
+ - active_parameter: 0
+ documentation: null
+ label: (message, level = INFO, html = ${False})
+ parameters:
+ - documentation: null
+ label: message
+ - documentation: null
+ label: level = INFO
+ - documentation: null
+ label: html = ${False}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-038-first_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-038-first_param_resource].out
new file mode 100644
index 000000000..b38422326
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-038-first_param_resource].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 38
+ line: 12
+ name: first param resource
+result: !SignatureHelp
+ active_parameter: 0
+ active_signature: 0
+ signatures:
+ - active_parameter: 0
+ documentation: null
+ label: (message, level = INFO, html = ${False})
+ parameters:
+ - documentation: null
+ label: message
+ - documentation: null
+ label: level = INFO
+ - documentation: null
+ label: html = ${False}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-044-second_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-044-second_param_resource].out
new file mode 100644
index 000000000..24d9d81f6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-044-second_param_resource].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 44
+ line: 12
+ name: second param resource
+result: !SignatureHelp
+ active_parameter: 1
+ active_signature: 0
+ signatures:
+ - active_parameter: 1
+ documentation: null
+ label: (message, level = INFO, html = ${False})
+ parameters:
+ - documentation: null
+ label: message
+ - documentation: null
+ label: level = INFO
+ - documentation: null
+ label: html = ${False}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-046-second_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-046-second_param_resource].out
new file mode 100644
index 000000000..f9299516b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-046-second_param_resource].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 46
+ line: 12
+ name: second param resource
+result: !SignatureHelp
+ active_parameter: 1
+ active_signature: 0
+ signatures:
+ - active_parameter: 1
+ documentation: null
+ label: (message, level = INFO, html = ${False})
+ parameters:
+ - documentation: null
+ label: message
+ - documentation: null
+ label: level = INFO
+ - documentation: null
+ label: html = ${False}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-047-second_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-047-second_param_resource].out
new file mode 100644
index 000000000..52a514516
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-047-second_param_resource].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 47
+ line: 12
+ name: second param resource
+result: !SignatureHelp
+ active_parameter: 1
+ active_signature: 0
+ signatures:
+ - active_parameter: 1
+ documentation: null
+ label: (message, level = INFO, html = ${False})
+ parameters:
+ - documentation: null
+ label: message
+ - documentation: null
+ label: level = INFO
+ - documentation: null
+ label: html = ${False}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-052-second_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-052-second_param_resource].out
new file mode 100644
index 000000000..455b0de1b
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-052-second_param_resource].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 52
+ line: 12
+ name: second param resource
+result: !SignatureHelp
+ active_parameter: 2
+ active_signature: 0
+ signatures:
+ - active_parameter: 2
+ documentation: null
+ label: (message, level = INFO, html = ${False})
+ parameters:
+ - documentation: null
+ label: message
+ - documentation: null
+ label: level = INFO
+ - documentation: null
+ label: html = ${False}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-054-second_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-054-second_param_resource].out
new file mode 100644
index 000000000..a36019339
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-054-second_param_resource].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 54
+ line: 12
+ name: second param resource
+result: !SignatureHelp
+ active_parameter: 2
+ active_signature: 0
+ signatures:
+ - active_parameter: 2
+ documentation: null
+ label: (message, level = INFO, html = ${False})
+ parameters:
+ - documentation: null
+ label: message
+ - documentation: null
+ label: level = INFO
+ - documentation: null
+ label: html = ${False}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-056-second_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-056-second_param_resource].out
new file mode 100644
index 000000000..9e443ec42
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-056-second_param_resource].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 56
+ line: 12
+ name: second param resource
+result: !SignatureHelp
+ active_parameter: 2
+ active_signature: 0
+ signatures:
+ - active_parameter: 2
+ documentation: null
+ label: (message, level = INFO, html = ${False})
+ parameters:
+ - documentation: null
+ label: message
+ - documentation: null
+ label: level = INFO
+ - documentation: null
+ label: html = ${False}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-059-no_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-059-no_param_resource].out
new file mode 100644
index 000000000..903349ae7
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-059-no_param_resource].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 59
+ line: 12
+ name: no param resource
+result: !SignatureHelp
+ active_parameter: -1
+ active_signature: 0
+ signatures:
+ - active_parameter: -1
+ documentation: null
+ label: (message, level = INFO, html = ${False})
+ parameters:
+ - documentation: null
+ label: message
+ - documentation: null
+ label: level = INFO
+ - documentation: null
+ label: html = ${False}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-062-no_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-062-no_param_resource].out
new file mode 100644
index 000000000..a39ba9be2
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-062-no_param_resource].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 62
+ line: 12
+ name: no param resource
+result: !SignatureHelp
+ active_parameter: -1
+ active_signature: 0
+ signatures:
+ - active_parameter: -1
+ documentation: null
+ label: (message, level = INFO, html = ${False})
+ parameters:
+ - documentation: null
+ label: message
+ - documentation: null
+ label: level = INFO
+ - documentation: null
+ label: html = ${False}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-065-no_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-065-no_param_resource].out
new file mode 100644
index 000000000..606c61446
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-065-no_param_resource].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 65
+ line: 12
+ name: no param resource
+result: !SignatureHelp
+ active_parameter: -1
+ active_signature: 0
+ signatures:
+ - active_parameter: -1
+ documentation: null
+ label: (message, level = INFO, html = ${False})
+ parameters:
+ - documentation: null
+ label: message
+ - documentation: null
+ label: level = INFO
+ - documentation: null
+ label: html = ${False}
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-017-020-without_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-017-020-without_params].out
new file mode 100644
index 000000000..992acacdd
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-017-020-without_params].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 20
+ line: 17
+ name: without params
+result: !SignatureHelp
+ active_parameter: 0
+ active_signature: 0
+ signatures:
+ - active_parameter: 0
+ documentation: null
+ label: '(i: int, b: bool, l: List[int] | None = ${None})'
+ parameters:
+ - documentation: null
+ label: 'i: int'
+ - documentation: null
+ label: 'b: bool'
+ - documentation: null
+ label: 'l: List[int] | None = ${None}'
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-036-with_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-036-with_params].out
new file mode 100644
index 000000000..6d5a12a5f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-036-with_params].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 36
+ line: 19
+ name: with params
+result: !SignatureHelp
+ active_parameter: 0
+ active_signature: 0
+ signatures:
+ - active_parameter: 0
+ documentation: null
+ label: '(i: int, b: bool, l: List[int] | None = ${None})'
+ parameters:
+ - documentation: null
+ label: 'i: int'
+ - documentation: null
+ label: 'b: bool'
+ - documentation: null
+ label: 'l: List[int] | None = ${None}'
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-041-second_param].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-041-second_param].out
new file mode 100644
index 000000000..fc3fe9505
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-041-second_param].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 41
+ line: 19
+ name: second param
+result: !SignatureHelp
+ active_parameter: 1
+ active_signature: 0
+ signatures:
+ - active_parameter: 1
+ documentation: null
+ label: '(i: int, b: bool, l: List[int] | None = ${None})'
+ parameters:
+ - documentation: null
+ label: 'i: int'
+ - documentation: null
+ label: 'b: bool'
+ - documentation: null
+ label: 'l: List[int] | None = ${None}'
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-046-no_param].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-046-no_param].out
new file mode 100644
index 000000000..69e53e91d
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-046-no_param].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 46
+ line: 19
+ name: no param
+result: !SignatureHelp
+ active_parameter: 2
+ active_signature: 0
+ signatures:
+ - active_parameter: 2
+ documentation: null
+ label: '(i: int, b: bool, l: List[int] | None = ${None})'
+ parameters:
+ - documentation: null
+ label: 'i: int'
+ - documentation: null
+ label: 'b: bool'
+ - documentation: null
+ label: 'l: List[int] | None = ${None}'
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-030-int_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-030-int_params].out
new file mode 100644
index 000000000..ffebf4e45
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-030-int_params].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 30
+ line: 24
+ name: int params
+result: !SignatureHelp
+ active_parameter: 0
+ active_signature: 0
+ signatures:
+ - active_parameter: 0
+ documentation: null
+ label: '(i: int, b: bool, l: TestEnum = A)'
+ parameters:
+ - documentation: null
+ label: 'i: int'
+ - documentation: null
+ label: 'b: bool'
+ - documentation: null
+ label: 'l: TestEnum = A'
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-035-bool_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-035-bool_params].out
new file mode 100644
index 000000000..1cd391843
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-035-bool_params].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 35
+ line: 24
+ name: bool params
+result: !SignatureHelp
+ active_parameter: 1
+ active_signature: 0
+ signatures:
+ - active_parameter: 1
+ documentation: null
+ label: '(i: int, b: bool, l: TestEnum = A)'
+ parameters:
+ - documentation: null
+ label: 'i: int'
+ - documentation: null
+ label: 'b: bool'
+ - documentation: null
+ label: 'l: TestEnum = A'
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-037-bool_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-037-bool_params].out
new file mode 100644
index 000000000..f4536ff35
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-037-bool_params].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 37
+ line: 24
+ name: bool params
+result: !SignatureHelp
+ active_parameter: 1
+ active_signature: 0
+ signatures:
+ - active_parameter: 1
+ documentation: null
+ label: '(i: int, b: bool, l: TestEnum = A)'
+ parameters:
+ - documentation: null
+ label: 'i: int'
+ - documentation: null
+ label: 'b: bool'
+ - documentation: null
+ label: 'l: TestEnum = A'
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-038-bool_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-038-bool_params].out
new file mode 100644
index 000000000..78a9b41aa
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-038-bool_params].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 38
+ line: 24
+ name: bool params
+result: !SignatureHelp
+ active_parameter: 1
+ active_signature: 0
+ signatures:
+ - active_parameter: 1
+ documentation: null
+ label: '(i: int, b: bool, l: TestEnum = A)'
+ parameters:
+ - documentation: null
+ label: 'i: int'
+ - documentation: null
+ label: 'b: bool'
+ - documentation: null
+ label: 'l: TestEnum = A'
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-043-enum_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-043-enum_params].out
new file mode 100644
index 000000000..333e4dd5f
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-043-enum_params].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 43
+ line: 24
+ name: enum params
+result: !SignatureHelp
+ active_parameter: 2
+ active_signature: 0
+ signatures:
+ - active_parameter: 2
+ documentation: null
+ label: '(i: int, b: bool, l: TestEnum = A)'
+ parameters:
+ - documentation: null
+ label: 'i: int'
+ - documentation: null
+ label: 'b: bool'
+ - documentation: null
+ label: 'l: TestEnum = A'
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-046-no_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-046-no_params].out
new file mode 100644
index 000000000..1e696027a
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-046-no_params].out
@@ -0,0 +1,18 @@
+data: !GeneratedTestData
+ character: 46
+ line: 24
+ name: no params
+result: !SignatureHelp
+ active_parameter: -1
+ active_signature: 0
+ signatures:
+ - active_parameter: -1
+ documentation: null
+ label: '(i: int, b: bool, l: TestEnum = A)'
+ parameters:
+ - documentation: null
+ label: 'i: int'
+ - documentation: null
+ label: 'b: bool'
+ - documentation: null
+ label: 'l: TestEnum = A'
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-033-018-BuiltIn_no_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-033-018-BuiltIn_no_params].out
new file mode 100644
index 000000000..42b599494
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-033-018-BuiltIn_no_params].out
@@ -0,0 +1,12 @@
+data: !GeneratedTestData
+ character: 18
+ line: 33
+ name: BuiltIn no params
+result: !SignatureHelp
+ active_parameter: -1
+ active_signature: 0
+ signatures:
+ - active_parameter: -1
+ documentation: null
+ label: ()
+ parameters: []
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[].out
new file mode 100644
index 000000000..7af8fda15
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[].out
@@ -0,0 +1,14628 @@
+result:
+- !WorkspaceSymbol
+ container_name: __not_discovered
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: __not_discovered.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: __not_discovered
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 4
+ start:
+ character: 0
+ line: 4
+ uri: __not_discovered.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: _not_discovered
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: _not_discovered.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: _not_discovered
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 4
+ start:
+ character: 0
+ line: 4
+ uri: _not_discovered.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 1
+ start:
+ character: 14
+ line: 1
+ uri: bddstyle.robot
+ name: ${input}
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 28
+ line: 9
+ start:
+ character: 23
+ line: 9
+ uri: bddstyle.robot
+ name: ${input}
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 50
+ line: 3
+ start:
+ character: 37
+ line: 3
+ uri: bddstyle.robot
+ name: ${multiplier}
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 45
+ line: 9
+ start:
+ character: 35
+ line: 9
+ uri: bddstyle.robot
+ name: ${multiplier}
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 5
+ start:
+ character: 31
+ line: 5
+ uri: bddstyle.robot
+ name: ${result}
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 58
+ line: 9
+ start:
+ character: 52
+ line: 9
+ uri: bddstyle.robot
+ name: ${result}
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 17
+ start:
+ character: 0
+ line: 17
+ uri: bddstyle.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 18
+ start:
+ character: 0
+ line: 18
+ uri: bddstyle.robot
+ name: Testcase 2
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 19
+ start:
+ character: 0
+ line: 19
+ uri: bddstyle.robot
+ name: Testcase 3
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 20
+ start:
+ character: 0
+ line: 20
+ uri: bddstyle.robot
+ name: Testcase 4
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 2
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: bddstyle.robot
+ name: kw
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 34
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: bddstyle.robot
+ name: value of var <${input}> is present
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 51
+ line: 3
+ start:
+ character: 0
+ line: 3
+ uri: bddstyle.robot
+ name: value of var input is multiplied by "${multiplier}"
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 41
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: bddstyle.robot
+ name: value of var result should be [${result}]
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 26
+ line: 119
+ start:
+ character: 21
+ line: 119
+ uri: code_action_show_documentation.robot
+ name: ${A VAR}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 35
+ line: 124
+ start:
+ character: 30
+ line: 124
+ uri: code_action_show_documentation.robot
+ name: ${A VAR}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ uri: code_action_show_documentation.robot
+ name: ${LIB_ARG}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: code_action_show_documentation.robot
+ name: ${a var}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 129
+ start:
+ character: 21
+ line: 129
+ uri: code_action_show_documentation.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
+ line: 24
+ start:
+ character: 2
+ line: 24
+ uri: code_action_show_documentation.robot
+ name: ${bananas}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 17
+ line: 115
+ start:
+ character: 7
+ line: 115
+ uri: code_action_show_documentation.robot
+ name: ${bananas}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 30
+ line: 129
+ start:
+ character: 29
+ line: 129
+ uri: code_action_show_documentation.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 101
+ start:
+ character: 4
+ line: 101
+ uri: code_action_show_documentation.robot
+ name: ${number}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 52
+ start:
+ character: 6
+ line: 52
+ uri: code_action_show_documentation.robot
+ name: ${result}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 38
+ line: 101
+ start:
+ character: 30
+ line: 101
+ uri: code_action_show_documentation.robot
+ name: ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 33
+ line: 105
+ start:
+ character: 25
+ line: 105
+ uri: code_action_show_documentation.robot
+ name: ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 33
+ line: 109
+ start:
+ character: 25
+ line: 109
+ uri: code_action_show_documentation.robot
+ name: ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 34
+ line: 112
+ start:
+ character: 26
+ line: 112
+ uri: code_action_show_documentation.robot
+ name: ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 23
+ line: 124
+ start:
+ character: 21
+ line: 124
+ uri: code_action_show_documentation.robot
+ name: ${tt}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 91
+ start:
+ character: 13
+ line: 91
+ uri: code_action_show_documentation.robot
+ name: ${type}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 97
+ start:
+ character: 21
+ line: 97
+ uri: code_action_show_documentation.robot
+ name: ${type}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 21
+ line: 105
+ start:
+ character: 4
+ line: 105
+ uri: code_action_show_documentation.robot
+ name: ${what}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 21
+ line: 109
+ start:
+ character: 4
+ line: 109
+ uri: code_action_show_documentation.robot
+ name: ${what}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 112
+ start:
+ character: 4
+ line: 112
+ uri: code_action_show_documentation.robot
+ name: ${what}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 21
+ line: 118
+ start:
+ character: 0
+ line: 118
+ uri: code_action_show_documentation.robot
+ name: a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 38
+ line: 101
+ start:
+ character: 0
+ line: 101
+ uri: code_action_show_documentation.robot
+ name: add ${number:[0-9]+} coins to ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 34
+ line: 112
+ start:
+ character: 0
+ line: 112
+ uri: code_action_show_documentation.robot
+ name: add ${what:[a-zA-Z ]+} to ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 33
+ line: 105
+ start:
+ character: 0
+ line: 105
+ uri: code_action_show_documentation.robot
+ name: add ${what:[a-zA-Z]+} to ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 33
+ line: 109
+ start:
+ character: 0
+ line: 109
+ uri: code_action_show_documentation.robot
+ name: add ${what:[a-zA-Z]+} to ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 128
+ start:
+ character: 0
+ line: 128
+ uri: code_action_show_documentation.robot
+ name: again a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 123
+ start:
+ character: 0
+ line: 123
+ uri: code_action_show_documentation.robot
+ name: another keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 31
+ line: 115
+ start:
+ character: 0
+ line: 115
+ uri: code_action_show_documentation.robot
+ name: do add ${bananas} and to my bag
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 12
+ line: 95
+ start:
+ character: 0
+ line: 95
+ uri: code_action_show_documentation.robot
+ name: do something
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 20
+ line: 91
+ start:
+ character: 0
+ line: 91
+ uri: code_action_show_documentation.robot
+ name: do something ${type}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 60
+ start:
+ character: 0
+ line: 60
+ uri: code_action_show_documentation.robot
+ name: fifth
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 27
+ start:
+ character: 0
+ line: 27
+ uri: code_action_show_documentation.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 51
+ start:
+ character: 0
+ line: 51
+ uri: code_action_show_documentation.robot
+ name: forth
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 39
+ start:
+ character: 0
+ line: 39
+ uri: code_action_show_documentation.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 85
+ start:
+ character: 0
+ line: 85
+ uri: code_action_show_documentation.robot
+ name: sixth
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 45
+ start:
+ character: 0
+ line: 45
+ uri: code_action_show_documentation.robot
+ name: third
+ tags: null
+- !WorkspaceSymbol
+ container_name: discovered__
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: discovered__.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: discovered__
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: discovered__.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 26
+ line: 113
+ start:
+ character: 21
+ line: 113
+ uri: document_highlight.robot
+ name: ${A VAR}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 35
+ line: 122
+ start:
+ character: 30
+ line: 122
+ uri: document_highlight.robot
+ name: ${A VAR}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
+ line: 24
+ start:
+ character: 2
+ line: 24
+ uri: document_highlight.robot
+ name: ${A}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
+ line: 25
+ start:
+ character: 2
+ line: 25
+ uri: document_highlight.robot
+ name: ${B}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: document_highlight.robot
+ name: ${LIB_ARG}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 20
+ start:
+ character: 2
+ line: 20
+ uri: document_highlight.robot
+ name: ${a var}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 46
+ line: 164
+ start:
+ character: 34
+ line: 164
+ uri: document_highlight.robot
+ name: ${a_second_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 46
+ line: 169
+ start:
+ character: 34
+ line: 169
+ uri: document_highlight.robot
+ name: ${a_second_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 27
+ line: 164
+ start:
+ character: 21
+ line: 164
+ uri: document_highlight.robot
+ name: ${an_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 27
+ line: 169
+ start:
+ character: 21
+ line: 169
+ uri: document_highlight.robot
+ name: ${an_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 132
+ start:
+ character: 21
+ line: 132
+ uri: document_highlight.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 30
+ line: 132
+ start:
+ character: 29
+ line: 132
+ uri: document_highlight.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 43
+ line: 132
+ start:
+ character: 42
+ line: 132
+ uri: document_highlight.robot
+ name: ${c}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 149
+ start:
+ character: 4
+ line: 149
+ uri: document_highlight.robot
+ name: ${number}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 57
+ start:
+ character: 6
+ line: 57
+ uri: document_highlight.robot
+ name: ${result}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 38
+ line: 149
+ start:
+ character: 30
+ line: 149
+ uri: document_highlight.robot
+ name: ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 23
+ line: 122
+ start:
+ character: 21
+ line: 122
+ uri: document_highlight.robot
+ name: ${tt}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 21
+ line: 112
+ start:
+ character: 0
+ line: 112
+ uri: document_highlight.robot
+ name: a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 49
+ line: 155
+ start:
+ character: 0
+ line: 155
+ uri: document_highlight.robot
+ name: a keyword with variables in doc, timeout and tags
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 65
+ line: 168
+ start:
+ character: 0
+ line: 168
+ uri: document_highlight.robot
+ name: a keyword with variables in doc, timeout and tags with args first
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 38
+ line: 149
+ start:
+ character: 0
+ line: 149
+ uri: document_highlight.robot
+ name: add ${number:[0-9]+} coins to ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 131
+ start:
+ character: 0
+ line: 131
+ uri: document_highlight.robot
+ name: again a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 121
+ start:
+ character: 0
+ line: 121
+ uri: document_highlight.robot
+ name: another keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 66
+ start:
+ character: 0
+ line: 66
+ uri: document_highlight.robot
+ name: fifth
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 29
+ start:
+ character: 0
+ line: 29
+ uri: document_highlight.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: document_highlight.robot
+ name: forth
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 44
+ start:
+ character: 0
+ line: 44
+ uri: document_highlight.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 7
+ line: 85
+ start:
+ character: 0
+ line: 85
+ uri: document_highlight.robot
+ name: seventh
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 79
+ start:
+ character: 0
+ line: 79
+ uri: document_highlight.robot
+ name: sixth
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 50
+ start:
+ character: 0
+ line: 50
+ uri: document_highlight.robot
+ name: third
+ tags: null
+- !WorkspaceSymbol
+ container_name: duplicated
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 20
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: duplicated.resource
+ name: A Resource Keyword A
+ tags: null
+- !WorkspaceSymbol
+ container_name: duplicated
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 15
+ line: 8
+ start:
+ character: 0
+ line: 8
+ uri: duplicated.resource
+ name: a dummy keyword
+ tags: null
+- !WorkspaceSymbol
+ container_name: duplicated
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 18
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: duplicated.resource
+ name: duplicated keyword
+ tags: null
+- !WorkspaceSymbol
+ container_name: duplicated
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 20
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: duplicated.resource
+ name: a resource keyword B
+ tags: null
+- !WorkspaceSymbol
+ container_name: duplicated
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 18
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: duplicated.resource
+ name: duplicated keyword
+ tags: null
+- !WorkspaceSymbol
+ container_name: duplicated_resources
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 13
+ start:
+ character: 0
+ line: 13
+ uri: duplicated_resources.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: embedded_args
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 3
+ line: 1
+ uri: embedded_args.resource
+ name: ${task}
+ tags: null
+- !WorkspaceSymbol
+ container_name: embedded_args
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 24
+ line: 1
+ start:
+ character: 16
+ line: 1
+ uri: embedded_args.resource
+ name: ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: embedded_args
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 24
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: embedded_args.resource
+ name: do ${task} with ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: embedded_keywords
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 10
+ start:
+ character: 21
+ line: 10
+ uri: embedded_keywords.robot
+ name: ${data}
+ tags: null
+- !WorkspaceSymbol
+ container_name: embedded_keywords
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 15
+ line: 6
+ start:
+ character: 3
+ line: 6
+ uri: embedded_keywords.robot
+ name: ${something}
+ tags: null
+- !WorkspaceSymbol
+ container_name: embedded_keywords
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 15
+ line: 9
+ start:
+ character: 3
+ line: 9
+ uri: embedded_keywords.robot
+ name: ${something}
+ tags: null
+- !WorkspaceSymbol
+ container_name: embedded_keywords
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 29
+ line: 6
+ start:
+ character: 21
+ line: 6
+ uri: embedded_keywords.robot
+ name: ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: embedded_keywords
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 29
+ line: 9
+ start:
+ character: 21
+ line: 9
+ uri: embedded_keywords.robot
+ name: ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: embedded_keywords
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: embedded_keywords.robot
+ name: Test 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: embedded_keywords
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 29
+ line: 6
+ start:
+ character: 0
+ line: 6
+ uri: embedded_keywords.robot
+ name: do ${something} with ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: embedded_keywords
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 43
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: embedded_keywords.robot
+ name: do ${something} with ${thing} and this data
+ tags: null
+- !WorkspaceSymbol
+ container_name: external_libray
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: external_libray.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: fibonaci
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 2
+ start:
+ character: 6
+ line: 2
+ uri: fibonaci.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: fibonaci
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 36
+ start:
+ character: 6
+ line: 36
+ uri: fibonaci.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: fibonaci
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 27
+ start:
+ character: 10
+ line: 27
+ uri: fibonaci.robot
+ name: ${n1}
+ tags: null
+- !WorkspaceSymbol
+ container_name: fibonaci
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 28
+ start:
+ character: 10
+ line: 28
+ uri: fibonaci.robot
+ name: ${n2}
+ tags: null
+- !WorkspaceSymbol
+ container_name: fibonaci
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 22
+ start:
+ character: 21
+ line: 22
+ uri: fibonaci.robot
+ name: ${n}
+ tags: null
+- !WorkspaceSymbol
+ container_name: fibonaci
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 35
+ start:
+ character: 21
+ line: 35
+ uri: fibonaci.robot
+ name: ${n}
+ tags: null
+- !WorkspaceSymbol
+ container_name: fibonaci
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 11
+ line: 25
+ start:
+ character: 10
+ line: 25
+ uri: fibonaci.robot
+ name: ${r}
+ tags: null
+- !WorkspaceSymbol
+ container_name: fibonaci
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: fibonaci.robot
+ name: calc fibonaci
+ tags: null
+- !WorkspaceSymbol
+ container_name: fibonaci
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 18
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: fibonaci.robot
+ name: calc fibonaci data
+ tags: null
+- !WorkspaceSymbol
+ container_name: fibonaci
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 16
+ line: 34
+ start:
+ character: 0
+ line: 34
+ uri: fibonaci.robot
+ name: calc fibonaci kw
+ tags: null
+- !WorkspaceSymbol
+ container_name: fibonaci
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 8
+ line: 21
+ start:
+ character: 0
+ line: 21
+ uri: fibonaci.robot
+ name: fibonaci
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: first.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: first.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: first.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: first.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 10
+ start:
+ character: 0
+ line: 10
+ uri: first.robot
+ name: third
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 3
+ start:
+ character: 0
+ line: 3
+ uri: first.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 32
+ start:
+ character: 21
+ line: 32
+ uri: first.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 10
+ line: 31
+ start:
+ character: 4
+ line: 31
+ uri: first.robot
+ name: ${def}
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 35
+ line: 8
+ start:
+ character: 30
+ line: 8
+ uri: first.robot
+ name: ${ex}
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 14
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: first.robot
+ name: abc ${def} hih
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 21
+ line: 27
+ start:
+ character: 0
+ line: 27
+ uri: first.robot
+ name: some failing keyword1
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 12
+ line: 24
+ start:
+ character: 0
+ line: 24
+ uri: first.robot
+ name: some keyword
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 4
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: first.robot
+ name: wip1
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 3
+ line: 15
+ start:
+ character: 0
+ line: 15
+ uri: first.robot
+ name: wop
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 3
+ line: 19
+ start:
+ character: 0
+ line: 19
+ uri: first.robot
+ name: wup
+ tags: null
+- !WorkspaceSymbol
+ container_name: firstresource
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 4
+ start:
+ character: 2
+ line: 4
+ uri: firstresource.resource
+ name: ${A_VAR_FROM_RESOURE}
+ tags: null
+- !WorkspaceSymbol
+ container_name: firstresource
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 23
+ start:
+ character: 29
+ line: 23
+ uri: firstresource.resource
+ name: ${a long name}
+ tags: null
+- !WorkspaceSymbol
+ container_name: firstresource
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 60
+ line: 23
+ start:
+ character: 48
+ line: 23
+ uri: firstresource.resource
+ name: ${a_short_name}
+ tags: null
+- !WorkspaceSymbol
+ container_name: firstresource
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 23
+ start:
+ character: 21
+ line: 23
+ uri: firstresource.resource
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: firstresource
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 30
+ start:
+ character: 21
+ line: 30
+ uri: firstresource.resource
+ name: "${\U0001F413}"
+ tags: null
+- !WorkspaceSymbol
+ container_name: firstresource
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 33
+ line: 30
+ start:
+ character: 29
+ line: 30
+ uri: firstresource.resource
+ name: "${\U0001F60E\U0001F60B\U0001F619\U0001F619}"
+ tags: null
+- !WorkspaceSymbol
+ container_name: firstresource
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 50
+ line: 30
+ start:
+ character: 41
+ line: 30
+ uri: firstresource.resource
+ name: "${\U0001F9DF\u200D\u2642\uFE0F\U0001F6C3\U0001FAC5\U0001F3FF\U0001F478\U0001F3FF\
+ }"
+ tags: null
+- !WorkspaceSymbol
+ container_name: firstresource
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 19
+ line: 22
+ start:
+ character: 0
+ line: 22
+ uri: firstresource.resource
+ name: a keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: firstresource
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ uri: firstresource.resource
+ name: do something in a resource
+ tags: null
+- !WorkspaceSymbol
+ container_name: firstresource
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 12
+ line: 10
+ start:
+ character: 0
+ line: 10
+ uri: firstresource.resource
+ name: do.sell fish
+ tags: null
+- !WorkspaceSymbol
+ container_name: firstresource
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 20
+ line: 14
+ start:
+ character: 0
+ line: 14
+ uri: firstresource.resource
+ name: some failing keyword
+ tags: null
+- !WorkspaceSymbol
+ container_name: firstresource
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 2
+ line: 26
+ start:
+ character: 0
+ line: 26
+ uri: firstresource.resource
+ name: "\U0001F916\U0001F916"
+ tags: null
+- !WorkspaceSymbol
+ container_name: foldingrange
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 53
+ start:
+ character: 6
+ line: 53
+ uri: foldingrange.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: foldingrange
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 81
+ start:
+ character: 6
+ line: 81
+ uri: foldingrange.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: foldingrange
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 12
+ start:
+ character: 13
+ line: 12
+ uri: foldingrange.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: foldingrange
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 8
+ start:
+ character: 0
+ line: 8
+ uri: foldingrange.robot
+ name: First
+ tags: null
+- !WorkspaceSymbol
+ container_name: foldingrange
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 52
+ start:
+ character: 0
+ line: 52
+ uri: foldingrange.robot
+ name: IF statements
+ tags: null
+- !WorkspaceSymbol
+ container_name: foldingrange
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 14
+ line: 92
+ start:
+ character: 0
+ line: 92
+ uri: foldingrange.robot
+ name: TRY statements
+ tags: null
+- !WorkspaceSymbol
+ container_name: foldingrange
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 16
+ line: 80
+ start:
+ character: 0
+ line: 80
+ uri: foldingrange.robot
+ name: WHILE statements
+ tags: null
+- !WorkspaceSymbol
+ container_name: foldingrange
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 9
+ line: 39
+ start:
+ character: 0
+ line: 39
+ uri: foldingrange.robot
+ name: a keyword
+ tags: null
+- !WorkspaceSymbol
+ container_name: foldingrange
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 4
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: foldingrange.robot
+ name: "\U0001F690\U0001F693\U0001F6FA\U0001F699"
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 36
+ line: 174
+ start:
+ character: 30
+ line: 174
+ uri: goto.robot
+ name: ${A VAR1}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 21
+ start:
+ character: 2
+ line: 21
+ uri: goto.robot
+ name: ${A VAR}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 26
+ line: 155
+ start:
+ character: 21
+ line: 155
+ uri: goto.robot
+ name: ${A VAR}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 35
+ line: 164
+ start:
+ character: 30
+ line: 164
+ uri: goto.robot
+ name: ${A VAR}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
+ line: 36
+ start:
+ character: 2
+ line: 36
+ uri: goto.robot
+ name: ${A}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
+ line: 37
+ start:
+ character: 2
+ line: 37
+ uri: goto.robot
+ name: ${B}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 5
+ line: 25
+ start:
+ character: 2
+ line: 25
+ uri: goto.robot
+ name: ${DOT}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
+ line: 23
+ start:
+ character: 2
+ line: 23
+ uri: goto.robot
+ name: ${LIB_ARG}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 2
+ line: 20
+ uri: goto.robot
+ name: ${MY_DIR}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 46
+ line: 213
+ start:
+ character: 34
+ line: 213
+ uri: goto.robot
+ name: ${a_second_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 46
+ line: 218
+ start:
+ character: 34
+ line: 218
+ uri: goto.robot
+ name: ${a_second_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 32
+ start:
+ character: 2
+ line: 32
+ uri: goto.robot
+ name: ${all together}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 27
+ line: 213
+ start:
+ character: 21
+ line: 213
+ uri: goto.robot
+ name: ${an_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 27
+ line: 218
+ start:
+ character: 21
+ line: 218
+ uri: goto.robot
+ name: ${an_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 136
+ start:
+ character: 6
+ line: 136
+ uri: goto.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 187
+ start:
+ character: 21
+ line: 187
+ uri: goto.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 30
+ line: 187
+ start:
+ character: 29
+ line: 187
+ uri: goto.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 16
+ line: 68
+ start:
+ character: 13
+ line: 68
+ uri: goto.robot
+ name: ${key}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 23
+ line: 164
+ start:
+ character: 21
+ line: 164
+ uri: goto.robot
+ name: ${tt}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 23
+ line: 174
+ start:
+ character: 21
+ line: 174
+ uri: goto.robot
+ name: ${tt}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 28
+ line: 68
+ start:
+ character: 23
+ line: 68
+ uri: goto.robot
+ name: ${value}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 8
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: goto.robot
+ name: '&{A DICT}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 10
+ line: 29
+ start:
+ character: 2
+ line: 29
+ uri: goto.robot
+ name: '&{dict_var}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 10
+ line: 27
+ start:
+ character: 2
+ line: 27
+ uri: goto.robot
+ name: '@{list_var}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 21
+ line: 154
+ start:
+ character: 0
+ line: 154
+ uri: goto.robot
+ name: a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 49
+ line: 204
+ start:
+ character: 0
+ line: 204
+ uri: goto.robot
+ name: a keyword with variables in doc, timeout and tags
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 65
+ line: 217
+ start:
+ character: 0
+ line: 217
+ uri: goto.robot
+ name: a keyword with variables in doc, timeout and tags with args first
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ uri: goto.robot
+ name: a simple keyword
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 16
+ line: 98
+ start:
+ character: 0
+ line: 98
+ uri: goto.robot
+ name: a templated Test
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 186
+ start:
+ character: 0
+ line: 186
+ uri: goto.robot
+ name: again a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 163
+ start:
+ character: 0
+ line: 163
+ uri: goto.robot
+ name: another keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 142
+ start:
+ character: 0
+ line: 142
+ uri: goto.robot
+ name: eighth
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 40
+ start:
+ character: 0
+ line: 40
+ uri: goto.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 108
+ start:
+ character: 0
+ line: 108
+ uri: goto.robot
+ name: forth
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 32
+ line: 173
+ start:
+ character: 0
+ line: 173
+ uri: goto.robot
+ name: just another keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 89
+ start:
+ character: 0
+ line: 89
+ uri: goto.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 7
+ line: 139
+ start:
+ character: 0
+ line: 139
+ uri: goto.robot
+ name: seventh
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 112
+ start:
+ character: 0
+ line: 112
+ uri: goto.robot
+ name: sixth
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 7
+ line: 196
+ start:
+ character: 0
+ line: 196
+ uri: goto.robot
+ name: test kw
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 105
+ start:
+ character: 0
+ line: 105
+ uri: goto.robot
+ name: third
+ tags: null
+- !WorkspaceSymbol
+ container_name: grouptest
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: grouptest.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 30
+ start:
+ character: 2
+ line: 30
+ uri: hover.robot
+ name: ${A VAR}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 26
+ line: 267
+ start:
+ character: 21
+ line: 267
+ uri: hover.robot
+ name: ${A VAR}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 35
+ line: 276
+ start:
+ character: 30
+ line: 276
+ uri: hover.robot
+ name: ${A VAR}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
+ line: 41
+ start:
+ character: 2
+ line: 41
+ uri: hover.robot
+ name: ${A}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
+ line: 42
+ start:
+ character: 2
+ line: 42
+ uri: hover.robot
+ name: ${B}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
+ line: 43
+ start:
+ character: 2
+ line: 43
+ uri: hover.robot
+ name: ${C}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
+ line: 56
+ start:
+ character: 2
+ line: 56
+ uri: hover.robot
+ name: ${D}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
+ line: 57
+ start:
+ character: 2
+ line: 57
+ uri: hover.robot
+ name: ${E}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
+ line: 58
+ start:
+ character: 2
+ line: 58
+ uri: hover.robot
+ name: ${F}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 17
+ line: 38
+ start:
+ character: 2
+ line: 38
+ uri: hover.robot
+ name: ${INVALID VAR ${}}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
+ line: 48
+ start:
+ character: 2
+ line: 48
+ uri: hover.robot
+ name: ${K}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
+ line: 36
+ start:
+ character: 2
+ line: 36
+ uri: hover.robot
+ name: ${LIB_ARG}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 286
+ start:
+ character: 21
+ line: 286
+ uri: hover.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 30
+ line: 286
+ start:
+ character: 29
+ line: 286
+ uri: hover.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 298
+ start:
+ character: 16
+ line: 298
+ uri: hover.robot
+ name: ${e}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 16
+ line: 81
+ start:
+ character: 13
+ line: 81
+ uri: hover.robot
+ name: ${key}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 111
+ start:
+ character: 6
+ line: 111
+ uri: hover.robot
+ name: ${result}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 23
+ line: 276
+ start:
+ character: 21
+ line: 276
+ uri: hover.robot
+ name: ${tt}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 28
+ line: 81
+ start:
+ character: 23
+ line: 81
+ uri: hover.robot
+ name: ${value}
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 8
+ line: 33
+ start:
+ character: 2
+ line: 33
+ uri: hover.robot
+ name: '&{A DICT}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 9
+ line: 241
+ start:
+ character: 0
+ line: 241
+ uri: hover.robot
+ name: a keyword
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 21
+ line: 266
+ start:
+ character: 0
+ line: 266
+ uri: hover.robot
+ name: a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 25
+ line: 295
+ start:
+ character: 0
+ line: 295
+ uri: hover.robot
+ name: a keyword with try except
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 16
+ line: 258
+ start:
+ character: 0
+ line: 258
+ uri: hover.robot
+ name: a simple keyword
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 285
+ start:
+ character: 0
+ line: 285
+ uri: hover.robot
+ name: again a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 275
+ start:
+ character: 0
+ line: 275
+ uri: hover.robot
+ name: another keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 192
+ start:
+ character: 0
+ line: 192
+ uri: hover.robot
+ name: eight
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 8
+ line: 217
+ start:
+ character: 0
+ line: 217
+ uri: hover.robot
+ name: eleventh
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 62
+ start:
+ character: 0
+ line: 62
+ uri: hover.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 119
+ start:
+ character: 0
+ line: 119
+ uri: hover.robot
+ name: forth
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 199
+ start:
+ character: 0
+ line: 199
+ uri: hover.robot
+ name: nineth
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 102
+ start:
+ character: 0
+ line: 102
+ uri: hover.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 7
+ line: 150
+ start:
+ character: 0
+ line: 150
+ uri: hover.robot
+ name: seventh
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 8
+ line: 187
+ start:
+ character: 0
+ line: 187
+ uri: hover.robot
+ name: seventh1
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 125
+ start:
+ character: 0
+ line: 125
+ uri: hover.robot
+ name: sixth
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 13
+ line: 262
+ start:
+ character: 0
+ line: 262
+ uri: hover.robot
+ name: sleep a while
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 213
+ start:
+ character: 0
+ line: 213
+ uri: hover.robot
+ name: tenth
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 110
+ start:
+ character: 0
+ line: 110
+ uri: hover.robot
+ name: third
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 7
+ line: 234
+ start:
+ character: 0
+ line: 234
+ uri: hover.robot
+ name: twelfth
+ tags: null
+- !WorkspaceSymbol
+ container_name: indexed_variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 17
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: indexed_variables.robot
+ name: ${A_LIST ${index}}
+ tags: null
+- !WorkspaceSymbol
+ container_name: indexed_variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 2
+ start:
+ character: 2
+ line: 2
+ uri: indexed_variables.robot
+ name: ${index}
+ tags: null
+- !WorkspaceSymbol
+ container_name: indexed_variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 8
+ line: 1
+ start:
+ character: 2
+ line: 1
+ uri: indexed_variables.robot
+ name: '@{A_LIST}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: indexed_variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 6
+ start:
+ character: 0
+ line: 6
+ uri: indexed_variables.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: jsonvariables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 4
+ start:
+ character: 0
+ line: 4
+ uri: jsonvariables.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 10
+ start:
+ character: 13
+ line: 10
+ uri: old_for.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: old_for.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 6
+ start:
+ character: 0
+ line: 6
+ uri: old_for.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: old_for.robot
+ name: third
+ tags: null
+- !WorkspaceSymbol
+ container_name: part1__suite
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: part1__suite.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: part2__suite
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: part2__suite.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: part2__suite
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 4
+ start:
+ character: 0
+ line: 4
+ uri: part2__suite.robot
+ name: second test
+ tags: null
+- !WorkspaceSymbol
+ container_name: playground
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
+ line: 1
+ start:
+ character: 2
+ line: 1
+ uri: playground.robot
+ name: ${2}
+ tags: null
+- !WorkspaceSymbol
+ container_name: playground
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
+ line: 2
+ start:
+ character: 2
+ line: 2
+ uri: playground.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: playground
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 22
+ start:
+ character: 21
+ line: 22
+ uri: playground.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: playground
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 30
+ line: 22
+ start:
+ character: 29
+ line: 22
+ uri: playground.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: playground
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 15
+ start:
+ character: 6
+ line: 15
+ uri: playground.robot
+ name: ${v}
+ tags: null
+- !WorkspaceSymbol
+ container_name: playground
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 6
+ start:
+ character: 0
+ line: 6
+ uri: playground.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: playground
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 8
+ line: 21
+ start:
+ character: 0
+ line: 21
+ uri: playground.robot
+ name: first kw
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 26
+ line: 150
+ start:
+ character: 21
+ line: 150
+ uri: references.robot
+ name: ${A VAR}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 35
+ line: 159
+ start:
+ character: 30
+ line: 159
+ uri: references.robot
+ name: ${A VAR}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
+ line: 24
+ start:
+ character: 2
+ line: 24
+ uri: references.robot
+ name: ${LIB_ARG}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 16
+ line: 270
+ start:
+ character: 6
+ line: 270
+ uri: references.robot
+ name: ${MATCH TYPE}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 22
+ start:
+ character: 2
+ line: 22
+ uri: references.robot
+ name: ${a var}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 24
+ line: 245
+ start:
+ character: 21
+ line: 245
+ uri: references.robot
+ name: ${arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 169
+ start:
+ character: 21
+ line: 169
+ uri: references.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 187
+ start:
+ character: 21
+ line: 187
+ uri: references.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 193
+ start:
+ character: 21
+ line: 193
+ uri: references.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
+ line: 26
+ start:
+ character: 2
+ line: 26
+ uri: references.robot
+ name: ${bananas}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 17
+ line: 145
+ start:
+ character: 7
+ line: 145
+ uri: references.robot
+ name: ${bananas}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 15
+ line: 269
+ start:
+ character: 6
+ line: 269
+ uri: references.robot
+ name: ${beginning}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 30
+ line: 169
+ start:
+ character: 29
+ line: 169
+ uri: references.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 30
+ line: 187
+ start:
+ character: 29
+ line: 187
+ uri: references.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 30
+ line: 193
+ start:
+ character: 29
+ line: 193
+ uri: references.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 210
+ start:
+ character: 13
+ line: 210
+ uri: references.robot
+ name: ${counter}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 26
+ line: 258
+ start:
+ character: 21
+ line: 258
+ uri: references.robot
+ name: ${count}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 260
+ start:
+ character: 11
+ line: 260
+ uri: references.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 23
+ line: 247
+ start:
+ character: 17
+ line: 247
+ uri: references.robot
+ name: ${my var}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 125
+ start:
+ character: 4
+ line: 125
+ uri: references.robot
+ name: ${number}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 226
+ start:
+ character: 13
+ line: 226
+ uri: references.robot
+ name: ${output}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 59
+ start:
+ character: 6
+ line: 59
+ uri: references.robot
+ name: ${result}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 205
+ start:
+ character: 6
+ line: 205
+ uri: references.robot
+ name: ${result}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 28
+ line: 236
+ start:
+ character: 21
+ line: 236
+ uri: references.robot
+ name: ${retries}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 258
+ start:
+ character: 33
+ line: 258
+ uri: references.robot
+ name: ${retries}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 38
+ line: 125
+ start:
+ character: 30
+ line: 125
+ uri: references.robot
+ name: ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 33
+ line: 132
+ start:
+ character: 25
+ line: 132
+ uri: references.robot
+ name: ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 33
+ line: 137
+ start:
+ character: 25
+ line: 137
+ uri: references.robot
+ name: ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 26
+ line: 141
+ uri: references.robot
+ name: ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 23
+ line: 159
+ start:
+ character: 21
+ line: 159
+ uri: references.robot
+ name: ${tt}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 118
+ start:
+ character: 13
+ line: 118
+ uri: references.robot
+ name: ${type}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 122
+ start:
+ character: 21
+ line: 122
+ uri: references.robot
+ name: ${type}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 24
+ line: 224
+ start:
+ character: 21
+ line: 224
+ uri: references.robot
+ name: ${val}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 21
+ line: 132
+ start:
+ character: 4
+ line: 132
+ uri: references.robot
+ name: ${what}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 21
+ line: 137
+ start:
+ character: 4
+ line: 137
+ uri: references.robot
+ name: ${what}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 141
+ start:
+ character: 4
+ line: 141
+ uri: references.robot
+ name: ${what}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 4
+ line: 27
+ start:
+ character: 2
+ line: 27
+ uri: references.robot
+ name: "${\U0001F9E8\U0001F9E8}"
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 31
+ line: 243
+ start:
+ character: 0
+ line: 243
+ uri: references.robot
+ name: a keyword with VAR in condition
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 209
+ start:
+ character: 0
+ line: 209
+ uri: references.robot
+ name: a keyword with a while loop
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 57
+ line: 234
+ start:
+ character: 0
+ line: 234
+ uri: references.robot
+ name: a keyword with a while loop and variable in while options
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 21
+ line: 149
+ start:
+ character: 0
+ line: 149
+ uri: references.robot
+ name: a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 33
+ line: 220
+ start:
+ character: 0
+ line: 220
+ uri: references.robot
+ name: a keyword with python expressions
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 49
+ line: 178
+ start:
+ character: 0
+ line: 178
+ uri: references.robot
+ name: a keyword with variables in doc, timeout and tags
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 65
+ line: 191
+ start:
+ character: 0
+ line: 191
+ uri: references.robot
+ name: a keyword with variables in doc, timeout and tags with args first
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 44
+ line: 256
+ start:
+ character: 0
+ line: 256
+ uri: references.robot
+ name: a keyword with while and expression variable
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 38
+ line: 125
+ start:
+ character: 0
+ line: 125
+ uri: references.robot
+ name: add ${number:[0-9]+} coins to ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 34
+ line: 141
+ start:
+ character: 0
+ line: 141
+ uri: references.robot
+ name: add ${what:[a-zA-Z ]+} to ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 33
+ line: 132
+ start:
+ character: 0
+ line: 132
+ uri: references.robot
+ name: add ${what:[a-zA-Z]+} to ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 33
+ line: 137
+ start:
+ character: 0
+ line: 137
+ uri: references.robot
+ name: add ${what:[a-zA-Z]+} to ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 168
+ start:
+ character: 0
+ line: 168
+ uri: references.robot
+ name: again a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 158
+ start:
+ character: 0
+ line: 158
+ uri: references.robot
+ name: another keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 31
+ line: 145
+ start:
+ character: 0
+ line: 145
+ uri: references.robot
+ name: do add ${bananas} and to my bag
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 12
+ line: 121
+ start:
+ character: 0
+ line: 121
+ uri: references.robot
+ name: do something
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 20
+ line: 118
+ start:
+ character: 0
+ line: 118
+ uri: references.robot
+ name: do something ${type}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 68
+ start:
+ character: 0
+ line: 68
+ uri: references.robot
+ name: fifth
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: references.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 58
+ start:
+ character: 0
+ line: 58
+ uri: references.robot
+ name: forth
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 46
+ start:
+ character: 0
+ line: 46
+ uri: references.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 7
+ line: 110
+ start:
+ character: 0
+ line: 110
+ uri: references.robot
+ name: seventh
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 102
+ start:
+ character: 0
+ line: 102
+ uri: references.robot
+ name: sixth
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 52
+ start:
+ character: 0
+ line: 52
+ uri: references.robot
+ name: third
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 23
+ line: 268
+ start:
+ character: 0
+ line: 268
+ uri: references.robot
+ name: try except with options
+ tags: null
+- !WorkspaceSymbol
+ container_name: remotetest
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: remotetest.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: reserved
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: reserved.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: second
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: second.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: second
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: second.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: sematic_tokenizing
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 31
+ start:
+ character: 21
+ line: 31
+ uri: sematic_tokenizing.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: sematic_tokenizing
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 30
+ line: 31
+ start:
+ character: 29
+ line: 31
+ uri: sematic_tokenizing.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: sematic_tokenizing
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 38
+ line: 31
+ start:
+ character: 37
+ line: 31
+ uri: sematic_tokenizing.robot
+ name: ${c}
+ tags: null
+- !WorkspaceSymbol
+ container_name: sematic_tokenizing
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 26
+ start:
+ character: 21
+ line: 26
+ uri: sematic_tokenizing.robot
+ name: ${type}
+ tags: null
+- !WorkspaceSymbol
+ container_name: sematic_tokenizing
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 40
+ line: 4
+ start:
+ character: 0
+ line: 4
+ uri: sematic_tokenizing.robot
+ name: Continue when iteration limit is reached
+ tags: null
+- !WorkspaceSymbol
+ container_name: sematic_tokenizing
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 24
+ line: 10
+ start:
+ character: 0
+ line: 10
+ uri: sematic_tokenizing.robot
+ name: Limit as iteration count
+ tags: null
+- !WorkspaceSymbol
+ container_name: sematic_tokenizing
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 12
+ line: 25
+ start:
+ character: 0
+ line: 25
+ uri: sematic_tokenizing.robot
+ name: do something
+ tags: null
+- !WorkspaceSymbol
+ container_name: sematic_tokenizing
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 27
+ line: 20
+ start:
+ character: 0
+ line: 20
+ uri: sematic_tokenizing.robot
+ name: some embedded args keywords
+ tags: null
+- !WorkspaceSymbol
+ container_name: sematic_tokenizing
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 14
+ line: 15
+ start:
+ character: 0
+ line: 15
+ uri: sematic_tokenizing.robot
+ name: some templated
+ tags: null
+- !WorkspaceSymbol
+ container_name: sematic_tokenizing
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 8
+ line: 30
+ start:
+ character: 0
+ line: 30
+ uri: sematic_tokenizing.robot
+ name: template
+ tags: null
+- !WorkspaceSymbol
+ container_name: setup_teardown
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 26
+ start:
+ character: 13
+ line: 26
+ uri: setup_teardown.robot
+ name: ${type}
+ tags: null
+- !WorkspaceSymbol
+ container_name: setup_teardown
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 30
+ start:
+ character: 21
+ line: 30
+ uri: setup_teardown.robot
+ name: ${type}
+ tags: null
+- !WorkspaceSymbol
+ container_name: setup_teardown
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 14
+ start:
+ character: 0
+ line: 14
+ uri: setup_teardown.robot
+ name: Second
+ tags: null
+- !WorkspaceSymbol
+ container_name: setup_teardown
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 19
+ start:
+ character: 0
+ line: 19
+ uri: setup_teardown.robot
+ name: Third
+ tags: null
+- !WorkspaceSymbol
+ container_name: setup_teardown
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 5
+ line: 33
+ start:
+ character: 0
+ line: 33
+ uri: setup_teardown.robot
+ name: _NONE
+ tags: null
+- !WorkspaceSymbol
+ container_name: setup_teardown
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 12
+ line: 29
+ start:
+ character: 0
+ line: 29
+ uri: setup_teardown.robot
+ name: do something
+ tags: null
+- !WorkspaceSymbol
+ container_name: setup_teardown
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 20
+ line: 26
+ start:
+ character: 0
+ line: 26
+ uri: setup_teardown.robot
+ name: do something ${type}
+ tags: null
+- !WorkspaceSymbol
+ container_name: setup_teardown
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 10
+ start:
+ character: 0
+ line: 10
+ uri: setup_teardown.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: signature_help
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 19
+ start:
+ character: 6
+ line: 19
+ uri: signature_help.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: signature_help
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 15
+ line: 19
+ start:
+ character: 14
+ line: 19
+ uri: signature_help.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: signature_help
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 56
+ line: 32
+ start:
+ character: 52
+ line: 32
+ uri: signature_help.robot
+ name: ${html}
+ tags: null
+- !WorkspaceSymbol
+ container_name: signature_help
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 40
+ line: 32
+ start:
+ character: 35
+ line: 32
+ uri: signature_help.robot
+ name: ${level}
+ tags: null
+- !WorkspaceSymbol
+ container_name: signature_help
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 28
+ line: 32
+ start:
+ character: 21
+ line: 32
+ uri: signature_help.robot
+ name: ${message}
+ tags: null
+- !WorkspaceSymbol
+ container_name: signature_help
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: signature_help.robot
+ name: do something from resource
+ tags: null
+- !WorkspaceSymbol
+ container_name: signature_help
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 11
+ start:
+ character: 0
+ line: 11
+ uri: signature_help.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: simple
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: simple.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: simple suite
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: simple suite.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: simple suite
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: simple suite.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: simple suite_
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: simple suite_.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: simple_
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: simple_.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: some_tasks
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: some_tasks.robot
+ name: a simple task
+ tags: null
+- !WorkspaceSymbol
+ container_name: some_tasks
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 19
+ line: 4
+ start:
+ character: 0
+ line: 4
+ uri: some_tasks.robot
+ name: another simple task
+ tags: null
+- !WorkspaceSymbol
+ container_name: sometasks
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: sometasks.robot
+ name: first task
+ tags: null
+- !WorkspaceSymbol
+ container_name: sometasks
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 4
+ start:
+ character: 0
+ line: 4
+ uri: sometasks.robot
+ name: second task
+ tags: null
+- !WorkspaceSymbol
+ container_name: suite_with_name
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 4
+ start:
+ character: 0
+ line: 4
+ uri: suite_with_name.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 6
+ start:
+ character: 2
+ line: 6
+ uri: symbols.robot
+ name: ${A_VAR}
+ tags: null
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 35
+ line: 28
+ start:
+ character: 29
+ line: 28
+ uri: symbols.robot
+ name: ${exc}
+ tags: null
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 26
+ line: 41
+ start:
+ character: 21
+ line: 41
+ uri: symbols.robot
+ name: ${first}
+ tags: null
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 32
+ line: 16
+ start:
+ character: 22
+ line: 16
+ uri: symbols.robot
+ name: ${kw_result1}
+ tags: null
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 15
+ line: 13
+ start:
+ character: 6
+ line: 13
+ uri: symbols.robot
+ name: ${kw_result}
+ tags: null
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 19
+ start:
+ character: 11
+ line: 19
+ uri: symbols.robot
+ name: ${local_var}
+ tags: null
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 21
+ start:
+ character: 11
+ line: 21
+ uri: symbols.robot
+ name: ${loop_var}
+ tags: null
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 39
+ line: 41
+ start:
+ character: 33
+ line: 41
+ uri: symbols.robot
+ name: ${second}
+ tags: null
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 16
+ line: 64
+ start:
+ character: 11
+ line: 64
+ uri: symbols.robot
+ name: ${var 1}
+ tags: null
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 16
+ line: 66
+ start:
+ character: 11
+ line: 66
+ uri: symbols.robot
+ name: ${var 2}
+ tags: null
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 10
+ line: 39
+ start:
+ character: 0
+ line: 39
+ uri: symbols.robot
+ name: a keywords
+ tags: null
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 15
+ line: 46
+ start:
+ character: 0
+ line: 46
+ uri: symbols.robot
+ name: another keyword
+ tags:
+ - 1
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 11
+ start:
+ character: 0
+ line: 11
+ uri: symbols.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 20
+ line: 63
+ start:
+ character: 0
+ line: 63
+ uri: symbols.robot
+ name: vars with equal sign
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 6
+ start:
+ character: 2
+ line: 6
+ uri: templates.robot
+ name: ${A VAR}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 24
+ line: 79
+ start:
+ character: 21
+ line: 79
+ uri: templates.robot
+ name: ${aaa}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 61
+ start:
+ character: 21
+ line: 61
+ uri: templates.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 68
+ start:
+ character: 21
+ line: 68
+ uri: templates.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 15
+ line: 85
+ start:
+ character: 11
+ line: 85
+ uri: templates.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 89
+ start:
+ character: 21
+ line: 89
+ uri: templates.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 30
+ line: 61
+ start:
+ character: 29
+ line: 61
+ uri: templates.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 30
+ line: 68
+ start:
+ character: 29
+ line: 68
+ uri: templates.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 32
+ line: 85
+ start:
+ character: 21
+ line: 85
+ uri: templates.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 30
+ line: 89
+ start:
+ character: 29
+ line: 89
+ uri: templates.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 38
+ line: 61
+ start:
+ character: 37
+ line: 61
+ uri: templates.robot
+ name: ${c}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 38
+ line: 68
+ start:
+ character: 37
+ line: 68
+ uri: templates.robot
+ name: ${c}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 47
+ line: 85
+ start:
+ character: 36
+ line: 85
+ uri: templates.robot
+ name: ${expected}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 45
+ line: 89
+ start:
+ character: 37
+ line: 89
+ uri: templates.robot
+ name: ${expected}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 81
+ start:
+ character: 13
+ line: 81
+ uri: templates.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 10
+ line: 7
+ start:
+ character: 2
+ line: 7
+ uri: templates.robot
+ name: '@{LIST VAR}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 19
+ line: 78
+ start:
+ character: 0
+ line: 78
+ uri: templates.robot
+ name: a keyword with loop
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 47
+ line: 85
+ start:
+ character: 0
+ line: 85
+ uri: templates.robot
+ name: check that ${a} plus ${b:[a-c]+} is ${expected}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 12
+ line: 74
+ start:
+ character: 0
+ line: 74
+ uri: templates.robot
+ name: do something
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 10
+ start:
+ character: 0
+ line: 10
+ uri: templates.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 20
+ start:
+ character: 0
+ line: 20
+ uri: templates.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 22
+ line: 60
+ start:
+ character: 0
+ line: 60
+ uri: templates.robot
+ name: suite template keyword
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 16
+ line: 67
+ start:
+ character: 0
+ line: 67
+ uri: templates.robot
+ name: template keyword
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 9
+ line: 30
+ start:
+ character: 0
+ line: 30
+ uri: templates.robot
+ name: templated
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 12
+ line: 88
+ start:
+ character: 0
+ line: 88
+ uri: templates.robot
+ name: templated kw
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 23
+ line: 35
+ start:
+ character: 0
+ line: 35
+ uri: templates.robot
+ name: templated with embedded
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 35
+ line: 54
+ start:
+ character: 0
+ line: 54
+ uri: templates.robot
+ name: templated with embedded not defined
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 24
+ line: 44
+ start:
+ character: 0
+ line: 44
+ uri: templates.robot
+ name: templated with embedded1
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 24
+ line: 39
+ start:
+ character: 0
+ line: 39
+ uri: templates.robot
+ name: templated with embedded2
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 24
+ line: 49
+ start:
+ character: 0
+ line: 49
+ uri: templates.robot
+ name: templated with embedded3
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 26
+ start:
+ character: 0
+ line: 26
+ uri: templates.robot
+ name: third
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 16
+ line: 5
+ start:
+ character: 2
+ line: 5
+ uri: templates2.robot
+ name: ${VALID PASSWORD}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 4
+ start:
+ character: 2
+ line: 4
+ uri: templates2.robot
+ name: ${VALID USER}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 53
+ start:
+ character: 21
+ line: 53
+ uri: templates2.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 30
+ line: 53
+ start:
+ character: 29
+ line: 53
+ uri: templates2.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 18
+ line: 22
+ start:
+ character: 13
+ line: 22
+ uri: templates2.robot
+ name: ${index}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 17
+ line: 19
+ start:
+ character: 13
+ line: 19
+ uri: templates2.robot
+ name: ${item}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 17
+ line: 28
+ start:
+ character: 13
+ line: 28
+ uri: templates2.robot
+ name: ${item}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 17
+ line: 38
+ start:
+ character: 13
+ line: 38
+ uri: templates2.robot
+ name: ${item}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 44
+ line: 49
+ start:
+ character: 36
+ line: 49
+ uri: templates2.robot
+ name: ${password}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 29
+ line: 49
+ start:
+ character: 21
+ line: 49
+ uri: templates2.robot
+ name: ${username}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 6
+ start:
+ character: 2
+ line: 6
+ uri: templates2.robot
+ name: '@{ITEMS}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 14
+ line: 13
+ start:
+ character: 0
+ line: 13
+ uri: templates2.robot
+ name: Empty Password
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 12
+ start:
+ character: 0
+ line: 12
+ uri: templates2.robot
+ name: Empty User Name
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 28
+ line: 14
+ start:
+ character: 0
+ line: 14
+ uri: templates2.robot
+ name: Empty User Name and Password
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 15
+ line: 52
+ start:
+ character: 0
+ line: 52
+ uri: templates2.robot
+ name: Example keyword
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 16
+ line: 10
+ start:
+ character: 0
+ line: 10
+ uri: templates2.robot
+ name: Invalid Password
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 17
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: templates2.robot
+ name: Invalid User Name
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 11
+ start:
+ character: 0
+ line: 11
+ uri: templates2.robot
+ name: Invalid User Name and Password
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 42
+ line: 48
+ start:
+ character: 0
+ line: 48
+ uri: templates2.robot
+ name: Login with invalid credentials should fail
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 24
+ line: 26
+ start:
+ character: 0
+ line: 26
+ uri: templates2.robot
+ name: Template with FOR and IF
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 32
+ line: 36
+ start:
+ character: 0
+ line: 36
+ uri: templates2.robot
+ name: Template with FOR and IF invalid
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 22
+ line: 17
+ start:
+ character: 0
+ line: 17
+ uri: templates2.robot
+ name: Template with FOR loop
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 7
+ start:
+ character: 2
+ line: 7
+ uri: variable_conversion.robot
+ name: ${DATES}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 8
+ start:
+ character: 2
+ line: 8
+ uri: variable_conversion.robot
+ name: ${PRIORITIES}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
+ line: 1
+ start:
+ character: 2
+ line: 1
+ uri: variable_conversion.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 47
+ start:
+ character: 6
+ line: 47
+ uri: variable_conversion.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 57
+ start:
+ character: 21
+ line: 57
+ uri: variable_conversion.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 65
+ start:
+ character: 21
+ line: 65
+ uri: variable_conversion.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 22
+ line: 70
+ start:
+ character: 21
+ line: 70
+ uri: variable_conversion.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 32
+ line: 65
+ start:
+ character: 31
+ line: 65
+ uri: variable_conversion.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 35
+ line: 57
+ start:
+ character: 34
+ line: 57
+ uri: variable_conversion.robot
+ name: ${c}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 48
+ line: 57
+ start:
+ character: 47
+ line: 57
+ uri: variable_conversion.robot
+ name: ${d}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 26
+ start:
+ character: 13
+ line: 26
+ uri: variable_conversion.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 32
+ start:
+ character: 6
+ line: 32
+ uri: variable_conversion.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 36
+ start:
+ character: 13
+ line: 36
+ uri: variable_conversion.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 34
+ line: 83
+ start:
+ character: 2
+ line: 83
+ uri: variable_conversion.robot
+ name: ${keyword}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: variable_conversion.robot
+ name: ${k}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 38
+ start:
+ character: 13
+ line: 38
+ uri: variable_conversion.robot
+ name: ${l}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 3
+ line: 2
+ start:
+ character: 2
+ line: 2
+ uri: variable_conversion.robot
+ name: ${s}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 27
+ line: 42
+ start:
+ character: 26
+ line: 42
+ uri: variable_conversion.robot
+ name: ${s}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 6
+ line: 6
+ start:
+ character: 2
+ line: 6
+ uri: variable_conversion.robot
+ name: ${time}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 27
+ start:
+ character: 13
+ line: 27
+ uri: variable_conversion.robot
+ name: ${u}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
+ line: 4
+ start:
+ character: 2
+ line: 4
+ uri: variable_conversion.robot
+ name: '@{numbers}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 15
+ line: 5
+ start:
+ character: 2
+ line: 5
+ uri: variable_conversion.robot
+ name: '@{wrong_numbers}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 53
+ line: 83
+ start:
+ character: 0
+ line: 83
+ uri: variable_conversion.robot
+ name: 'a ${keyword: int:keyword|testcase} with embedded args'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: variable_conversion.robot
+ name: a simple keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 39
+ line: 64
+ start:
+ character: 0
+ line: 64
+ uri: variable_conversion.robot
+ name: a simple keyword with default arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 36
+ line: 69
+ start:
+ character: 0
+ line: 69
+ uri: variable_conversion.robot
+ name: a simple keyword with union argument
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 50
+ start:
+ character: 0
+ line: 50
+ uri: variable_conversion.robot
+ name: calling kws with embedded args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 9
+ line: 35
+ start:
+ character: 0
+ line: 35
+ uri: variable_conversion.robot
+ name: for loops
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 46
+ start:
+ character: 0
+ line: 46
+ uri: variable_conversion.robot
+ name: if assignment
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 19
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: variable_conversion.robot
+ name: keyword assignments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 25
+ start:
+ character: 0
+ line: 25
+ uri: variable_conversion.robot
+ name: local variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 12
+ start:
+ character: 0
+ line: 12
+ uri: variable_conversion.robot
+ name: suite variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 4
+ line: 12
+ start:
+ character: 2
+ line: 12
+ uri: variables.robot
+ name: ${DD}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 11
+ line: 124
+ start:
+ character: 2
+ line: 124
+ uri: variables.robot
+ name: ${INFO_DATA}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 4
+ line: 11
+ start:
+ character: 2
+ line: 11
+ uri: variables.robot
+ name: ${UU}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 123
+ start:
+ character: 2
+ line: 123
+ uri: variables.robot
+ name: ${VALUE}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 4
+ line: 10
+ start:
+ character: 2
+ line: 10
+ uri: variables.robot
+ name: ${ZZ}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 167
+ start:
+ character: 19
+ line: 167
+ uri: variables.robot
+ name: ${aaa}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 24
+ line: 167
+ start:
+ character: 21
+ line: 167
+ uri: variables.robot
+ name: ${aaa}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
+ line: 64
+ start:
+ character: 6
+ line: 64
+ uri: variables.robot
+ name: ${asd}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 75
+ start:
+ character: 6
+ line: 75
+ uri: variables.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 83
+ start:
+ character: 6
+ line: 83
+ uri: variables.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 99
+ start:
+ character: 6
+ line: 99
+ uri: variables.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 24
+ line: 173
+ start:
+ character: 11
+ line: 173
+ uri: variables.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 177
+ start:
+ character: 19
+ line: 177
+ uri: variables.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 76
+ start:
+ character: 6
+ line: 76
+ uri: variables.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 84
+ start:
+ character: 6
+ line: 84
+ uri: variables.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 100
+ start:
+ character: 6
+ line: 100
+ uri: variables.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 34
+ line: 173
+ start:
+ character: 30
+ line: 173
+ uri: variables.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 26
+ line: 177
+ start:
+ character: 25
+ line: 177
+ uri: variables.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 77
+ start:
+ character: 6
+ line: 77
+ uri: variables.robot
+ name: ${c}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 102
+ start:
+ character: 6
+ line: 102
+ uri: variables.robot
+ name: ${c}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 78
+ start:
+ character: 6
+ line: 78
+ uri: variables.robot
+ name: ${d}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 49
+ line: 173
+ start:
+ character: 38
+ line: 173
+ uri: variables.robot
+ name: ${expected}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 39
+ line: 177
+ start:
+ character: 31
+ line: 177
+ uri: variables.robot
+ name: ${expected}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 79
+ start:
+ character: 6
+ line: 79
+ uri: variables.robot
+ name: ${e}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 11
+ line: 9
+ start:
+ character: 2
+ line: 9
+ uri: variables.robot
+ name: ${full_name}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 80
+ start:
+ character: 6
+ line: 80
+ uri: variables.robot
+ name: ${f}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 18
+ line: 68
+ start:
+ character: 6
+ line: 68
+ uri: variables.robot
+ name: ${hello there1}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 52
+ start:
+ character: 11
+ line: 52
+ uri: variables.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 169
+ start:
+ character: 11
+ line: 169
+ uri: variables.robot
+ name: ${i}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 83
+ line: 181
+ start:
+ character: 75
+ line: 181
+ uri: variables.robot
+ name: ${keywords}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 84
+ line: 181
+ start:
+ character: 73
+ line: 181
+ uri: variables.robot
+ name: ${keywords}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 98
+ line: 181
+ start:
+ character: 90
+ line: 181
+ uri: variables.robot
+ name: ${listener}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 25
+ line: 181
+ start:
+ character: 21
+ line: 181
+ uri: variables.robot
+ name: ${name}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 15
+ line: 8
+ start:
+ character: 2
+ line: 8
+ uri: variables.robot
+ name: ${pre_full_name}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 68
+ line: 181
+ start:
+ character: 63
+ line: 181
+ uri: variables.robot
+ name: ${scope}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 69
+ line: 181
+ start:
+ character: 61
+ line: 181
+ uri: variables.robot
+ name: ${scope}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 46
+ line: 181
+ start:
+ character: 39
+ line: 181
+ uri: variables.robot
+ name: ${version}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 4
+ line: 14
+ start:
+ character: 2
+ line: 14
+ uri: variables.robot
+ name: "${\U0001F9E8\U0001F9E8}"
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 71
+ start:
+ character: 6
+ line: 71
+ uri: variables.robot
+ name: '&{a dict}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 31
+ line: 180
+ start:
+ character: 0
+ line: 180
+ uri: variables.robot
+ name: a keyword with kwonly separator
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 19
+ line: 166
+ start:
+ character: 0
+ line: 166
+ uri: variables.robot
+ name: a keyword with loop
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 49
+ line: 173
+ start:
+ character: 0
+ line: 173
+ uri: variables.robot
+ name: check that ${a:[0-9\ ]*} plus ${b} is ${expected}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 12
+ line: 162
+ start:
+ character: 0
+ line: 162
+ uri: variables.robot
+ name: do something
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 5
+ line: 184
+ start:
+ character: 0
+ line: 184
+ uri: variables.robot
+ name: dummy
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 154
+ start:
+ character: 0
+ line: 154
+ uri: variables.robot
+ name: environmentvars
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 82
+ start:
+ character: 0
+ line: 82
+ uri: variables.robot
+ name: fifth
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 17
+ start:
+ character: 0
+ line: 17
+ uri: variables.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 74
+ start:
+ character: 0
+ line: 74
+ uri: variables.robot
+ name: fourth
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 157
+ start:
+ character: 0
+ line: 157
+ uri: variables.robot
+ name: named arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 6
+ line: 51
+ start:
+ character: 0
+ line: 51
+ uri: variables.robot
+ name: second
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 7
+ line: 115
+ start:
+ character: 0
+ line: 115
+ uri: variables.robot
+ name: seventh
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 98
+ start:
+ character: 0
+ line: 98
+ uri: variables.robot
+ name: sixth
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 2
+ line: 127
+ start:
+ character: 0
+ line: 127
+ uri: variables.robot
+ name: tc
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 9
+ line: 133
+ start:
+ character: 0
+ line: 133
+ uri: variables.robot
+ name: templated
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 12
+ line: 176
+ start:
+ character: 0
+ line: 176
+ uri: variables.robot
+ name: templated kw
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 23
+ line: 138
+ start:
+ character: 0
+ line: 138
+ uri: variables.robot
+ name: templated with embedded
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 23
+ line: 143
+ start:
+ character: 0
+ line: 143
+ uri: variables.robot
+ name: templated with embedded
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 35
+ line: 149
+ start:
+ character: 0
+ line: 149
+ uri: variables.robot
+ name: templated with embedded not defined
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 59
+ start:
+ character: 0
+ line: 59
+ uri: variables.robot
+ name: third
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 4
+ start:
+ character: 13
+ line: 4
+ uri: vartest.robot
+ name: ${RESULT}
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 10
+ start:
+ character: 13
+ line: 10
+ uri: vartest.robot
+ name: ${RESULT}
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 17
+ start:
+ character: 13
+ line: 17
+ uri: vartest.robot
+ name: ${RESULT}
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 46
+ line: 39
+ start:
+ character: 34
+ line: 39
+ uri: vartest.robot
+ name: ${a_second_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 46
+ line: 45
+ start:
+ character: 34
+ line: 45
+ uri: vartest.robot
+ name: ${a_second_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 27
+ line: 39
+ start:
+ character: 21
+ line: 39
+ uri: vartest.robot
+ name: ${an_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 27
+ line: 45
+ start:
+ character: 21
+ line: 45
+ uri: vartest.robot
+ name: ${an_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 2
+ start:
+ character: 13
+ line: 2
+ uri: vartest.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 8
+ start:
+ character: 13
+ line: 8
+ uri: vartest.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 15
+ start:
+ character: 13
+ line: 15
+ uri: vartest.robot
+ name: ${a}
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 3
+ start:
+ character: 13
+ line: 3
+ uri: vartest.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 9
+ start:
+ character: 13
+ line: 9
+ uri: vartest.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 16
+ start:
+ character: 13
+ line: 16
+ uri: vartest.robot
+ name: ${b}
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 21
+ start:
+ character: 13
+ line: 21
+ uri: vartest.robot
+ name: '&{a}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 14
+ line: 25
+ start:
+ character: 13
+ line: 25
+ uri: vartest.robot
+ name: '@{a}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 49
+ line: 29
+ start:
+ character: 0
+ line: 29
+ uri: vartest.robot
+ name: a keyword with variables in doc, timeout and tags
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 65
+ line: 43
+ start:
+ character: 0
+ line: 43
+ uri: vartest.robot
+ name: a keyword with variables in doc, timeout and tags with args first
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 8
+ line: 20
+ start:
+ character: 0
+ line: 20
+ uri: vartest.robot
+ name: dict var
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 8
+ line: 24
+ start:
+ character: 0
+ line: 24
+ uri: vartest.robot
+ name: list var
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: vartest.robot
+ name: simple var
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 22
+ line: 14
+ start:
+ character: 0
+ line: 14
+ uri: vartest.robot
+ name: var with invalid scope
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 14
+ line: 7
+ start:
+ character: 0
+ line: 7
+ uri: vartest.robot
+ name: var with scope
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 54
+ line: 4651
+ start:
+ character: 45
+ line: 4651
+ uri: very_big_file.robot
+ name: ${action}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 11
+ line: 5
+ start:
+ character: 2
+ line: 5
+ uri: very_big_file.robot
+ name: ${city_name}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 63
+ line: 4627
+ start:
+ character: 51
+ line: 4627
+ uri: very_big_file.robot
+ name: ${city_name}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 16
+ line: 8
+ start:
+ character: 2
+ line: 8
+ uri: very_big_file.robot
+ name: ${cryptic_answer}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 69
+ line: 4639
+ start:
+ character: 52
+ line: 4639
+ uri: very_big_file.robot
+ name: ${cryptic_answer}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 10
+ line: 6
+ start:
+ character: 2
+ line: 6
+ uri: very_big_file.robot
+ name: ${location}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 64
+ line: 4631
+ start:
+ character: 53
+ line: 4631
+ uri: very_big_file.robot
+ name: ${location}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 24
+ line: 4623
+ start:
+ character: 17
+ line: 4623
+ uri: very_big_file.robot
+ name: ${name}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 4627
+ start:
+ character: 12
+ line: 4627
+ uri: very_big_file.robot
+ name: ${name}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 47
+ line: 4631
+ start:
+ character: 40
+ line: 4631
+ uri: very_big_file.robot
+ name: ${name}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 19
+ line: 4639
+ start:
+ character: 12
+ line: 4639
+ uri: very_big_file.robot
+ name: ${name}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 24
+ line: 4651
+ start:
+ character: 17
+ line: 4651
+ uri: very_big_file.robot
+ name: ${name}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 37
+ line: 4655
+ start:
+ character: 30
+ line: 4655
+ uri: very_big_file.robot
+ name: ${name}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 10
+ line: 7
+ start:
+ character: 2
+ line: 7
+ uri: very_big_file.robot
+ name: ${question}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 73
+ line: 4635
+ start:
+ character: 62
+ line: 4635
+ uri: very_big_file.robot
+ name: ${question}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 35
+ line: 4647
+ start:
+ character: 28
+ line: 4647
+ uri: very_big_file.robot
+ name: ${test}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 12
+ start:
+ character: 0
+ line: 12
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 705
+ start:
+ character: 0
+ line: 705
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 716
+ start:
+ character: 0
+ line: 716
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 727
+ start:
+ character: 0
+ line: 727
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 738
+ start:
+ character: 0
+ line: 738
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 749
+ start:
+ character: 0
+ line: 749
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 760
+ start:
+ character: 0
+ line: 760
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 771
+ start:
+ character: 0
+ line: 771
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 782
+ start:
+ character: 0
+ line: 782
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 793
+ start:
+ character: 0
+ line: 793
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 804
+ start:
+ character: 0
+ line: 804
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 815
+ start:
+ character: 0
+ line: 815
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 826
+ start:
+ character: 0
+ line: 826
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 837
+ start:
+ character: 0
+ line: 837
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 848
+ start:
+ character: 0
+ line: 848
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 859
+ start:
+ character: 0
+ line: 859
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 870
+ start:
+ character: 0
+ line: 870
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 881
+ start:
+ character: 0
+ line: 881
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 892
+ start:
+ character: 0
+ line: 892
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 903
+ start:
+ character: 0
+ line: 903
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 914
+ start:
+ character: 0
+ line: 914
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 925
+ start:
+ character: 0
+ line: 925
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 936
+ start:
+ character: 0
+ line: 936
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 947
+ start:
+ character: 0
+ line: 947
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 958
+ start:
+ character: 0
+ line: 958
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 969
+ start:
+ character: 0
+ line: 969
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 980
+ start:
+ character: 0
+ line: 980
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 991
+ start:
+ character: 0
+ line: 991
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1002
+ start:
+ character: 0
+ line: 1002
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1013
+ start:
+ character: 0
+ line: 1013
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1024
+ start:
+ character: 0
+ line: 1024
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1035
+ start:
+ character: 0
+ line: 1035
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1046
+ start:
+ character: 0
+ line: 1046
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1057
+ start:
+ character: 0
+ line: 1057
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1068
+ start:
+ character: 0
+ line: 1068
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1079
+ start:
+ character: 0
+ line: 1079
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1090
+ start:
+ character: 0
+ line: 1090
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1101
+ start:
+ character: 0
+ line: 1101
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1112
+ start:
+ character: 0
+ line: 1112
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1123
+ start:
+ character: 0
+ line: 1123
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1134
+ start:
+ character: 0
+ line: 1134
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1145
+ start:
+ character: 0
+ line: 1145
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1156
+ start:
+ character: 0
+ line: 1156
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1167
+ start:
+ character: 0
+ line: 1167
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1178
+ start:
+ character: 0
+ line: 1178
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1189
+ start:
+ character: 0
+ line: 1189
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1200
+ start:
+ character: 0
+ line: 1200
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1211
+ start:
+ character: 0
+ line: 1211
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1222
+ start:
+ character: 0
+ line: 1222
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1233
+ start:
+ character: 0
+ line: 1233
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1244
+ start:
+ character: 0
+ line: 1244
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1255
+ start:
+ character: 0
+ line: 1255
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1266
+ start:
+ character: 0
+ line: 1266
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1277
+ start:
+ character: 0
+ line: 1277
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1288
+ start:
+ character: 0
+ line: 1288
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1299
+ start:
+ character: 0
+ line: 1299
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1310
+ start:
+ character: 0
+ line: 1310
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1321
+ start:
+ character: 0
+ line: 1321
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1332
+ start:
+ character: 0
+ line: 1332
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1343
+ start:
+ character: 0
+ line: 1343
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1354
+ start:
+ character: 0
+ line: 1354
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1365
+ start:
+ character: 0
+ line: 1365
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1376
+ start:
+ character: 0
+ line: 1376
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1387
+ start:
+ character: 0
+ line: 1387
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1398
+ start:
+ character: 0
+ line: 1398
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1409
+ start:
+ character: 0
+ line: 1409
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1420
+ start:
+ character: 0
+ line: 1420
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1431
+ start:
+ character: 0
+ line: 1431
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1442
+ start:
+ character: 0
+ line: 1442
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1453
+ start:
+ character: 0
+ line: 1453
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1464
+ start:
+ character: 0
+ line: 1464
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1475
+ start:
+ character: 0
+ line: 1475
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1486
+ start:
+ character: 0
+ line: 1486
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1497
+ start:
+ character: 0
+ line: 1497
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1508
+ start:
+ character: 0
+ line: 1508
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1519
+ start:
+ character: 0
+ line: 1519
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1530
+ start:
+ character: 0
+ line: 1530
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1541
+ start:
+ character: 0
+ line: 1541
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1552
+ start:
+ character: 0
+ line: 1552
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1563
+ start:
+ character: 0
+ line: 1563
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1574
+ start:
+ character: 0
+ line: 1574
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1585
+ start:
+ character: 0
+ line: 1585
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1596
+ start:
+ character: 0
+ line: 1596
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1607
+ start:
+ character: 0
+ line: 1607
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1618
+ start:
+ character: 0
+ line: 1618
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1629
+ start:
+ character: 0
+ line: 1629
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1640
+ start:
+ character: 0
+ line: 1640
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1651
+ start:
+ character: 0
+ line: 1651
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1662
+ start:
+ character: 0
+ line: 1662
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1673
+ start:
+ character: 0
+ line: 1673
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1684
+ start:
+ character: 0
+ line: 1684
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1695
+ start:
+ character: 0
+ line: 1695
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1706
+ start:
+ character: 0
+ line: 1706
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1717
+ start:
+ character: 0
+ line: 1717
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1728
+ start:
+ character: 0
+ line: 1728
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1739
+ start:
+ character: 0
+ line: 1739
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1750
+ start:
+ character: 0
+ line: 1750
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1761
+ start:
+ character: 0
+ line: 1761
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1772
+ start:
+ character: 0
+ line: 1772
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1783
+ start:
+ character: 0
+ line: 1783
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1794
+ start:
+ character: 0
+ line: 1794
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1805
+ start:
+ character: 0
+ line: 1805
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1816
+ start:
+ character: 0
+ line: 1816
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1827
+ start:
+ character: 0
+ line: 1827
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1838
+ start:
+ character: 0
+ line: 1838
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1849
+ start:
+ character: 0
+ line: 1849
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1860
+ start:
+ character: 0
+ line: 1860
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1871
+ start:
+ character: 0
+ line: 1871
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1882
+ start:
+ character: 0
+ line: 1882
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1893
+ start:
+ character: 0
+ line: 1893
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1904
+ start:
+ character: 0
+ line: 1904
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1915
+ start:
+ character: 0
+ line: 1915
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1926
+ start:
+ character: 0
+ line: 1926
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1937
+ start:
+ character: 0
+ line: 1937
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1948
+ start:
+ character: 0
+ line: 1948
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1959
+ start:
+ character: 0
+ line: 1959
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1970
+ start:
+ character: 0
+ line: 1970
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1981
+ start:
+ character: 0
+ line: 1981
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1992
+ start:
+ character: 0
+ line: 1992
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2003
+ start:
+ character: 0
+ line: 2003
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2014
+ start:
+ character: 0
+ line: 2014
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2025
+ start:
+ character: 0
+ line: 2025
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2036
+ start:
+ character: 0
+ line: 2036
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2047
+ start:
+ character: 0
+ line: 2047
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2058
+ start:
+ character: 0
+ line: 2058
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2069
+ start:
+ character: 0
+ line: 2069
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2080
+ start:
+ character: 0
+ line: 2080
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2091
+ start:
+ character: 0
+ line: 2091
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2102
+ start:
+ character: 0
+ line: 2102
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2113
+ start:
+ character: 0
+ line: 2113
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2124
+ start:
+ character: 0
+ line: 2124
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2135
+ start:
+ character: 0
+ line: 2135
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2146
+ start:
+ character: 0
+ line: 2146
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2157
+ start:
+ character: 0
+ line: 2157
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2168
+ start:
+ character: 0
+ line: 2168
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2179
+ start:
+ character: 0
+ line: 2179
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2190
+ start:
+ character: 0
+ line: 2190
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2201
+ start:
+ character: 0
+ line: 2201
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2212
+ start:
+ character: 0
+ line: 2212
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2223
+ start:
+ character: 0
+ line: 2223
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2234
+ start:
+ character: 0
+ line: 2234
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2245
+ start:
+ character: 0
+ line: 2245
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2256
+ start:
+ character: 0
+ line: 2256
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2267
+ start:
+ character: 0
+ line: 2267
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2278
+ start:
+ character: 0
+ line: 2278
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2289
+ start:
+ character: 0
+ line: 2289
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2300
+ start:
+ character: 0
+ line: 2300
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2311
+ start:
+ character: 0
+ line: 2311
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2322
+ start:
+ character: 0
+ line: 2322
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2333
+ start:
+ character: 0
+ line: 2333
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2344
+ start:
+ character: 0
+ line: 2344
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2355
+ start:
+ character: 0
+ line: 2355
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2366
+ start:
+ character: 0
+ line: 2366
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2377
+ start:
+ character: 0
+ line: 2377
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2388
+ start:
+ character: 0
+ line: 2388
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2399
+ start:
+ character: 0
+ line: 2399
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2410
+ start:
+ character: 0
+ line: 2410
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2421
+ start:
+ character: 0
+ line: 2421
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2432
+ start:
+ character: 0
+ line: 2432
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2443
+ start:
+ character: 0
+ line: 2443
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2454
+ start:
+ character: 0
+ line: 2454
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2465
+ start:
+ character: 0
+ line: 2465
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2476
+ start:
+ character: 0
+ line: 2476
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2487
+ start:
+ character: 0
+ line: 2487
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2498
+ start:
+ character: 0
+ line: 2498
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2509
+ start:
+ character: 0
+ line: 2509
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2520
+ start:
+ character: 0
+ line: 2520
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2531
+ start:
+ character: 0
+ line: 2531
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2542
+ start:
+ character: 0
+ line: 2542
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2553
+ start:
+ character: 0
+ line: 2553
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2564
+ start:
+ character: 0
+ line: 2564
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2575
+ start:
+ character: 0
+ line: 2575
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2586
+ start:
+ character: 0
+ line: 2586
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2597
+ start:
+ character: 0
+ line: 2597
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2608
+ start:
+ character: 0
+ line: 2608
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2619
+ start:
+ character: 0
+ line: 2619
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2630
+ start:
+ character: 0
+ line: 2630
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2641
+ start:
+ character: 0
+ line: 2641
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2652
+ start:
+ character: 0
+ line: 2652
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2663
+ start:
+ character: 0
+ line: 2663
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2674
+ start:
+ character: 0
+ line: 2674
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2685
+ start:
+ character: 0
+ line: 2685
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2696
+ start:
+ character: 0
+ line: 2696
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2707
+ start:
+ character: 0
+ line: 2707
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2718
+ start:
+ character: 0
+ line: 2718
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2729
+ start:
+ character: 0
+ line: 2729
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2740
+ start:
+ character: 0
+ line: 2740
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2751
+ start:
+ character: 0
+ line: 2751
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2762
+ start:
+ character: 0
+ line: 2762
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2773
+ start:
+ character: 0
+ line: 2773
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2784
+ start:
+ character: 0
+ line: 2784
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2795
+ start:
+ character: 0
+ line: 2795
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2806
+ start:
+ character: 0
+ line: 2806
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2817
+ start:
+ character: 0
+ line: 2817
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2828
+ start:
+ character: 0
+ line: 2828
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2839
+ start:
+ character: 0
+ line: 2839
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2850
+ start:
+ character: 0
+ line: 2850
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2861
+ start:
+ character: 0
+ line: 2861
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2872
+ start:
+ character: 0
+ line: 2872
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2883
+ start:
+ character: 0
+ line: 2883
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2894
+ start:
+ character: 0
+ line: 2894
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2905
+ start:
+ character: 0
+ line: 2905
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2916
+ start:
+ character: 0
+ line: 2916
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2927
+ start:
+ character: 0
+ line: 2927
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2938
+ start:
+ character: 0
+ line: 2938
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2949
+ start:
+ character: 0
+ line: 2949
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2960
+ start:
+ character: 0
+ line: 2960
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2971
+ start:
+ character: 0
+ line: 2971
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2982
+ start:
+ character: 0
+ line: 2982
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2993
+ start:
+ character: 0
+ line: 2993
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3004
+ start:
+ character: 0
+ line: 3004
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3015
+ start:
+ character: 0
+ line: 3015
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3026
+ start:
+ character: 0
+ line: 3026
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3037
+ start:
+ character: 0
+ line: 3037
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3048
+ start:
+ character: 0
+ line: 3048
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3059
+ start:
+ character: 0
+ line: 3059
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3070
+ start:
+ character: 0
+ line: 3070
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3081
+ start:
+ character: 0
+ line: 3081
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3092
+ start:
+ character: 0
+ line: 3092
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3103
+ start:
+ character: 0
+ line: 3103
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3114
+ start:
+ character: 0
+ line: 3114
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3125
+ start:
+ character: 0
+ line: 3125
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3136
+ start:
+ character: 0
+ line: 3136
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3147
+ start:
+ character: 0
+ line: 3147
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3158
+ start:
+ character: 0
+ line: 3158
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3169
+ start:
+ character: 0
+ line: 3169
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3180
+ start:
+ character: 0
+ line: 3180
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3191
+ start:
+ character: 0
+ line: 3191
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3202
+ start:
+ character: 0
+ line: 3202
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3213
+ start:
+ character: 0
+ line: 3213
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3224
+ start:
+ character: 0
+ line: 3224
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3235
+ start:
+ character: 0
+ line: 3235
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3246
+ start:
+ character: 0
+ line: 3246
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3257
+ start:
+ character: 0
+ line: 3257
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3268
+ start:
+ character: 0
+ line: 3268
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3279
+ start:
+ character: 0
+ line: 3279
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3290
+ start:
+ character: 0
+ line: 3290
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3301
+ start:
+ character: 0
+ line: 3301
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3312
+ start:
+ character: 0
+ line: 3312
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3323
+ start:
+ character: 0
+ line: 3323
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3334
+ start:
+ character: 0
+ line: 3334
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3345
+ start:
+ character: 0
+ line: 3345
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3356
+ start:
+ character: 0
+ line: 3356
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3367
+ start:
+ character: 0
+ line: 3367
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3378
+ start:
+ character: 0
+ line: 3378
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3389
+ start:
+ character: 0
+ line: 3389
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3400
+ start:
+ character: 0
+ line: 3400
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3411
+ start:
+ character: 0
+ line: 3411
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3422
+ start:
+ character: 0
+ line: 3422
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3433
+ start:
+ character: 0
+ line: 3433
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3444
+ start:
+ character: 0
+ line: 3444
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3455
+ start:
+ character: 0
+ line: 3455
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3466
+ start:
+ character: 0
+ line: 3466
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3477
+ start:
+ character: 0
+ line: 3477
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3488
+ start:
+ character: 0
+ line: 3488
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3499
+ start:
+ character: 0
+ line: 3499
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3510
+ start:
+ character: 0
+ line: 3510
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3521
+ start:
+ character: 0
+ line: 3521
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3532
+ start:
+ character: 0
+ line: 3532
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3543
+ start:
+ character: 0
+ line: 3543
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3554
+ start:
+ character: 0
+ line: 3554
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3565
+ start:
+ character: 0
+ line: 3565
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3576
+ start:
+ character: 0
+ line: 3576
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3587
+ start:
+ character: 0
+ line: 3587
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3598
+ start:
+ character: 0
+ line: 3598
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3609
+ start:
+ character: 0
+ line: 3609
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3620
+ start:
+ character: 0
+ line: 3620
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3631
+ start:
+ character: 0
+ line: 3631
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3642
+ start:
+ character: 0
+ line: 3642
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3653
+ start:
+ character: 0
+ line: 3653
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3664
+ start:
+ character: 0
+ line: 3664
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3675
+ start:
+ character: 0
+ line: 3675
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3686
+ start:
+ character: 0
+ line: 3686
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3697
+ start:
+ character: 0
+ line: 3697
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3708
+ start:
+ character: 0
+ line: 3708
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3719
+ start:
+ character: 0
+ line: 3719
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3730
+ start:
+ character: 0
+ line: 3730
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3741
+ start:
+ character: 0
+ line: 3741
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3752
+ start:
+ character: 0
+ line: 3752
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3763
+ start:
+ character: 0
+ line: 3763
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3774
+ start:
+ character: 0
+ line: 3774
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3785
+ start:
+ character: 0
+ line: 3785
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3796
+ start:
+ character: 0
+ line: 3796
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3807
+ start:
+ character: 0
+ line: 3807
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3818
+ start:
+ character: 0
+ line: 3818
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3829
+ start:
+ character: 0
+ line: 3829
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3840
+ start:
+ character: 0
+ line: 3840
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3851
+ start:
+ character: 0
+ line: 3851
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3862
+ start:
+ character: 0
+ line: 3862
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3873
+ start:
+ character: 0
+ line: 3873
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3884
+ start:
+ character: 0
+ line: 3884
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3895
+ start:
+ character: 0
+ line: 3895
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3906
+ start:
+ character: 0
+ line: 3906
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3917
+ start:
+ character: 0
+ line: 3917
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3928
+ start:
+ character: 0
+ line: 3928
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3939
+ start:
+ character: 0
+ line: 3939
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3950
+ start:
+ character: 0
+ line: 3950
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3961
+ start:
+ character: 0
+ line: 3961
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3972
+ start:
+ character: 0
+ line: 3972
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3983
+ start:
+ character: 0
+ line: 3983
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3994
+ start:
+ character: 0
+ line: 3994
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4005
+ start:
+ character: 0
+ line: 4005
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4016
+ start:
+ character: 0
+ line: 4016
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4027
+ start:
+ character: 0
+ line: 4027
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4038
+ start:
+ character: 0
+ line: 4038
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4049
+ start:
+ character: 0
+ line: 4049
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4060
+ start:
+ character: 0
+ line: 4060
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4071
+ start:
+ character: 0
+ line: 4071
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4082
+ start:
+ character: 0
+ line: 4082
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4093
+ start:
+ character: 0
+ line: 4093
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4104
+ start:
+ character: 0
+ line: 4104
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4115
+ start:
+ character: 0
+ line: 4115
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4126
+ start:
+ character: 0
+ line: 4126
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4137
+ start:
+ character: 0
+ line: 4137
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4148
+ start:
+ character: 0
+ line: 4148
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4159
+ start:
+ character: 0
+ line: 4159
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4170
+ start:
+ character: 0
+ line: 4170
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4181
+ start:
+ character: 0
+ line: 4181
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4192
+ start:
+ character: 0
+ line: 4192
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4203
+ start:
+ character: 0
+ line: 4203
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4214
+ start:
+ character: 0
+ line: 4214
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4225
+ start:
+ character: 0
+ line: 4225
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4236
+ start:
+ character: 0
+ line: 4236
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4247
+ start:
+ character: 0
+ line: 4247
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4258
+ start:
+ character: 0
+ line: 4258
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4269
+ start:
+ character: 0
+ line: 4269
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4280
+ start:
+ character: 0
+ line: 4280
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4291
+ start:
+ character: 0
+ line: 4291
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4302
+ start:
+ character: 0
+ line: 4302
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4313
+ start:
+ character: 0
+ line: 4313
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4324
+ start:
+ character: 0
+ line: 4324
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4335
+ start:
+ character: 0
+ line: 4335
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4346
+ start:
+ character: 0
+ line: 4346
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4357
+ start:
+ character: 0
+ line: 4357
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4368
+ start:
+ character: 0
+ line: 4368
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4379
+ start:
+ character: 0
+ line: 4379
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4390
+ start:
+ character: 0
+ line: 4390
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4401
+ start:
+ character: 0
+ line: 4401
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4412
+ start:
+ character: 0
+ line: 4412
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4423
+ start:
+ character: 0
+ line: 4423
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4434
+ start:
+ character: 0
+ line: 4434
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4445
+ start:
+ character: 0
+ line: 4445
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4456
+ start:
+ character: 0
+ line: 4456
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4467
+ start:
+ character: 0
+ line: 4467
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4478
+ start:
+ character: 0
+ line: 4478
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4489
+ start:
+ character: 0
+ line: 4489
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4500
+ start:
+ character: 0
+ line: 4500
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4511
+ start:
+ character: 0
+ line: 4511
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4522
+ start:
+ character: 0
+ line: 4522
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4533
+ start:
+ character: 0
+ line: 4533
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4544
+ start:
+ character: 0
+ line: 4544
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4555
+ start:
+ character: 0
+ line: 4555
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4566
+ start:
+ character: 0
+ line: 4566
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4577
+ start:
+ character: 0
+ line: 4577
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4588
+ start:
+ character: 0
+ line: 4588
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4599
+ start:
+ character: 0
+ line: 4599
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4610
+ start:
+ character: 0
+ line: 4610
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 111
+ start:
+ character: 0
+ line: 111
+ uri: very_big_file.robot
+ name: Testcase 10
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 122
+ start:
+ character: 0
+ line: 122
+ uri: very_big_file.robot
+ name: Testcase 11
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 133
+ start:
+ character: 0
+ line: 133
+ uri: very_big_file.robot
+ name: Testcase 12
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 144
+ start:
+ character: 0
+ line: 144
+ uri: very_big_file.robot
+ name: Testcase 13
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 155
+ start:
+ character: 0
+ line: 155
+ uri: very_big_file.robot
+ name: Testcase 14
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 166
+ start:
+ character: 0
+ line: 166
+ uri: very_big_file.robot
+ name: Testcase 15
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 177
+ start:
+ character: 0
+ line: 177
+ uri: very_big_file.robot
+ name: Testcase 16
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 188
+ start:
+ character: 0
+ line: 188
+ uri: very_big_file.robot
+ name: Testcase 17
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 199
+ start:
+ character: 0
+ line: 199
+ uri: very_big_file.robot
+ name: Testcase 18
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 210
+ start:
+ character: 0
+ line: 210
+ uri: very_big_file.robot
+ name: Testcase 19
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 23
+ start:
+ character: 0
+ line: 23
+ uri: very_big_file.robot
+ name: Testcase 2
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 221
+ start:
+ character: 0
+ line: 221
+ uri: very_big_file.robot
+ name: Testcase 20
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 232
+ start:
+ character: 0
+ line: 232
+ uri: very_big_file.robot
+ name: Testcase 21
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 243
+ start:
+ character: 0
+ line: 243
+ uri: very_big_file.robot
+ name: Testcase 22
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 254
+ start:
+ character: 0
+ line: 254
+ uri: very_big_file.robot
+ name: Testcase 23
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 265
+ start:
+ character: 0
+ line: 265
+ uri: very_big_file.robot
+ name: Testcase 24
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 276
+ start:
+ character: 0
+ line: 276
+ uri: very_big_file.robot
+ name: Testcase 25
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 287
+ start:
+ character: 0
+ line: 287
+ uri: very_big_file.robot
+ name: Testcase 26
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 298
+ start:
+ character: 0
+ line: 298
+ uri: very_big_file.robot
+ name: Testcase 27
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 309
+ start:
+ character: 0
+ line: 309
+ uri: very_big_file.robot
+ name: Testcase 28
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 320
+ start:
+ character: 0
+ line: 320
+ uri: very_big_file.robot
+ name: Testcase 29
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 34
+ start:
+ character: 0
+ line: 34
+ uri: very_big_file.robot
+ name: Testcase 3
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 331
+ start:
+ character: 0
+ line: 331
+ uri: very_big_file.robot
+ name: Testcase 30
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 342
+ start:
+ character: 0
+ line: 342
+ uri: very_big_file.robot
+ name: Testcase 31
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 353
+ start:
+ character: 0
+ line: 353
+ uri: very_big_file.robot
+ name: Testcase 32
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 364
+ start:
+ character: 0
+ line: 364
+ uri: very_big_file.robot
+ name: Testcase 33
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 375
+ start:
+ character: 0
+ line: 375
+ uri: very_big_file.robot
+ name: Testcase 34
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 386
+ start:
+ character: 0
+ line: 386
+ uri: very_big_file.robot
+ name: Testcase 35
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 397
+ start:
+ character: 0
+ line: 397
+ uri: very_big_file.robot
+ name: Testcase 36
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 408
+ start:
+ character: 0
+ line: 408
+ uri: very_big_file.robot
+ name: Testcase 37
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 419
+ start:
+ character: 0
+ line: 419
+ uri: very_big_file.robot
+ name: Testcase 38
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 430
+ start:
+ character: 0
+ line: 430
+ uri: very_big_file.robot
+ name: Testcase 39
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 45
+ start:
+ character: 0
+ line: 45
+ uri: very_big_file.robot
+ name: Testcase 4
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 441
+ start:
+ character: 0
+ line: 441
+ uri: very_big_file.robot
+ name: Testcase 40
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 452
+ start:
+ character: 0
+ line: 452
+ uri: very_big_file.robot
+ name: Testcase 41
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 463
+ start:
+ character: 0
+ line: 463
+ uri: very_big_file.robot
+ name: Testcase 42
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 474
+ start:
+ character: 0
+ line: 474
+ uri: very_big_file.robot
+ name: Testcase 43
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 485
+ start:
+ character: 0
+ line: 485
+ uri: very_big_file.robot
+ name: Testcase 44
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 496
+ start:
+ character: 0
+ line: 496
+ uri: very_big_file.robot
+ name: Testcase 45
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 507
+ start:
+ character: 0
+ line: 507
+ uri: very_big_file.robot
+ name: Testcase 46
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 518
+ start:
+ character: 0
+ line: 518
+ uri: very_big_file.robot
+ name: Testcase 47
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 529
+ start:
+ character: 0
+ line: 529
+ uri: very_big_file.robot
+ name: Testcase 48
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 540
+ start:
+ character: 0
+ line: 540
+ uri: very_big_file.robot
+ name: Testcase 49
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: very_big_file.robot
+ name: Testcase 5
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 551
+ start:
+ character: 0
+ line: 551
+ uri: very_big_file.robot
+ name: Testcase 50
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 562
+ start:
+ character: 0
+ line: 562
+ uri: very_big_file.robot
+ name: Testcase 51
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 573
+ start:
+ character: 0
+ line: 573
+ uri: very_big_file.robot
+ name: Testcase 52
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 584
+ start:
+ character: 0
+ line: 584
+ uri: very_big_file.robot
+ name: Testcase 53
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 595
+ start:
+ character: 0
+ line: 595
+ uri: very_big_file.robot
+ name: Testcase 54
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 606
+ start:
+ character: 0
+ line: 606
+ uri: very_big_file.robot
+ name: Testcase 55
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 617
+ start:
+ character: 0
+ line: 617
+ uri: very_big_file.robot
+ name: Testcase 56
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 628
+ start:
+ character: 0
+ line: 628
+ uri: very_big_file.robot
+ name: Testcase 57
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 639
+ start:
+ character: 0
+ line: 639
+ uri: very_big_file.robot
+ name: Testcase 58
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 650
+ start:
+ character: 0
+ line: 650
+ uri: very_big_file.robot
+ name: Testcase 59
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 67
+ start:
+ character: 0
+ line: 67
+ uri: very_big_file.robot
+ name: Testcase 6
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 661
+ start:
+ character: 0
+ line: 661
+ uri: very_big_file.robot
+ name: Testcase 60
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 672
+ start:
+ character: 0
+ line: 672
+ uri: very_big_file.robot
+ name: Testcase 61
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 683
+ start:
+ character: 0
+ line: 683
+ uri: very_big_file.robot
+ name: Testcase 62
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 694
+ start:
+ character: 0
+ line: 694
+ uri: very_big_file.robot
+ name: Testcase 63
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 78
+ start:
+ character: 0
+ line: 78
+ uri: very_big_file.robot
+ name: Testcase 7
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 89
+ start:
+ character: 0
+ line: 89
+ uri: very_big_file.robot
+ name: Testcase 8
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 100
+ start:
+ character: 0
+ line: 100
+ uri: very_big_file.robot
+ name: Testcase 9
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 63
+ line: 4627
+ start:
+ character: 0
+ line: 4627
+ uri: very_big_file.robot
+ name: the Android ${name} is hiding in a futuristic city ${city_name}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 70
+ line: 4639
+ start:
+ character: 0
+ line: 4639
+ uri: very_big_file.robot
+ name: the Android ${name} responds with a cryptic answer "${cryptic_answer}"
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 67
+ line: 4651
+ start:
+ character: 0
+ line: 4651
+ uri: very_big_file.robot
+ name: the Blade Runner ${name} decides whether to "${action}" the Android
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 75
+ line: 4623
+ start:
+ character: 0
+ line: 4623
+ uri: very_big_file.robot
+ name: the Blade Runner ${name} is on a mission to find a rogue Android Stan Riley
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 74
+ line: 4635
+ start:
+ character: 0
+ line: 4635
+ uri: very_big_file.robot
+ name: the Blade Runner asks the Android if it knows the meaning of "${question}"
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 64
+ line: 4631
+ start:
+ character: 0
+ line: 4631
+ uri: very_big_file.robot
+ name: the Blade Runner encounters the Android ${name} in a ${location}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 55
+ line: 4647
+ start:
+ character: 0
+ line: 4647
+ uri: very_big_file.robot
+ name: the Blade Runner performs a ${test} test on the Android
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 50
+ line: 4643
+ start:
+ character: 0
+ line: 4643
+ uri: very_big_file.robot
+ name: the Blade Runner suspects the Android is not human
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 50
+ line: 4655
+ start:
+ character: 0
+ line: 4655
+ uri: very_big_file.robot
+ name: the test confirms the Android ${name} is non-human
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[as].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[as].out
new file mode 100644
index 000000000..55dcf4bfa
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[as].out
@@ -0,0 +1,7981 @@
+result:
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 17
+ start:
+ character: 0
+ line: 17
+ uri: bddstyle.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 18
+ start:
+ character: 0
+ line: 18
+ uri: bddstyle.robot
+ name: Testcase 2
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 19
+ start:
+ character: 0
+ line: 19
+ uri: bddstyle.robot
+ name: Testcase 3
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 20
+ start:
+ character: 0
+ line: 20
+ uri: bddstyle.robot
+ name: Testcase 4
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 34
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: bddstyle.robot
+ name: value of var <${input}> is present
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 51
+ line: 3
+ start:
+ character: 0
+ line: 3
+ uri: bddstyle.robot
+ name: value of var input is multiplied by "${multiplier}"
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 41
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: bddstyle.robot
+ name: value of var result should be [${result}]
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
+ line: 24
+ start:
+ character: 2
+ line: 24
+ uri: code_action_show_documentation.robot
+ name: ${bananas}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 17
+ line: 115
+ start:
+ character: 7
+ line: 115
+ uri: code_action_show_documentation.robot
+ name: ${bananas}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 21
+ line: 118
+ start:
+ character: 0
+ line: 118
+ uri: code_action_show_documentation.robot
+ name: a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 38
+ line: 101
+ start:
+ character: 0
+ line: 101
+ uri: code_action_show_documentation.robot
+ name: add ${number:[0-9]+} coins to ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 128
+ start:
+ character: 0
+ line: 128
+ uri: code_action_show_documentation.robot
+ name: again a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 123
+ start:
+ character: 0
+ line: 123
+ uri: code_action_show_documentation.robot
+ name: another keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 31
+ line: 115
+ start:
+ character: 0
+ line: 115
+ uri: code_action_show_documentation.robot
+ name: do add ${bananas} and to my bag
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 46
+ line: 164
+ start:
+ character: 34
+ line: 164
+ uri: document_highlight.robot
+ name: ${a_second_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 46
+ line: 169
+ start:
+ character: 34
+ line: 169
+ uri: document_highlight.robot
+ name: ${a_second_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 21
+ line: 112
+ start:
+ character: 0
+ line: 112
+ uri: document_highlight.robot
+ name: a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 49
+ line: 155
+ start:
+ character: 0
+ line: 155
+ uri: document_highlight.robot
+ name: a keyword with variables in doc, timeout and tags
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 65
+ line: 168
+ start:
+ character: 0
+ line: 168
+ uri: document_highlight.robot
+ name: a keyword with variables in doc, timeout and tags with args first
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 38
+ line: 149
+ start:
+ character: 0
+ line: 149
+ uri: document_highlight.robot
+ name: add ${number:[0-9]+} coins to ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 131
+ start:
+ character: 0
+ line: 131
+ uri: document_highlight.robot
+ name: again a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 121
+ start:
+ character: 0
+ line: 121
+ uri: document_highlight.robot
+ name: another keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: duplicated
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 20
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: duplicated.resource
+ name: A Resource Keyword A
+ tags: null
+- !WorkspaceSymbol
+ container_name: duplicated
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 20
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: duplicated.resource
+ name: a resource keyword B
+ tags: null
+- !WorkspaceSymbol
+ container_name: embedded_args
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 3
+ line: 1
+ uri: embedded_args.resource
+ name: ${task}
+ tags: null
+- !WorkspaceSymbol
+ container_name: embedded_args
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 24
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: embedded_args.resource
+ name: do ${task} with ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: embedded_keywords
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 43
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: embedded_keywords.robot
+ name: do ${something} with ${thing} and this data
+ tags: null
+- !WorkspaceSymbol
+ container_name: firstresource
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 20
+ line: 4
+ start:
+ character: 2
+ line: 4
+ uri: firstresource.resource
+ name: ${A_VAR_FROM_RESOURE}
+ tags: null
+- !WorkspaceSymbol
+ container_name: firstresource
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 60
+ line: 23
+ start:
+ character: 48
+ line: 23
+ uri: firstresource.resource
+ name: ${a_short_name}
+ tags: null
+- !WorkspaceSymbol
+ container_name: firstresource
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 19
+ line: 22
+ start:
+ character: 0
+ line: 22
+ uri: firstresource.resource
+ name: a keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: firstresource
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 7
+ start:
+ character: 0
+ line: 7
+ uri: firstresource.resource
+ name: do something in a resource
+ tags: null
+- !WorkspaceSymbol
+ container_name: foldingrange
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 52
+ start:
+ character: 0
+ line: 52
+ uri: foldingrange.robot
+ name: IF statements
+ tags: null
+- !WorkspaceSymbol
+ container_name: foldingrange
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 14
+ line: 92
+ start:
+ character: 0
+ line: 92
+ uri: foldingrange.robot
+ name: TRY statements
+ tags: null
+- !WorkspaceSymbol
+ container_name: foldingrange
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 16
+ line: 80
+ start:
+ character: 0
+ line: 80
+ uri: foldingrange.robot
+ name: WHILE statements
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 46
+ line: 213
+ start:
+ character: 34
+ line: 213
+ uri: goto.robot
+ name: ${a_second_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 46
+ line: 218
+ start:
+ character: 34
+ line: 218
+ uri: goto.robot
+ name: ${a_second_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 21
+ line: 154
+ start:
+ character: 0
+ line: 154
+ uri: goto.robot
+ name: a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 49
+ line: 204
+ start:
+ character: 0
+ line: 204
+ uri: goto.robot
+ name: a keyword with variables in doc, timeout and tags
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 65
+ line: 217
+ start:
+ character: 0
+ line: 217
+ uri: goto.robot
+ name: a keyword with variables in doc, timeout and tags with args first
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 16
+ line: 149
+ start:
+ character: 0
+ line: 149
+ uri: goto.robot
+ name: a simple keyword
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 16
+ line: 98
+ start:
+ character: 0
+ line: 98
+ uri: goto.robot
+ name: a templated Test
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 186
+ start:
+ character: 0
+ line: 186
+ uri: goto.robot
+ name: again a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 163
+ start:
+ character: 0
+ line: 163
+ uri: goto.robot
+ name: another keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 32
+ line: 173
+ start:
+ character: 0
+ line: 173
+ uri: goto.robot
+ name: just another keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 21
+ line: 266
+ start:
+ character: 0
+ line: 266
+ uri: hover.robot
+ name: a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 16
+ line: 258
+ start:
+ character: 0
+ line: 258
+ uri: hover.robot
+ name: a simple keyword
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 285
+ start:
+ character: 0
+ line: 285
+ uri: hover.robot
+ name: again a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 275
+ start:
+ character: 0
+ line: 275
+ uri: hover.robot
+ name: another keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: indexed_variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 17
+ line: 3
+ start:
+ character: 2
+ line: 3
+ uri: indexed_variables.robot
+ name: ${A_LIST ${index}}
+ tags: null
+- !WorkspaceSymbol
+ container_name: indexed_variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 8
+ line: 1
+ start:
+ character: 2
+ line: 1
+ uri: indexed_variables.robot
+ name: '@{A_LIST}'
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
+ line: 26
+ start:
+ character: 2
+ line: 26
+ uri: references.robot
+ name: ${bananas}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 17
+ line: 145
+ start:
+ character: 7
+ line: 145
+ uri: references.robot
+ name: ${bananas}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 57
+ line: 234
+ start:
+ character: 0
+ line: 234
+ uri: references.robot
+ name: a keyword with a while loop and variable in while options
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 21
+ line: 149
+ start:
+ character: 0
+ line: 149
+ uri: references.robot
+ name: a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 33
+ line: 220
+ start:
+ character: 0
+ line: 220
+ uri: references.robot
+ name: a keyword with python expressions
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 49
+ line: 178
+ start:
+ character: 0
+ line: 178
+ uri: references.robot
+ name: a keyword with variables in doc, timeout and tags
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 65
+ line: 191
+ start:
+ character: 0
+ line: 191
+ uri: references.robot
+ name: a keyword with variables in doc, timeout and tags with args first
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 44
+ line: 256
+ start:
+ character: 0
+ line: 256
+ uri: references.robot
+ name: a keyword with while and expression variable
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 38
+ line: 125
+ start:
+ character: 0
+ line: 125
+ uri: references.robot
+ name: add ${number:[0-9]+} coins to ${thing}
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 168
+ start:
+ character: 0
+ line: 168
+ uri: references.robot
+ name: again a keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 27
+ line: 158
+ start:
+ character: 0
+ line: 158
+ uri: references.robot
+ name: another keyword with params
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 31
+ line: 145
+ start:
+ character: 0
+ line: 145
+ uri: references.robot
+ name: do add ${bananas} and to my bag
+ tags: null
+- !WorkspaceSymbol
+ container_name: sematic_tokenizing
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 40
+ line: 4
+ start:
+ character: 0
+ line: 4
+ uri: sematic_tokenizing.robot
+ name: Continue when iteration limit is reached
+ tags: null
+- !WorkspaceSymbol
+ container_name: sematic_tokenizing
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 24
+ line: 10
+ start:
+ character: 0
+ line: 10
+ uri: sematic_tokenizing.robot
+ name: Limit as iteration count
+ tags: null
+- !WorkspaceSymbol
+ container_name: sematic_tokenizing
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 27
+ line: 20
+ start:
+ character: 0
+ line: 20
+ uri: sematic_tokenizing.robot
+ name: some embedded args keywords
+ tags: null
+- !WorkspaceSymbol
+ container_name: some_tasks
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: some_tasks.robot
+ name: a simple task
+ tags: null
+- !WorkspaceSymbol
+ container_name: some_tasks
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 19
+ line: 4
+ start:
+ character: 0
+ line: 4
+ uri: some_tasks.robot
+ name: another simple task
+ tags: null
+- !WorkspaceSymbol
+ container_name: sometasks
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: sometasks.robot
+ name: first task
+ tags: null
+- !WorkspaceSymbol
+ container_name: sometasks
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 4
+ start:
+ character: 0
+ line: 4
+ uri: sometasks.robot
+ name: second task
+ tags: null
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 10
+ line: 39
+ start:
+ character: 0
+ line: 39
+ uri: symbols.robot
+ name: a keywords
+ tags: null
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 20
+ line: 63
+ start:
+ character: 0
+ line: 63
+ uri: symbols.robot
+ name: vars with equal sign
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 47
+ line: 85
+ start:
+ character: 0
+ line: 85
+ uri: templates.robot
+ name: check that ${a} plus ${b:[a-c]+} is ${expected}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 16
+ line: 5
+ start:
+ character: 2
+ line: 5
+ uri: templates2.robot
+ name: ${VALID PASSWORD}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 12
+ line: 4
+ start:
+ character: 2
+ line: 4
+ uri: templates2.robot
+ name: ${VALID USER}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 44
+ line: 49
+ start:
+ character: 36
+ line: 49
+ uri: templates2.robot
+ name: ${password}
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 14
+ line: 13
+ start:
+ character: 0
+ line: 13
+ uri: templates2.robot
+ name: Empty Password
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 28
+ line: 14
+ start:
+ character: 0
+ line: 14
+ uri: templates2.robot
+ name: Empty User Name and Password
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 16
+ line: 10
+ start:
+ character: 0
+ line: 10
+ uri: templates2.robot
+ name: Invalid Password
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 17
+ line: 9
+ start:
+ character: 0
+ line: 9
+ uri: templates2.robot
+ name: Invalid User Name
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 11
+ start:
+ character: 0
+ line: 11
+ uri: templates2.robot
+ name: Invalid User Name and Password
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates2
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 42
+ line: 48
+ start:
+ character: 0
+ line: 48
+ uri: templates2.robot
+ name: Login with invalid credentials should fail
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 7
+ line: 7
+ start:
+ character: 2
+ line: 7
+ uri: variable_conversion.robot
+ name: ${DATES}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 53
+ line: 83
+ start:
+ character: 0
+ line: 83
+ uri: variable_conversion.robot
+ name: 'a ${keyword: int:keyword|testcase} with embedded args'
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 26
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: variable_conversion.robot
+ name: a simple keyword with args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 39
+ line: 64
+ start:
+ character: 0
+ line: 64
+ uri: variable_conversion.robot
+ name: a simple keyword with default arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 36
+ line: 69
+ start:
+ character: 0
+ line: 69
+ uri: variable_conversion.robot
+ name: a simple keyword with union argument
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 30
+ line: 50
+ start:
+ character: 0
+ line: 50
+ uri: variable_conversion.robot
+ name: calling kws with embedded args
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 13
+ line: 46
+ start:
+ character: 0
+ line: 46
+ uri: variable_conversion.robot
+ name: if assignment
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 19
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: variable_conversion.robot
+ name: keyword assignments
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 25
+ start:
+ character: 0
+ line: 25
+ uri: variable_conversion.robot
+ name: local variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variable_conversion
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 12
+ start:
+ character: 0
+ line: 12
+ uri: variable_conversion.robot
+ name: suite variables
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 9
+ line: 64
+ start:
+ character: 6
+ line: 64
+ uri: variables.robot
+ name: ${asd}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 31
+ line: 180
+ start:
+ character: 0
+ line: 180
+ uri: variables.robot
+ name: a keyword with kwonly separator
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 49
+ line: 173
+ start:
+ character: 0
+ line: 173
+ uri: variables.robot
+ name: check that ${a:[0-9\ ]*} plus ${b} is ${expected}
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 154
+ start:
+ character: 0
+ line: 154
+ uri: variables.robot
+ name: environmentvars
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 15
+ line: 157
+ start:
+ character: 0
+ line: 157
+ uri: variables.robot
+ name: named arguments
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 46
+ line: 39
+ start:
+ character: 34
+ line: 39
+ uri: vartest.robot
+ name: ${a_second_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 46
+ line: 45
+ start:
+ character: 34
+ line: 45
+ uri: vartest.robot
+ name: ${a_second_arg}
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 49
+ line: 29
+ start:
+ character: 0
+ line: 29
+ uri: vartest.robot
+ name: a keyword with variables in doc, timeout and tags
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 65
+ line: 43
+ start:
+ character: 0
+ line: 43
+ uri: vartest.robot
+ name: a keyword with variables in doc, timeout and tags with args first
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 22
+ line: 14
+ start:
+ character: 0
+ line: 14
+ uri: vartest.robot
+ name: var with invalid scope
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 14
+ line: 7
+ start:
+ character: 0
+ line: 7
+ uri: vartest.robot
+ name: var with scope
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 16
+ line: 8
+ start:
+ character: 2
+ line: 8
+ uri: very_big_file.robot
+ name: ${cryptic_answer}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 69
+ line: 4639
+ start:
+ character: 52
+ line: 4639
+ uri: very_big_file.robot
+ name: ${cryptic_answer}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 12
+ start:
+ character: 0
+ line: 12
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 705
+ start:
+ character: 0
+ line: 705
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 716
+ start:
+ character: 0
+ line: 716
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 727
+ start:
+ character: 0
+ line: 727
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 738
+ start:
+ character: 0
+ line: 738
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 749
+ start:
+ character: 0
+ line: 749
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 760
+ start:
+ character: 0
+ line: 760
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 771
+ start:
+ character: 0
+ line: 771
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 782
+ start:
+ character: 0
+ line: 782
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 793
+ start:
+ character: 0
+ line: 793
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 804
+ start:
+ character: 0
+ line: 804
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 815
+ start:
+ character: 0
+ line: 815
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 826
+ start:
+ character: 0
+ line: 826
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 837
+ start:
+ character: 0
+ line: 837
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 848
+ start:
+ character: 0
+ line: 848
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 859
+ start:
+ character: 0
+ line: 859
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 870
+ start:
+ character: 0
+ line: 870
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 881
+ start:
+ character: 0
+ line: 881
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 892
+ start:
+ character: 0
+ line: 892
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 903
+ start:
+ character: 0
+ line: 903
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 914
+ start:
+ character: 0
+ line: 914
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 925
+ start:
+ character: 0
+ line: 925
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 936
+ start:
+ character: 0
+ line: 936
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 947
+ start:
+ character: 0
+ line: 947
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 958
+ start:
+ character: 0
+ line: 958
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 969
+ start:
+ character: 0
+ line: 969
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 980
+ start:
+ character: 0
+ line: 980
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 991
+ start:
+ character: 0
+ line: 991
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1002
+ start:
+ character: 0
+ line: 1002
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1013
+ start:
+ character: 0
+ line: 1013
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1024
+ start:
+ character: 0
+ line: 1024
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1035
+ start:
+ character: 0
+ line: 1035
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1046
+ start:
+ character: 0
+ line: 1046
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1057
+ start:
+ character: 0
+ line: 1057
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1068
+ start:
+ character: 0
+ line: 1068
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1079
+ start:
+ character: 0
+ line: 1079
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1090
+ start:
+ character: 0
+ line: 1090
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1101
+ start:
+ character: 0
+ line: 1101
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1112
+ start:
+ character: 0
+ line: 1112
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1123
+ start:
+ character: 0
+ line: 1123
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1134
+ start:
+ character: 0
+ line: 1134
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1145
+ start:
+ character: 0
+ line: 1145
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1156
+ start:
+ character: 0
+ line: 1156
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1167
+ start:
+ character: 0
+ line: 1167
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1178
+ start:
+ character: 0
+ line: 1178
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1189
+ start:
+ character: 0
+ line: 1189
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1200
+ start:
+ character: 0
+ line: 1200
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1211
+ start:
+ character: 0
+ line: 1211
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1222
+ start:
+ character: 0
+ line: 1222
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1233
+ start:
+ character: 0
+ line: 1233
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1244
+ start:
+ character: 0
+ line: 1244
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1255
+ start:
+ character: 0
+ line: 1255
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1266
+ start:
+ character: 0
+ line: 1266
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1277
+ start:
+ character: 0
+ line: 1277
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1288
+ start:
+ character: 0
+ line: 1288
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1299
+ start:
+ character: 0
+ line: 1299
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1310
+ start:
+ character: 0
+ line: 1310
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1321
+ start:
+ character: 0
+ line: 1321
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1332
+ start:
+ character: 0
+ line: 1332
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1343
+ start:
+ character: 0
+ line: 1343
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1354
+ start:
+ character: 0
+ line: 1354
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1365
+ start:
+ character: 0
+ line: 1365
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1376
+ start:
+ character: 0
+ line: 1376
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1387
+ start:
+ character: 0
+ line: 1387
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1398
+ start:
+ character: 0
+ line: 1398
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1409
+ start:
+ character: 0
+ line: 1409
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1420
+ start:
+ character: 0
+ line: 1420
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1431
+ start:
+ character: 0
+ line: 1431
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1442
+ start:
+ character: 0
+ line: 1442
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1453
+ start:
+ character: 0
+ line: 1453
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1464
+ start:
+ character: 0
+ line: 1464
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1475
+ start:
+ character: 0
+ line: 1475
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1486
+ start:
+ character: 0
+ line: 1486
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1497
+ start:
+ character: 0
+ line: 1497
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1508
+ start:
+ character: 0
+ line: 1508
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1519
+ start:
+ character: 0
+ line: 1519
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1530
+ start:
+ character: 0
+ line: 1530
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1541
+ start:
+ character: 0
+ line: 1541
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1552
+ start:
+ character: 0
+ line: 1552
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1563
+ start:
+ character: 0
+ line: 1563
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1574
+ start:
+ character: 0
+ line: 1574
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1585
+ start:
+ character: 0
+ line: 1585
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1596
+ start:
+ character: 0
+ line: 1596
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1607
+ start:
+ character: 0
+ line: 1607
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1618
+ start:
+ character: 0
+ line: 1618
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1629
+ start:
+ character: 0
+ line: 1629
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1640
+ start:
+ character: 0
+ line: 1640
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1651
+ start:
+ character: 0
+ line: 1651
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1662
+ start:
+ character: 0
+ line: 1662
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1673
+ start:
+ character: 0
+ line: 1673
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1684
+ start:
+ character: 0
+ line: 1684
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1695
+ start:
+ character: 0
+ line: 1695
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1706
+ start:
+ character: 0
+ line: 1706
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1717
+ start:
+ character: 0
+ line: 1717
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1728
+ start:
+ character: 0
+ line: 1728
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1739
+ start:
+ character: 0
+ line: 1739
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1750
+ start:
+ character: 0
+ line: 1750
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1761
+ start:
+ character: 0
+ line: 1761
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1772
+ start:
+ character: 0
+ line: 1772
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1783
+ start:
+ character: 0
+ line: 1783
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1794
+ start:
+ character: 0
+ line: 1794
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1805
+ start:
+ character: 0
+ line: 1805
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1816
+ start:
+ character: 0
+ line: 1816
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1827
+ start:
+ character: 0
+ line: 1827
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1838
+ start:
+ character: 0
+ line: 1838
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1849
+ start:
+ character: 0
+ line: 1849
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1860
+ start:
+ character: 0
+ line: 1860
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1871
+ start:
+ character: 0
+ line: 1871
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1882
+ start:
+ character: 0
+ line: 1882
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1893
+ start:
+ character: 0
+ line: 1893
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1904
+ start:
+ character: 0
+ line: 1904
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1915
+ start:
+ character: 0
+ line: 1915
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1926
+ start:
+ character: 0
+ line: 1926
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1937
+ start:
+ character: 0
+ line: 1937
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1948
+ start:
+ character: 0
+ line: 1948
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1959
+ start:
+ character: 0
+ line: 1959
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1970
+ start:
+ character: 0
+ line: 1970
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1981
+ start:
+ character: 0
+ line: 1981
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1992
+ start:
+ character: 0
+ line: 1992
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2003
+ start:
+ character: 0
+ line: 2003
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2014
+ start:
+ character: 0
+ line: 2014
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2025
+ start:
+ character: 0
+ line: 2025
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2036
+ start:
+ character: 0
+ line: 2036
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2047
+ start:
+ character: 0
+ line: 2047
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2058
+ start:
+ character: 0
+ line: 2058
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2069
+ start:
+ character: 0
+ line: 2069
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2080
+ start:
+ character: 0
+ line: 2080
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2091
+ start:
+ character: 0
+ line: 2091
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2102
+ start:
+ character: 0
+ line: 2102
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2113
+ start:
+ character: 0
+ line: 2113
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2124
+ start:
+ character: 0
+ line: 2124
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2135
+ start:
+ character: 0
+ line: 2135
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2146
+ start:
+ character: 0
+ line: 2146
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2157
+ start:
+ character: 0
+ line: 2157
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2168
+ start:
+ character: 0
+ line: 2168
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2179
+ start:
+ character: 0
+ line: 2179
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2190
+ start:
+ character: 0
+ line: 2190
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2201
+ start:
+ character: 0
+ line: 2201
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2212
+ start:
+ character: 0
+ line: 2212
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2223
+ start:
+ character: 0
+ line: 2223
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2234
+ start:
+ character: 0
+ line: 2234
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2245
+ start:
+ character: 0
+ line: 2245
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2256
+ start:
+ character: 0
+ line: 2256
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2267
+ start:
+ character: 0
+ line: 2267
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2278
+ start:
+ character: 0
+ line: 2278
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2289
+ start:
+ character: 0
+ line: 2289
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2300
+ start:
+ character: 0
+ line: 2300
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2311
+ start:
+ character: 0
+ line: 2311
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2322
+ start:
+ character: 0
+ line: 2322
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2333
+ start:
+ character: 0
+ line: 2333
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2344
+ start:
+ character: 0
+ line: 2344
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2355
+ start:
+ character: 0
+ line: 2355
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2366
+ start:
+ character: 0
+ line: 2366
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2377
+ start:
+ character: 0
+ line: 2377
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2388
+ start:
+ character: 0
+ line: 2388
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2399
+ start:
+ character: 0
+ line: 2399
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2410
+ start:
+ character: 0
+ line: 2410
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2421
+ start:
+ character: 0
+ line: 2421
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2432
+ start:
+ character: 0
+ line: 2432
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2443
+ start:
+ character: 0
+ line: 2443
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2454
+ start:
+ character: 0
+ line: 2454
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2465
+ start:
+ character: 0
+ line: 2465
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2476
+ start:
+ character: 0
+ line: 2476
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2487
+ start:
+ character: 0
+ line: 2487
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2498
+ start:
+ character: 0
+ line: 2498
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2509
+ start:
+ character: 0
+ line: 2509
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2520
+ start:
+ character: 0
+ line: 2520
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2531
+ start:
+ character: 0
+ line: 2531
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2542
+ start:
+ character: 0
+ line: 2542
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2553
+ start:
+ character: 0
+ line: 2553
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2564
+ start:
+ character: 0
+ line: 2564
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2575
+ start:
+ character: 0
+ line: 2575
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2586
+ start:
+ character: 0
+ line: 2586
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2597
+ start:
+ character: 0
+ line: 2597
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2608
+ start:
+ character: 0
+ line: 2608
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2619
+ start:
+ character: 0
+ line: 2619
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2630
+ start:
+ character: 0
+ line: 2630
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2641
+ start:
+ character: 0
+ line: 2641
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2652
+ start:
+ character: 0
+ line: 2652
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2663
+ start:
+ character: 0
+ line: 2663
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2674
+ start:
+ character: 0
+ line: 2674
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2685
+ start:
+ character: 0
+ line: 2685
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2696
+ start:
+ character: 0
+ line: 2696
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2707
+ start:
+ character: 0
+ line: 2707
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2718
+ start:
+ character: 0
+ line: 2718
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2729
+ start:
+ character: 0
+ line: 2729
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2740
+ start:
+ character: 0
+ line: 2740
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2751
+ start:
+ character: 0
+ line: 2751
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2762
+ start:
+ character: 0
+ line: 2762
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2773
+ start:
+ character: 0
+ line: 2773
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2784
+ start:
+ character: 0
+ line: 2784
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2795
+ start:
+ character: 0
+ line: 2795
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2806
+ start:
+ character: 0
+ line: 2806
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2817
+ start:
+ character: 0
+ line: 2817
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2828
+ start:
+ character: 0
+ line: 2828
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2839
+ start:
+ character: 0
+ line: 2839
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2850
+ start:
+ character: 0
+ line: 2850
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2861
+ start:
+ character: 0
+ line: 2861
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2872
+ start:
+ character: 0
+ line: 2872
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2883
+ start:
+ character: 0
+ line: 2883
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2894
+ start:
+ character: 0
+ line: 2894
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2905
+ start:
+ character: 0
+ line: 2905
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2916
+ start:
+ character: 0
+ line: 2916
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2927
+ start:
+ character: 0
+ line: 2927
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2938
+ start:
+ character: 0
+ line: 2938
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2949
+ start:
+ character: 0
+ line: 2949
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2960
+ start:
+ character: 0
+ line: 2960
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2971
+ start:
+ character: 0
+ line: 2971
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2982
+ start:
+ character: 0
+ line: 2982
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 2993
+ start:
+ character: 0
+ line: 2993
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3004
+ start:
+ character: 0
+ line: 3004
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3015
+ start:
+ character: 0
+ line: 3015
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3026
+ start:
+ character: 0
+ line: 3026
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3037
+ start:
+ character: 0
+ line: 3037
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3048
+ start:
+ character: 0
+ line: 3048
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3059
+ start:
+ character: 0
+ line: 3059
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3070
+ start:
+ character: 0
+ line: 3070
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3081
+ start:
+ character: 0
+ line: 3081
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3092
+ start:
+ character: 0
+ line: 3092
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3103
+ start:
+ character: 0
+ line: 3103
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3114
+ start:
+ character: 0
+ line: 3114
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3125
+ start:
+ character: 0
+ line: 3125
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3136
+ start:
+ character: 0
+ line: 3136
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3147
+ start:
+ character: 0
+ line: 3147
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3158
+ start:
+ character: 0
+ line: 3158
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3169
+ start:
+ character: 0
+ line: 3169
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3180
+ start:
+ character: 0
+ line: 3180
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3191
+ start:
+ character: 0
+ line: 3191
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3202
+ start:
+ character: 0
+ line: 3202
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3213
+ start:
+ character: 0
+ line: 3213
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3224
+ start:
+ character: 0
+ line: 3224
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3235
+ start:
+ character: 0
+ line: 3235
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3246
+ start:
+ character: 0
+ line: 3246
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3257
+ start:
+ character: 0
+ line: 3257
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3268
+ start:
+ character: 0
+ line: 3268
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3279
+ start:
+ character: 0
+ line: 3279
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3290
+ start:
+ character: 0
+ line: 3290
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3301
+ start:
+ character: 0
+ line: 3301
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3312
+ start:
+ character: 0
+ line: 3312
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3323
+ start:
+ character: 0
+ line: 3323
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3334
+ start:
+ character: 0
+ line: 3334
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3345
+ start:
+ character: 0
+ line: 3345
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3356
+ start:
+ character: 0
+ line: 3356
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3367
+ start:
+ character: 0
+ line: 3367
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3378
+ start:
+ character: 0
+ line: 3378
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3389
+ start:
+ character: 0
+ line: 3389
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3400
+ start:
+ character: 0
+ line: 3400
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3411
+ start:
+ character: 0
+ line: 3411
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3422
+ start:
+ character: 0
+ line: 3422
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3433
+ start:
+ character: 0
+ line: 3433
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3444
+ start:
+ character: 0
+ line: 3444
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3455
+ start:
+ character: 0
+ line: 3455
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3466
+ start:
+ character: 0
+ line: 3466
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3477
+ start:
+ character: 0
+ line: 3477
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3488
+ start:
+ character: 0
+ line: 3488
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3499
+ start:
+ character: 0
+ line: 3499
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3510
+ start:
+ character: 0
+ line: 3510
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3521
+ start:
+ character: 0
+ line: 3521
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3532
+ start:
+ character: 0
+ line: 3532
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3543
+ start:
+ character: 0
+ line: 3543
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3554
+ start:
+ character: 0
+ line: 3554
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3565
+ start:
+ character: 0
+ line: 3565
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3576
+ start:
+ character: 0
+ line: 3576
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3587
+ start:
+ character: 0
+ line: 3587
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3598
+ start:
+ character: 0
+ line: 3598
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3609
+ start:
+ character: 0
+ line: 3609
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3620
+ start:
+ character: 0
+ line: 3620
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3631
+ start:
+ character: 0
+ line: 3631
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3642
+ start:
+ character: 0
+ line: 3642
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3653
+ start:
+ character: 0
+ line: 3653
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3664
+ start:
+ character: 0
+ line: 3664
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3675
+ start:
+ character: 0
+ line: 3675
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3686
+ start:
+ character: 0
+ line: 3686
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3697
+ start:
+ character: 0
+ line: 3697
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3708
+ start:
+ character: 0
+ line: 3708
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3719
+ start:
+ character: 0
+ line: 3719
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3730
+ start:
+ character: 0
+ line: 3730
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3741
+ start:
+ character: 0
+ line: 3741
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3752
+ start:
+ character: 0
+ line: 3752
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3763
+ start:
+ character: 0
+ line: 3763
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3774
+ start:
+ character: 0
+ line: 3774
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3785
+ start:
+ character: 0
+ line: 3785
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3796
+ start:
+ character: 0
+ line: 3796
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3807
+ start:
+ character: 0
+ line: 3807
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3818
+ start:
+ character: 0
+ line: 3818
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3829
+ start:
+ character: 0
+ line: 3829
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3840
+ start:
+ character: 0
+ line: 3840
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3851
+ start:
+ character: 0
+ line: 3851
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3862
+ start:
+ character: 0
+ line: 3862
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3873
+ start:
+ character: 0
+ line: 3873
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3884
+ start:
+ character: 0
+ line: 3884
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3895
+ start:
+ character: 0
+ line: 3895
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3906
+ start:
+ character: 0
+ line: 3906
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3917
+ start:
+ character: 0
+ line: 3917
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3928
+ start:
+ character: 0
+ line: 3928
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3939
+ start:
+ character: 0
+ line: 3939
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3950
+ start:
+ character: 0
+ line: 3950
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3961
+ start:
+ character: 0
+ line: 3961
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3972
+ start:
+ character: 0
+ line: 3972
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3983
+ start:
+ character: 0
+ line: 3983
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 3994
+ start:
+ character: 0
+ line: 3994
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4005
+ start:
+ character: 0
+ line: 4005
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4016
+ start:
+ character: 0
+ line: 4016
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4027
+ start:
+ character: 0
+ line: 4027
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4038
+ start:
+ character: 0
+ line: 4038
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4049
+ start:
+ character: 0
+ line: 4049
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4060
+ start:
+ character: 0
+ line: 4060
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4071
+ start:
+ character: 0
+ line: 4071
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4082
+ start:
+ character: 0
+ line: 4082
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4093
+ start:
+ character: 0
+ line: 4093
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4104
+ start:
+ character: 0
+ line: 4104
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4115
+ start:
+ character: 0
+ line: 4115
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4126
+ start:
+ character: 0
+ line: 4126
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4137
+ start:
+ character: 0
+ line: 4137
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4148
+ start:
+ character: 0
+ line: 4148
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4159
+ start:
+ character: 0
+ line: 4159
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4170
+ start:
+ character: 0
+ line: 4170
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4181
+ start:
+ character: 0
+ line: 4181
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4192
+ start:
+ character: 0
+ line: 4192
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4203
+ start:
+ character: 0
+ line: 4203
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4214
+ start:
+ character: 0
+ line: 4214
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4225
+ start:
+ character: 0
+ line: 4225
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4236
+ start:
+ character: 0
+ line: 4236
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4247
+ start:
+ character: 0
+ line: 4247
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4258
+ start:
+ character: 0
+ line: 4258
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4269
+ start:
+ character: 0
+ line: 4269
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4280
+ start:
+ character: 0
+ line: 4280
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4291
+ start:
+ character: 0
+ line: 4291
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4302
+ start:
+ character: 0
+ line: 4302
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4313
+ start:
+ character: 0
+ line: 4313
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4324
+ start:
+ character: 0
+ line: 4324
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4335
+ start:
+ character: 0
+ line: 4335
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4346
+ start:
+ character: 0
+ line: 4346
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4357
+ start:
+ character: 0
+ line: 4357
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4368
+ start:
+ character: 0
+ line: 4368
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4379
+ start:
+ character: 0
+ line: 4379
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4390
+ start:
+ character: 0
+ line: 4390
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4401
+ start:
+ character: 0
+ line: 4401
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4412
+ start:
+ character: 0
+ line: 4412
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4423
+ start:
+ character: 0
+ line: 4423
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4434
+ start:
+ character: 0
+ line: 4434
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4445
+ start:
+ character: 0
+ line: 4445
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4456
+ start:
+ character: 0
+ line: 4456
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4467
+ start:
+ character: 0
+ line: 4467
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4478
+ start:
+ character: 0
+ line: 4478
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4489
+ start:
+ character: 0
+ line: 4489
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4500
+ start:
+ character: 0
+ line: 4500
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4511
+ start:
+ character: 0
+ line: 4511
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4522
+ start:
+ character: 0
+ line: 4522
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4533
+ start:
+ character: 0
+ line: 4533
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4544
+ start:
+ character: 0
+ line: 4544
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4555
+ start:
+ character: 0
+ line: 4555
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4566
+ start:
+ character: 0
+ line: 4566
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4577
+ start:
+ character: 0
+ line: 4577
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4588
+ start:
+ character: 0
+ line: 4588
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4599
+ start:
+ character: 0
+ line: 4599
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 4610
+ start:
+ character: 0
+ line: 4610
+ uri: very_big_file.robot
+ name: Testcase 1
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 111
+ start:
+ character: 0
+ line: 111
+ uri: very_big_file.robot
+ name: Testcase 10
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 122
+ start:
+ character: 0
+ line: 122
+ uri: very_big_file.robot
+ name: Testcase 11
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 133
+ start:
+ character: 0
+ line: 133
+ uri: very_big_file.robot
+ name: Testcase 12
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 144
+ start:
+ character: 0
+ line: 144
+ uri: very_big_file.robot
+ name: Testcase 13
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 155
+ start:
+ character: 0
+ line: 155
+ uri: very_big_file.robot
+ name: Testcase 14
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 166
+ start:
+ character: 0
+ line: 166
+ uri: very_big_file.robot
+ name: Testcase 15
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 177
+ start:
+ character: 0
+ line: 177
+ uri: very_big_file.robot
+ name: Testcase 16
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 188
+ start:
+ character: 0
+ line: 188
+ uri: very_big_file.robot
+ name: Testcase 17
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 199
+ start:
+ character: 0
+ line: 199
+ uri: very_big_file.robot
+ name: Testcase 18
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 210
+ start:
+ character: 0
+ line: 210
+ uri: very_big_file.robot
+ name: Testcase 19
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 23
+ start:
+ character: 0
+ line: 23
+ uri: very_big_file.robot
+ name: Testcase 2
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 221
+ start:
+ character: 0
+ line: 221
+ uri: very_big_file.robot
+ name: Testcase 20
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 232
+ start:
+ character: 0
+ line: 232
+ uri: very_big_file.robot
+ name: Testcase 21
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 243
+ start:
+ character: 0
+ line: 243
+ uri: very_big_file.robot
+ name: Testcase 22
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 254
+ start:
+ character: 0
+ line: 254
+ uri: very_big_file.robot
+ name: Testcase 23
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 265
+ start:
+ character: 0
+ line: 265
+ uri: very_big_file.robot
+ name: Testcase 24
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 276
+ start:
+ character: 0
+ line: 276
+ uri: very_big_file.robot
+ name: Testcase 25
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 287
+ start:
+ character: 0
+ line: 287
+ uri: very_big_file.robot
+ name: Testcase 26
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 298
+ start:
+ character: 0
+ line: 298
+ uri: very_big_file.robot
+ name: Testcase 27
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 309
+ start:
+ character: 0
+ line: 309
+ uri: very_big_file.robot
+ name: Testcase 28
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 320
+ start:
+ character: 0
+ line: 320
+ uri: very_big_file.robot
+ name: Testcase 29
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 34
+ start:
+ character: 0
+ line: 34
+ uri: very_big_file.robot
+ name: Testcase 3
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 331
+ start:
+ character: 0
+ line: 331
+ uri: very_big_file.robot
+ name: Testcase 30
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 342
+ start:
+ character: 0
+ line: 342
+ uri: very_big_file.robot
+ name: Testcase 31
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 353
+ start:
+ character: 0
+ line: 353
+ uri: very_big_file.robot
+ name: Testcase 32
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 364
+ start:
+ character: 0
+ line: 364
+ uri: very_big_file.robot
+ name: Testcase 33
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 375
+ start:
+ character: 0
+ line: 375
+ uri: very_big_file.robot
+ name: Testcase 34
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 386
+ start:
+ character: 0
+ line: 386
+ uri: very_big_file.robot
+ name: Testcase 35
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 397
+ start:
+ character: 0
+ line: 397
+ uri: very_big_file.robot
+ name: Testcase 36
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 408
+ start:
+ character: 0
+ line: 408
+ uri: very_big_file.robot
+ name: Testcase 37
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 419
+ start:
+ character: 0
+ line: 419
+ uri: very_big_file.robot
+ name: Testcase 38
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 430
+ start:
+ character: 0
+ line: 430
+ uri: very_big_file.robot
+ name: Testcase 39
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 45
+ start:
+ character: 0
+ line: 45
+ uri: very_big_file.robot
+ name: Testcase 4
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 441
+ start:
+ character: 0
+ line: 441
+ uri: very_big_file.robot
+ name: Testcase 40
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 452
+ start:
+ character: 0
+ line: 452
+ uri: very_big_file.robot
+ name: Testcase 41
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 463
+ start:
+ character: 0
+ line: 463
+ uri: very_big_file.robot
+ name: Testcase 42
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 474
+ start:
+ character: 0
+ line: 474
+ uri: very_big_file.robot
+ name: Testcase 43
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 485
+ start:
+ character: 0
+ line: 485
+ uri: very_big_file.robot
+ name: Testcase 44
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 496
+ start:
+ character: 0
+ line: 496
+ uri: very_big_file.robot
+ name: Testcase 45
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 507
+ start:
+ character: 0
+ line: 507
+ uri: very_big_file.robot
+ name: Testcase 46
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 518
+ start:
+ character: 0
+ line: 518
+ uri: very_big_file.robot
+ name: Testcase 47
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 529
+ start:
+ character: 0
+ line: 529
+ uri: very_big_file.robot
+ name: Testcase 48
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 540
+ start:
+ character: 0
+ line: 540
+ uri: very_big_file.robot
+ name: Testcase 49
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 56
+ start:
+ character: 0
+ line: 56
+ uri: very_big_file.robot
+ name: Testcase 5
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 551
+ start:
+ character: 0
+ line: 551
+ uri: very_big_file.robot
+ name: Testcase 50
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 562
+ start:
+ character: 0
+ line: 562
+ uri: very_big_file.robot
+ name: Testcase 51
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 573
+ start:
+ character: 0
+ line: 573
+ uri: very_big_file.robot
+ name: Testcase 52
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 584
+ start:
+ character: 0
+ line: 584
+ uri: very_big_file.robot
+ name: Testcase 53
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 595
+ start:
+ character: 0
+ line: 595
+ uri: very_big_file.robot
+ name: Testcase 54
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 606
+ start:
+ character: 0
+ line: 606
+ uri: very_big_file.robot
+ name: Testcase 55
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 617
+ start:
+ character: 0
+ line: 617
+ uri: very_big_file.robot
+ name: Testcase 56
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 628
+ start:
+ character: 0
+ line: 628
+ uri: very_big_file.robot
+ name: Testcase 57
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 639
+ start:
+ character: 0
+ line: 639
+ uri: very_big_file.robot
+ name: Testcase 58
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 650
+ start:
+ character: 0
+ line: 650
+ uri: very_big_file.robot
+ name: Testcase 59
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 67
+ start:
+ character: 0
+ line: 67
+ uri: very_big_file.robot
+ name: Testcase 6
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 661
+ start:
+ character: 0
+ line: 661
+ uri: very_big_file.robot
+ name: Testcase 60
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 672
+ start:
+ character: 0
+ line: 672
+ uri: very_big_file.robot
+ name: Testcase 61
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 683
+ start:
+ character: 0
+ line: 683
+ uri: very_big_file.robot
+ name: Testcase 62
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 11
+ line: 694
+ start:
+ character: 0
+ line: 694
+ uri: very_big_file.robot
+ name: Testcase 63
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 78
+ start:
+ character: 0
+ line: 78
+ uri: very_big_file.robot
+ name: Testcase 7
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 89
+ start:
+ character: 0
+ line: 89
+ uri: very_big_file.robot
+ name: Testcase 8
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 100
+ start:
+ character: 0
+ line: 100
+ uri: very_big_file.robot
+ name: Testcase 9
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 63
+ line: 4627
+ start:
+ character: 0
+ line: 4627
+ uri: very_big_file.robot
+ name: the Android ${name} is hiding in a futuristic city ${city_name}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 70
+ line: 4639
+ start:
+ character: 0
+ line: 4639
+ uri: very_big_file.robot
+ name: the Android ${name} responds with a cryptic answer "${cryptic_answer}"
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 67
+ line: 4651
+ start:
+ character: 0
+ line: 4651
+ uri: very_big_file.robot
+ name: the Blade Runner ${name} decides whether to "${action}" the Android
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 75
+ line: 4623
+ start:
+ character: 0
+ line: 4623
+ uri: very_big_file.robot
+ name: the Blade Runner ${name} is on a mission to find a rogue Android Stan Riley
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 74
+ line: 4635
+ start:
+ character: 0
+ line: 4635
+ uri: very_big_file.robot
+ name: the Blade Runner asks the Android if it knows the meaning of "${question}"
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 64
+ line: 4631
+ start:
+ character: 0
+ line: 4631
+ uri: very_big_file.robot
+ name: the Blade Runner encounters the Android ${name} in a ${location}
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 55
+ line: 4647
+ start:
+ character: 0
+ line: 4647
+ uri: very_big_file.robot
+ name: the Blade Runner performs a ${test} test on the Android
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 50
+ line: 4643
+ start:
+ character: 0
+ line: 4643
+ uri: very_big_file.robot
+ name: the Blade Runner suspects the Android is not human
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 50
+ line: 4655
+ start:
+ character: 0
+ line: 4655
+ uri: very_big_file.robot
+ name: the test confirms the Android ${name} is non-human
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[first].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[first].out
new file mode 100644
index 000000000..ab4c5c257
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[first].out
@@ -0,0 +1,691 @@
+result:
+- !WorkspaceSymbol
+ container_name: __not_discovered
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: __not_discovered.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: _not_discovered
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: _not_discovered.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: bddstyle
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 34
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: bddstyle.robot
+ name: value of var <${input}> is present
+ tags: null
+- !WorkspaceSymbol
+ container_name: code_action_show_documentation
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 27
+ start:
+ character: 0
+ line: 27
+ uri: code_action_show_documentation.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: discovered__
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: discovered__.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: discovered__
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: discovered__.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 65
+ line: 168
+ start:
+ character: 0
+ line: 168
+ uri: document_highlight.robot
+ name: a keyword with variables in doc, timeout and tags with args first
+ tags: null
+- !WorkspaceSymbol
+ container_name: document_highlight
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 29
+ start:
+ character: 0
+ line: 29
+ uri: document_highlight.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: duplicated_resources
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 13
+ start:
+ character: 0
+ line: 13
+ uri: duplicated_resources.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: external_libray
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: external_libray.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: first.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: first.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: first
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 3
+ start:
+ character: 0
+ line: 3
+ uri: first.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: foldingrange
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 8
+ start:
+ character: 0
+ line: 8
+ uri: foldingrange.robot
+ name: First
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 65
+ line: 217
+ start:
+ character: 0
+ line: 217
+ uri: goto.robot
+ name: a keyword with variables in doc, timeout and tags with args first
+ tags: null
+- !WorkspaceSymbol
+ container_name: goto
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 40
+ start:
+ character: 0
+ line: 40
+ uri: goto.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: grouptest
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: grouptest.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: hover
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 62
+ start:
+ character: 0
+ line: 62
+ uri: hover.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: indexed_variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 6
+ start:
+ character: 0
+ line: 6
+ uri: indexed_variables.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: jsonvariables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 4
+ start:
+ character: 0
+ line: 4
+ uri: jsonvariables.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: old_for
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: old_for.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: part1__suite
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: part1__suite.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: part2__suite
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: part2__suite.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: playground
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 6
+ start:
+ character: 0
+ line: 6
+ uri: playground.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: playground
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 8
+ line: 21
+ start:
+ character: 0
+ line: 21
+ uri: playground.robot
+ name: first kw
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 65
+ line: 191
+ start:
+ character: 0
+ line: 191
+ uri: references.robot
+ name: a keyword with variables in doc, timeout and tags with args first
+ tags: null
+- !WorkspaceSymbol
+ container_name: references
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 31
+ start:
+ character: 0
+ line: 31
+ uri: references.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: remotetest
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: remotetest.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: reserved
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: reserved.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: second
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 5
+ start:
+ character: 0
+ line: 5
+ uri: second.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: setup_teardown
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 10
+ start:
+ character: 0
+ line: 10
+ uri: setup_teardown.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: signature_help
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 11
+ start:
+ character: 0
+ line: 11
+ uri: signature_help.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: simple
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: simple.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: simple suite
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: simple suite.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: simple suite
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: simple suite.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: simple suite_
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: simple suite_.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: simple_
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: simple_.robot
+ name: first test
+ tags: null
+- !WorkspaceSymbol
+ container_name: sometasks
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 10
+ line: 1
+ start:
+ character: 0
+ line: 1
+ uri: sometasks.robot
+ name: first task
+ tags: null
+- !WorkspaceSymbol
+ container_name: suite_with_name
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 4
+ start:
+ character: 0
+ line: 4
+ uri: suite_with_name.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 13
+ location:
+ range:
+ end:
+ character: 26
+ line: 41
+ start:
+ character: 21
+ line: 41
+ uri: symbols.robot
+ name: ${first}
+ tags: null
+- !WorkspaceSymbol
+ container_name: symbols
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 11
+ start:
+ character: 0
+ line: 11
+ uri: symbols.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: templates
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 10
+ start:
+ character: 0
+ line: 10
+ uri: templates.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: variables
+ data: null
+ kind: 5
+ location:
+ range:
+ end:
+ character: 5
+ line: 17
+ start:
+ character: 0
+ line: 17
+ uri: variables.robot
+ name: first
+ tags: null
+- !WorkspaceSymbol
+ container_name: vartest
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 65
+ line: 43
+ start:
+ character: 0
+ line: 43
+ uri: vartest.robot
+ name: a keyword with variables in doc, timeout and tags with args first
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 75
+ line: 4623
+ start:
+ character: 0
+ line: 4623
+ uri: very_big_file.robot
+ name: the Blade Runner ${name} is on a mission to find a rogue Android Stan Riley
+ tags: null
+- !WorkspaceSymbol
+ container_name: very_big_file
+ data: null
+ kind: 12
+ location:
+ range:
+ end:
+ character: 50
+ line: 4655
+ start:
+ character: 0
+ line: 4655
+ uri: very_big_file.robot
+ name: the test confirms the Android ${name} is non-human
+ tags: null
diff --git a/tests/robotcode/language_server/robotframework/parts/data/.robot.toml b/tests/robotcode/language_server/robotframework/parts/data/.robot.toml
index ea17bea94..77c8271c3 100644
--- a/tests/robotcode/language_server/robotframework/parts/data/.robot.toml
+++ b/tests/robotcode/language_server/robotframework/parts/data/.robot.toml
@@ -1,7 +1,7 @@
[extend-profiles.firefox]
description = "The overridden firefox profile"
extend-python-path = ["./python"]
-output-dir = "output"
+#output-dir = "output"
[tool.robotcode-analyze.extend-modifiers]
extend-warning = ["VariableNotFound"]
diff --git a/tests/robotcode/language_server/robotframework/parts/data/.vscode/launch.json b/tests/robotcode/language_server/robotframework/parts/data/.vscode/launch.json
index 405e0ec8e..a68c769f4 100644
--- a/tests/robotcode/language_server/robotframework/parts/data/.vscode/launch.json
+++ b/tests/robotcode/language_server/robotframework/parts/data/.vscode/launch.json
@@ -38,21 +38,18 @@
"presentation": {
"hidden": true
},
- },
- {
- "name": "RobotCode: Default",
- "type": "robotcode",
- "request": "launch",
- "purpose": "test",
- "presentation": {
- "hidden": true
- },
// "robotCodeArgs": [
// "-v",
// "--log",
// "--log-level=TRACE",
// "--log-calls"
// ],
+ // "launcherExtraArgs": [
+ // "-v",
+ // "--log",
+ // "--log-level=TRACE",
+ // "--log-calls"
+ // ],
"profiles": [
"ci*",
"firefox",
diff --git a/tests/robotcode/language_server/robotframework/parts/data/.vscode/settings.json b/tests/robotcode/language_server/robotframework/parts/data/.vscode/settings.json
index 3dbb81ccb..0d3ad3644 100644
--- a/tests/robotcode/language_server/robotframework/parts/data/.vscode/settings.json
+++ b/tests/robotcode/language_server/robotframework/parts/data/.vscode/settings.json
@@ -18,9 +18,15 @@
//"--debugpy-wait-for-client",
"--log",
"--log-level", "DEBUG",
+ // "--log-format", "%(indent)s%(levelname)s:%(name)s:%(filename)s:%(lineno)d: %(message)s"
+
+ // "--log-config", "logging.json"
+ ],
+ // "robotcode.robocop.configFile": "pyproject.toml",
+ "robotcode.robocop.enabled": true,
+ "robotcode.robocop.exclude": [
+ "E0303"
],
- "robotcode.robocop.enabled": false,
- "robotcode.robocop.exclude": ["E0303"],
"robotcode.analysis.referencesCodeLens": false,
"robotcode.analysis.diagnosticMode": "openFilesOnly",
"robotcode.analysis.progressMode": "detailed",
@@ -43,6 +49,6 @@
}
},
"robotcode.debug.attachPython": true,
- "debugpy.debugJustMyCode": false
+ "debugpy.debugJustMyCode": false,
}
\ No newline at end of file
diff --git a/tests/robotcode/language_server/robotframework/parts/data/logging.json b/tests/robotcode/language_server/robotframework/parts/data/logging.json
new file mode 100644
index 000000000..5482ec6a8
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/data/logging.json
@@ -0,0 +1,35 @@
+{
+ "version": 1,
+ "disable_existing_loggers": true,
+ "formatters": {
+ "standard": {
+ "class": "robotcode.cli.RobotCodeFormatter",
+ "format": "%(indent)s %(asctime)s %(name)s %(levelname)s: %(message)s"
+ }
+ },
+ "handlers": {
+ "console": {
+ "level": "DEBUG",
+ "class": "logging.StreamHandler",
+ "formatter": "standard"
+ },
+ "file_handler": {
+ "level": "DEBUG",
+ "class": "logging.handlers.RotatingFileHandler",
+ "formatter": "standard",
+ "filename": "info.log",
+ "mode": "w",
+ "maxBytes": 26214400,
+ "backupCount": 10,
+ "encoding": "utf8"
+ }
+ },
+
+ "root": {
+ "level": "DEBUG",
+ "handlers": [
+ "console",
+ "file_handler"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tests/robotcode/language_server/robotframework/parts/data/robocop.toml b/tests/robotcode/language_server/robotframework/parts/data/robocop.toml
new file mode 100644
index 000000000..15a77148c
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/data/robocop.toml
@@ -0,0 +1,5 @@
+[tool.robocop.lint]
+ignore = [
+ "unused-variable",
+ "unused-argument"
+]
\ No newline at end of file
diff --git a/tests/robotcode/language_server/robotframework/parts/data/robot.toml b/tests/robotcode/language_server/robotframework/parts/data/robot.toml
index ef8cbc031..aab1f04e5 100644
--- a/tests/robotcode/language_server/robotframework/parts/data/robot.toml
+++ b/tests/robotcode/language_server/robotframework/parts/data/robot.toml
@@ -21,11 +21,13 @@ DuplicateTests = []
[env]
ENV_VAR = "1"
+ROBOTCODE_DISABLE_HIDDEN_TASKS = "1"
[variables]
CMD_VAR = { expr = "1+2*5" }
CMD_VAR_LONG = "a test"
ANOTHER_VAR = { expr = "environ.get('CMD_VAR_LONG', 'default')" }
+TYPE_VAR = " int:1234"
[profiles.devel]
description = """The devel profile
diff --git a/tests/robotcode/language_server/robotframework/parts/data/tests/old_for.robot b/tests/robotcode/language_server/robotframework/parts/data/tests/old_for.robot
new file mode 100644
index 000000000..3223421f6
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/data/tests/old_for.robot
@@ -0,0 +1,13 @@
+*** Test Cases ***
+first
+ :FOR ${animal} IN cat dog
+ \ Log ${animal}
+ \ Log 2nd keyword
+
+second
+ IF True FOR ${x} IN @{stuff}
+
+third
+ FOR ${i} IN RANGE 1 22
+ Pass Execution ${i}
+ END
diff --git a/tests/robotcode/language_server/robotframework/parts/data/tests/references.robot b/tests/robotcode/language_server/robotframework/parts/data/tests/references.robot
index 7a1e90969..73b71de3f 100644
--- a/tests/robotcode/language_server/robotframework/parts/data/tests/references.robot
+++ b/tests/robotcode/language_server/robotframework/parts/data/tests/references.robot
@@ -105,7 +105,7 @@ sixth
# ^^^^ a keyword with emoji
firstresource.🤖🤖 🐓=${🧨🧨} 🧟♂️🛃🫅🏿👸🏿=${🧨🧨}+${🧨🧨} # test
# ^^^^^^^^^^^^^^^^^^ a keyword with namespace and emoji
-# ^^^^^^ a variable with emoji
+# ^^^ a variable with emoji
seventh
diff --git a/tests/robotcode/language_server/robotframework/parts/data/tests/versions/rf73/variable_conversion.robot b/tests/robotcode/language_server/robotframework/parts/data/tests/versions/rf73/variable_conversion.robot
new file mode 100644
index 000000000..3ff10ab81
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/data/tests/versions/rf73/variable_conversion.robot
@@ -0,0 +1,86 @@
+*** Variables ***
+${a: int} 1
+${s: str} hallo welt
+${k: Literal["Yes", "No"]} No
+@{numbers: int} 1 2 4 11
+@{wrong_numbers: int} 1 2 4 11aa
+${time: datetime} now
+${DATES: list[date]} {'rc1': '2025-05-08', 'final': '2025-05-30'}
+${PRIORITIES: dict[int, str]} {3278: 'Critical', 4173: 'High', 5334: 'High'}
+
+
+*** Test Cases ***
+suite variables
+ Log ${a}
+ Log ${s}
+ Log ${k}
+ Log ${time}
+ Log ${numbers}
+ Log ${TYPE_VAR}: ${{type($TYPE_VAR)}}
+ a simple keyword with args 2 a string [1,2,3]
+ a simple keyword with default arguments
+ a simple keyword with union argument 1
+ a simple keyword with union argument Hallo Welt
+ a simple keyword with union argument ${None}
+
+local variables
+ VAR ${i: int} 1234
+ VAR ${u: int | str} 1234
+ Log ${i}
+ Log ${u}
+
+keyword assignments
+ ${i: int} Evaluate 1+2
+ Log ${i}
+
+for loops
+ VAR ${i} 1
+
+ FOR ${l: int} IN RANGE 1 100
+ Log ${l}
+ END
+
+ FOR ${i: int} ${s: str} IN ENUMERATE arg arg1
+ Log ${i} ${s}
+ END
+
+if assignment
+ ${a: int} IF $a Evaluate "asd" ELSE Evaluate 3+4
+ Log ${a}
+
+calling kws with embedded args
+ a keyword with embedded args
+ a testcase with embedded args
+
+
+*** Keywords ***
+a simple keyword with args
+ [Arguments] ${a: int} ${c: str} ${d: list[str]}
+ VAR ${a} 1 scope=TEST
+ Log ${a}
+ Log ${c}
+ Log ${d}
+ Log ${}
+
+a simple keyword with default arguments
+ [Arguments] ${a}=1 ${b: int}=1
+ Log ${a}
+ Log ${b}
+
+a simple keyword with union argument
+ [Arguments] ${a: int | str | None}
+ Log ${a}
+
+# TODO see here https://github.com/robotframework/robotframework/issues/5443
+# a simple keyword Non-default argument after default arguments
+# [Arguments] ${a}=1 ${b: int}
+# Log ${a}
+# Log ${b}
+
+# Varargs
+# [Arguments] @{v: int} @{w}
+# Whatever
+
+a ${keyword: int:keyword|testcase} with embedded args
+ [Documentation] this is a simple embedded keyword
+ Log ${keyword}
diff --git a/tests/robotcode/language_server/robotframework/parts/test_semantic_tokens_unit.py b/tests/robotcode/language_server/robotframework/parts/test_semantic_tokens_unit.py
new file mode 100644
index 000000000..1ebe1a817
--- /dev/null
+++ b/tests/robotcode/language_server/robotframework/parts/test_semantic_tokens_unit.py
@@ -0,0 +1,2009 @@
+from typing import Any
+
+import pytest
+from robot.parsing import get_model
+from robot.parsing.lexer.tokens import Token
+from robot.parsing.model.statements import KeywordCall, Variable
+
+from robotcode.language_server.robotframework.parts.semantic_tokens import (
+ ROBOT_NAMED_ARGUMENT,
+ ROBOT_OPERATOR,
+ ArgumentProcessor,
+ KeywordTokenAnalyzer,
+ NamedArgumentInfo,
+ NamedArgumentProcessor,
+ RobotSemTokenModifiers,
+ RobotSemTokenTypes,
+ SemanticTokenGenerator,
+ SemanticTokenMapper,
+ SemTokenInfo,
+)
+from robotcode.robot.diagnostics.library_doc import (
+ KeywordArgumentKind,
+ KeywordDoc,
+ LibraryDoc,
+)
+from robotcode.robot.utils import get_robot_version
+
+
+class TestSemanticTokenMapper:
+ """Test cases for SemanticTokenMapper class."""
+
+ def test_generate_mapping_creates_valid_mapping(self) -> None:
+ """Test that generate_mapping creates a valid token type mapping."""
+ mapping = SemanticTokenMapper.generate_mapping()
+
+ assert isinstance(mapping, dict)
+ assert len(mapping) > 0
+
+ # Check that some expected token types are in the mapping
+ assert Token.KEYWORD in mapping
+ assert Token.VARIABLE in mapping
+ assert Token.ARGUMENT in mapping
+
+ def test_mapping_singleton_behavior(self) -> None:
+ """Test that mapping() returns the same instance across calls."""
+ mapper1 = SemanticTokenMapper()
+ mapper2 = SemanticTokenMapper()
+
+ mapping1 = mapper1.mapping()
+ mapping2 = mapper2.mapping()
+
+ assert mapping1 is mapping2 # Should be the same object
+
+ def test_get_semantic_info_with_valid_token(self) -> None:
+ """Test get_semantic_info with valid token types."""
+ mapper = SemanticTokenMapper()
+
+ result = mapper.get_semantic_info(Token.KEYWORD)
+ assert result is not None
+ assert len(result) == 2 # (token_type, modifiers)
+
+ def test_get_semantic_info_with_invalid_token(self) -> None:
+ """Test get_semantic_info with invalid token types."""
+ mapper = SemanticTokenMapper()
+
+ result = mapper.get_semantic_info("INVALID_TOKEN")
+ assert result is None
+
+ def test_get_semantic_info_with_none(self) -> None:
+ """Test get_semantic_info with None input."""
+ mapper = SemanticTokenMapper()
+
+ result = mapper.get_semantic_info(None)
+ assert result is None
+
+ def test_builtin_matcher_is_configured(self) -> None:
+ """Test that BUILTIN_MATCHER is properly configured."""
+ assert SemanticTokenMapper.BUILTIN_MATCHER.name == "BuiltIn"
+ assert SemanticTokenMapper.BUILTIN_MATCHER._is_namespace is True
+
+ @pytest.mark.parametrize(
+ ("text", "expected_groups"),
+ [
+ ("\\n", ["\\n"]),
+ ("\\\\", ["\\\\"]),
+ ("\\x41", ["\\x41"]),
+ ("text\\nmore", ["text", "\\n", "more"]),
+ ("\\invalid", ["\\i", "nvalid"]), # Invalid escape splits
+ ],
+ )
+ def test_escape_regex_patterns(self, text: str, expected_groups: list[str]) -> None:
+ """Test that ESCAPE_REGEX correctly matches escape sequences."""
+ matches = list(SemanticTokenMapper.ESCAPE_REGEX.finditer(text))
+ actual_groups = [match.group() for match in matches]
+ assert actual_groups == expected_groups, f"Failed for input: {text}"
+
+ @pytest.mark.parametrize(
+ ("text", "should_match"),
+ [
+ ("Given something", True),
+ ("When action", True),
+ ("Then result", True),
+ ("And more", True),
+ ("But exception", True),
+ ("given lowercase", True), # Case insensitive
+ ("Invalid prefix", False),
+ ("Givenno space", False),
+ ],
+ )
+ def test_bdd_token_regex_patterns(self, text: str, should_match: bool) -> None:
+ """Test that BDD_TOKEN_REGEX correctly matches BDD prefixes."""
+ match = SemanticTokenMapper.BDD_TOKEN_REGEX.match(text)
+ assert bool(match) == should_match, f"Failed for input: {text}"
+
+ def test_robot_framework_version_specific_mappings(self) -> None:
+ """Test that version-specific token mappings are correct."""
+ mapper = SemanticTokenMapper()
+ mapping = mapper.mapping()
+ rf_version = get_robot_version()
+
+ # RF 5.0+ tokens
+ if rf_version >= (5, 0):
+ rf5_tokens = [Token.TRY, Token.EXCEPT, Token.FINALLY, Token.WHILE, Token.CONTINUE, Token.BREAK]
+ for token_type in rf5_tokens:
+ if hasattr(Token, token_type): # Check if token exists in this RF version
+ token_val = getattr(Token, token_type)
+ assert token_val in mapping, f"RF 5.0+ token {token_type} should be in mapping"
+ sem_type, _ = mapping[token_val]
+ assert sem_type == RobotSemTokenTypes.CONTROL_FLOW
+
+ # RF 6.0+ tokens
+ if rf_version >= (6, 0):
+ if hasattr(Token, "CONFIG"):
+ assert Token.CONFIG in mapping
+ sem_type, _ = mapping[Token.CONFIG]
+ assert sem_type == RobotSemTokenTypes.CONFIG
+
+ # RF 7.0+ tokens
+ if rf_version >= (7, 0):
+ if hasattr(Token, "VAR"):
+ assert Token.VAR in mapping
+ sem_type, _ = mapping[Token.VAR]
+ assert sem_type == RobotSemTokenTypes.VAR
+
+ def test_cached_unescape_function(self) -> None:
+ """Test the cached unescape function."""
+ from robotcode.language_server.robotframework.parts.semantic_tokens import _cached_unescape
+
+ test_cases = [
+ ("\\n", "\n"),
+ ("\\t", "\t"),
+ ("\\\\", "\\"),
+ ("normal text", "normal text"),
+ ("", ""),
+ ]
+
+ for input_text, expected in test_cases:
+ result = _cached_unescape(input_text)
+ assert result == expected, f"Failed for input: {input_text}"
+
+ # Test caching - same input should return same object
+ result1 = _cached_unescape("\\n")
+ result2 = _cached_unescape("\\n")
+ assert result1 is result2, "Cached function should return same object for same input"
+
+
+class TestArgumentProcessor:
+ """Test cases for ArgumentProcessor class."""
+
+ def test_initialization(self) -> None:
+ """Test ArgumentProcessor initialization."""
+ tokens = [Token(Token.ARGUMENT, "arg1"), Token(Token.ARGUMENT, "arg2")]
+ processor = ArgumentProcessor(tokens)
+
+ assert processor.arguments == tokens
+ assert processor.index == 0
+
+ def test_has_next_with_arguments(self) -> None:
+ """Test has_next when arguments are available."""
+ tokens = [Token(Token.ARGUMENT, "arg1")]
+ processor = ArgumentProcessor(tokens)
+
+ assert processor.has_next() is True
+
+ def test_has_next_with_no_arguments(self) -> None:
+ """Test has_next when no arguments are available."""
+ processor = ArgumentProcessor([])
+
+ assert processor.has_next() is False
+
+ def test_peek_with_arguments(self) -> None:
+ """Test peek without consuming arguments."""
+ token = Token(Token.ARGUMENT, "arg1")
+ processor = ArgumentProcessor([token])
+
+ peeked = processor.peek()
+ assert peeked is token
+ assert processor.index == 0 # Should not advance
+
+ def test_peek_with_no_arguments(self) -> None:
+ """Test peek when no arguments are available."""
+ processor = ArgumentProcessor([])
+
+ peeked = processor.peek()
+ assert peeked is None
+
+ def test_consume_with_arguments(self) -> None:
+ """Test consume advances and returns token."""
+ token = Token(Token.ARGUMENT, "arg1")
+ processor = ArgumentProcessor([token])
+
+ consumed = processor.consume()
+ assert consumed is token
+ assert processor.index == 1
+
+ def test_consume_with_no_arguments(self) -> None:
+ """Test consume when no arguments are available."""
+ processor = ArgumentProcessor([])
+
+ consumed = processor.consume()
+ assert consumed is None
+ assert processor.index == 0
+
+ def test_skip_non_data_tokens(self) -> None:
+ """Test skipping non-data tokens."""
+ tokens = [
+ Token(Token.SEPARATOR, " "),
+ Token(Token.ARGUMENT, "arg1"),
+ Token(Token.SEPARATOR, " "),
+ Token(Token.ARGUMENT, "arg2"),
+ ]
+ processor = ArgumentProcessor(tokens)
+
+ # Mock the skip logic - the actual implementation would need to be tested
+ # This is a simplified test
+ skipped = processor.skip_non_data_tokens()
+ assert isinstance(skipped, list)
+
+ def test_remaining_slice(self) -> None:
+ """Test getting remaining arguments as slice."""
+ tokens = [Token(Token.ARGUMENT, "arg1"), Token(Token.ARGUMENT, "arg2")]
+ processor = ArgumentProcessor(tokens)
+ processor.consume() # Advance past first
+
+ remaining = processor.remaining_slice()
+ assert len(remaining) == 1
+ assert remaining[0].value == "arg2"
+
+ def test_find_separator_index_with_existing_separator(self) -> None:
+ """Test finding separator index when separator exists."""
+ tokens = [
+ Token(Token.ARGUMENT, "arg1"),
+ Token(Token.ARGUMENT, "AND"),
+ Token(Token.ARGUMENT, "arg2"),
+ ]
+ processor = ArgumentProcessor(tokens)
+
+ index = processor.find_separator_index(frozenset({"AND"}))
+ assert index == 1
+
+ def test_find_separator_index_with_no_separator(self) -> None:
+ """Test finding separator index when no separator exists."""
+ tokens = [Token(Token.ARGUMENT, "arg1"), Token(Token.ARGUMENT, "arg2")]
+ processor = ArgumentProcessor(tokens)
+
+ index = processor.find_separator_index(frozenset({"AND"}))
+ assert index is None
+
+ def test_find_separator_index_with_empty_set(self) -> None:
+ """Test finding separator index with empty separator set."""
+ tokens = [Token(Token.ARGUMENT, "arg1")]
+ processor = ArgumentProcessor(tokens)
+
+ index = processor.find_separator_index(frozenset())
+ assert index is None
+
+ def test_iter_until_separator(self) -> None:
+ """Test iterating until separator is found."""
+ tokens = [
+ Token(Token.ARGUMENT, "arg1"),
+ Token(Token.ARGUMENT, "arg2"),
+ Token(Token.ARGUMENT, "AND"),
+ Token(Token.ARGUMENT, "arg3"),
+ ]
+ processor = ArgumentProcessor(tokens)
+
+ # Iterate until AND separator
+ collected = list(processor.iter_until_separator(["AND"]))
+
+ assert len(collected) == 2
+ assert collected[0].value == "arg1"
+ assert collected[1].value == "arg2"
+
+ # Processor should now be positioned at AND
+ current = processor.peek()
+ assert current is not None
+ assert current.value == "AND"
+
+ def test_iter_all_remaining(self) -> None:
+ """Test iterating all remaining tokens."""
+ tokens = [
+ Token(Token.ARGUMENT, "arg1"),
+ Token(Token.ARGUMENT, "arg2"),
+ Token(Token.ARGUMENT, "arg3"),
+ ]
+ processor = ArgumentProcessor(tokens)
+
+ # Consume first token
+ processor.consume()
+
+ # Iterate remaining
+ remaining = list(processor.iter_all_remaining())
+
+ assert len(remaining) == 2
+ assert remaining[0].value == "arg2"
+ assert remaining[1].value == "arg3"
+
+ # Processor should be at end
+ assert not processor.has_next()
+
+ def test_skip_non_data_tokens_real_implementation(self) -> None:
+ """Test skipping non-data tokens with real implementation."""
+ tokens = [
+ Token(Token.SEPARATOR, " "),
+ Token(Token.SEPARATOR, "\t"),
+ Token(Token.ARGUMENT, "arg1"),
+ Token(Token.SEPARATOR, " "),
+ Token(Token.ARGUMENT, "arg2"),
+ ]
+ processor = ArgumentProcessor(tokens)
+
+ # Skip initial separators
+ skipped = processor.skip_non_data_tokens()
+
+ # Should have skipped the two separators
+ assert len(skipped) == 2
+ assert all(token.type == Token.SEPARATOR for token in skipped)
+
+ # Should now be positioned at first argument
+ current = processor.peek()
+ assert current is not None
+ assert current.value == "arg1"
+
+ def test_performance_with_large_argument_list(self) -> None:
+ """Test performance with large argument lists (no list slicing)."""
+ # Create large list of arguments
+ large_args = [Token(Token.ARGUMENT, f"arg{i}", 1, i * 10) for i in range(1000)]
+
+ processor = ArgumentProcessor(large_args)
+
+ # Test that all arguments can be efficiently processed
+ consumed_count = 0
+ while processor.has_next():
+ token = processor.consume()
+ if token:
+ consumed_count += 1
+
+ assert consumed_count == 1000
+
+
+class TestNamedArgumentProcessor:
+ """Test cases for NamedArgumentProcessor class."""
+
+ def setup_method(self) -> None:
+ """Set up test fixtures."""
+ self.token_mapper = SemanticTokenMapper()
+ self.processor = NamedArgumentProcessor(self.token_mapper)
+
+ def test_initialization(self) -> None:
+ """Test NamedArgumentProcessor initialization."""
+ assert self.processor.token_mapper is self.token_mapper
+
+ def test_parse_named_argument_valid(self) -> None:
+ """Test parsing valid named argument."""
+ result = self.processor.parse_named_argument("name=value")
+
+ assert result is not None
+ assert isinstance(result, NamedArgumentInfo)
+ assert result.name == "name"
+ assert result.value == "value"
+ assert result.name_length == 4
+ assert result.total_length == 10
+
+ def test_parse_named_argument_invalid(self) -> None:
+ """Test parsing invalid named argument (no equals)."""
+ result = self.processor.parse_named_argument("just_a_value")
+
+ assert result is None
+
+ def test_parse_named_argument_empty_value(self) -> None:
+ """Test parsing named argument with empty value."""
+ result = self.processor.parse_named_argument("name=")
+
+ assert result is not None
+ assert result.name == "name"
+ assert result.value == ""
+ assert result.name_length == 4
+ assert result.total_length == 5
+
+ def test_validate_named_argument_with_valid_kw_doc(self) -> None:
+ """Test validation with valid keyword documentation."""
+ # Create a mock KeywordDoc with valid arguments
+ kw_doc = KeywordDoc(
+ name="Test Keyword",
+ line_no=1,
+ col_offset=0,
+ end_line_no=1,
+ end_col_offset=10,
+ source="test.robot",
+ arguments=[
+ type("Arg", (), {"name": "valid_arg", "kind": KeywordArgumentKind.POSITIONAL_OR_NAMED})(),
+ type("Arg", (), {"name": "var_named", "kind": KeywordArgumentKind.VAR_NAMED})(),
+ ],
+ )
+
+ # Test valid argument
+ is_valid = self.processor._validate_named_argument("valid_arg", kw_doc)
+ assert is_valid is True
+
+ # Test VAR_NAMED argument
+ is_valid = self.processor._validate_named_argument("any_name", kw_doc)
+ assert is_valid is True # Should be valid due to VAR_NAMED
+
+ def test_validate_named_argument_with_invalid_name(self) -> None:
+ """Test validation with invalid argument name."""
+ kw_doc = KeywordDoc(
+ name="Test Keyword",
+ line_no=1,
+ col_offset=0,
+ end_line_no=1,
+ end_col_offset=10,
+ source="test.robot",
+ arguments=[
+ type("Arg", (), {"name": "valid_arg", "kind": KeywordArgumentKind.POSITIONAL_OR_NAMED})(),
+ ],
+ )
+
+ is_valid = self.processor._validate_named_argument("invalid_arg", kw_doc)
+ assert is_valid is False
+
+ def test_validate_named_argument_with_no_kw_doc(self) -> None:
+ """Test validation with no keyword documentation."""
+ is_valid = self.processor._validate_named_argument("any_arg", None)
+ assert is_valid is False
+
+ def test_validate_named_argument_with_empty_arguments(self) -> None:
+ """Test validation with keyword doc but no arguments."""
+ kw_doc = KeywordDoc(
+ name="Test Keyword",
+ line_no=1,
+ col_offset=0,
+ end_line_no=1,
+ end_col_offset=10,
+ source="test.robot",
+ arguments=[],
+ )
+
+ is_valid = self.processor._validate_named_argument("any_arg", kw_doc)
+ assert is_valid is False
+
+ def test_generate_named_argument_tokens_valid(self) -> None:
+ """Test generating tokens for valid named argument."""
+ token = Token(Token.ARGUMENT, "name=value", 1, 0)
+ arg_info = NamedArgumentInfo("name", "value", 4, 10, True)
+ node = KeywordCall([])
+
+ tokens = list(self.processor.generate_named_argument_tokens(token, arg_info, node))
+
+ assert len(tokens) == 3
+ # Name token
+ assert tokens[0][0].type == ROBOT_NAMED_ARGUMENT
+ assert tokens[0][0].value == "name"
+ # Operator token
+ assert tokens[1][0].type == ROBOT_OPERATOR
+ assert tokens[1][0].value == "="
+ # Value token
+ assert tokens[2][0].value == "value"
+
+ def test_generate_named_argument_tokens_invalid(self) -> None:
+ """Test generating tokens for invalid named argument."""
+ token = Token(Token.ARGUMENT, "name=value", 1, 0)
+ arg_info = NamedArgumentInfo("name", "value", 4, 10, False)
+ node = KeywordCall([])
+
+ tokens = list(self.processor.generate_named_argument_tokens(token, arg_info, node))
+
+ assert len(tokens) == 1 # Should yield only the original token
+
+
+class TestKeywordTokenAnalyzer:
+ """Test cases for KeywordTokenAnalyzer class."""
+
+ def setup_method(self) -> None:
+ """Set up test fixtures."""
+ self.token_mapper = SemanticTokenMapper()
+ self.analyzer = KeywordTokenAnalyzer(self.token_mapper)
+
+ def test_initialization(self) -> None:
+ """Test KeywordTokenAnalyzer initialization."""
+ assert self.analyzer.token_mapper is self.token_mapper
+ assert isinstance(self.analyzer.named_arg_processor, NamedArgumentProcessor)
+
+ def test_skip_non_data_tokens(self) -> None:
+ """Test skipping non-data tokens with ArgumentProcessor."""
+ tokens = [Token(Token.SEPARATOR, " "), Token(Token.ARGUMENT, "arg")]
+ processor = ArgumentProcessor(tokens)
+ node = KeywordCall([])
+
+ skipped = self.analyzer._skip_non_data_tokens(processor, node)
+
+ assert isinstance(skipped, list)
+ # Each item should be a (token, node) tuple
+ for item in skipped:
+ assert len(item) == 2
+ assert isinstance(item[0], Token)
+
+ def test_generate_keyword_tokens_simple(self) -> None:
+ """Test generating tokens for simple keyword call."""
+ kw_token = Token(Token.KEYWORD, "Log", 1, 0)
+ arguments = [Token(Token.ARGUMENT, "Hello")]
+ node = KeywordCall([])
+
+ # Create a minimal namespace mock
+ namespace = type("MockNamespace", (), {"find_keyword": lambda self, name, raise_keyword_error=True: None})()
+
+ tokens = list(self.analyzer.generate_keyword_tokens(namespace, kw_token, arguments, node))
+
+ assert len(tokens) >= 2 # At least keyword and argument tokens
+ assert tokens[0][0] is kw_token
+
+ def test_generate_keyword_tokens_with_named_args(self) -> None:
+ """Test generating tokens for keyword call with named arguments."""
+ kw_token = Token(Token.KEYWORD, "Log", 1, 0)
+ arguments = [Token(Token.ARGUMENT, "message=Hello")]
+ node = KeywordCall([])
+
+ # Create a mock keyword doc with named arguments
+ kw_doc = KeywordDoc(
+ name="Log",
+ line_no=1,
+ col_offset=0,
+ end_line_no=1,
+ end_col_offset=10,
+ source="test.robot",
+ arguments=[
+ type("Arg", (), {"name": "message", "kind": KeywordArgumentKind.POSITIONAL_OR_NAMED})(),
+ ],
+ )
+
+ namespace = type("MockNamespace", (), {"find_keyword": lambda self, name, raise_keyword_error=True: kw_doc})()
+
+ tokens = list(self.analyzer.generate_keyword_tokens(namespace, kw_token, arguments, node, kw_doc))
+
+ assert len(tokens) >= 2
+
+
+class TestRunKeywordTokenAnalysis:
+ """Comprehensive tests for Run Keyword variants - CRITICAL missing functionality."""
+
+ def setup_method(self) -> None:
+ """Set up test fixtures."""
+ self.token_mapper = SemanticTokenMapper()
+ self.analyzer = KeywordTokenAnalyzer(self.token_mapper)
+
+ def test_run_keyword_if_complete_flow(self) -> None:
+ """Test complete Run Keyword If logic with ELSE IF and ELSE."""
+ kw_token = Token(Token.KEYWORD, "Run Keyword If", 1, 0)
+ arguments = [
+ Token(Token.ARGUMENT, "${condition1}", 1, 16), # condition
+ Token(Token.ARGUMENT, "Log", 1, 30), # keyword
+ Token(Token.ARGUMENT, "Case1", 1, 34), # arg
+ Token(Token.ARGUMENT, "ELSE IF", 1, 40), # separator
+ Token(Token.ARGUMENT, "${condition2}", 1, 48), # condition
+ Token(Token.ARGUMENT, "Log", 1, 62), # keyword
+ Token(Token.ARGUMENT, "Case2", 1, 66), # arg
+ Token(Token.ARGUMENT, "ELSE", 1, 72), # separator
+ Token(Token.ARGUMENT, "Log", 1, 77), # keyword
+ Token(Token.ARGUMENT, "Default", 1, 81), # arg
+ ]
+
+ # Create a KeywordDoc for Run Keyword If
+ kw_doc = KeywordDoc(
+ name="Run Keyword If",
+ line_no=1,
+ col_offset=0,
+ end_line_no=1,
+ end_col_offset=15,
+ source="BuiltIn",
+ libname="BuiltIn",
+ )
+ node = KeywordCall([])
+ namespace = type(
+ "MockNamespace",
+ (),
+ {
+ "find_keyword": lambda self, name, **kwargs: None,
+ "languages": None,
+ },
+ )()
+
+ # Test token generation
+ tokens = list(self.analyzer.generate_run_kw_tokens(namespace, None, kw_doc, kw_token, arguments, node))
+
+ # Should process all tokens
+ assert len(tokens) >= len(arguments) + 1 # +1 for keyword token
+
+ def test_run_keywords_with_and_separators(self) -> None:
+ """Test Run Keywords with AND separators."""
+ kw_token = Token(Token.KEYWORD, "Run Keywords", 1, 0)
+ arguments = [
+ Token(Token.ARGUMENT, "Log", 1, 13),
+ Token(Token.ARGUMENT, "First", 1, 17),
+ Token(Token.ARGUMENT, "AND", 1, 23), # separator
+ Token(Token.ARGUMENT, "Log", 1, 27),
+ Token(Token.ARGUMENT, "Second", 1, 31),
+ Token(Token.ARGUMENT, "AND", 1, 38), # separator
+ Token(Token.ARGUMENT, "Log", 1, 42),
+ Token(Token.ARGUMENT, "Third", 1, 46),
+ ]
+
+ # Create a KeywordDoc for Run Keywords
+ kw_doc = KeywordDoc(
+ name="Run Keywords",
+ line_no=1,
+ col_offset=0,
+ end_line_no=1,
+ end_col_offset=12,
+ source="BuiltIn",
+ libname="BuiltIn",
+ )
+ node = KeywordCall([])
+ namespace = type(
+ "MockNamespace",
+ (),
+ {
+ "find_keyword": lambda self, name, **kwargs: None,
+ "languages": None,
+ },
+ )()
+
+ tokens = list(self.analyzer.generate_run_kw_tokens(namespace, None, kw_doc, kw_token, arguments, node))
+
+ # Should process all tokens including separators
+ assert len(tokens) >= len(arguments) + 1
+
+ def test_run_keyword_simple(self) -> None:
+ """Test simple Run Keyword call."""
+ kw_token = Token(Token.KEYWORD, "Run Keyword", 1, 0)
+ arguments = [
+ Token(Token.ARGUMENT, "Log", 1, 12),
+ Token(Token.ARGUMENT, "Hello", 1, 16),
+ Token(Token.ARGUMENT, "World", 1, 22),
+ ]
+
+ # Create a KeywordDoc for simple Run Keyword
+ kw_doc = KeywordDoc(
+ name="Run Keyword",
+ line_no=1,
+ col_offset=0,
+ end_line_no=1,
+ end_col_offset=11,
+ source="BuiltIn",
+ libname="BuiltIn",
+ )
+ node = KeywordCall([])
+ namespace = type(
+ "MockNamespace",
+ (),
+ {
+ "find_keyword": lambda self, name, **kwargs: None,
+ "languages": None,
+ },
+ )()
+
+ tokens = list(self.analyzer.generate_run_kw_tokens(namespace, None, kw_doc, kw_token, arguments, node))
+
+ assert len(tokens) >= len(arguments) + 1
+
+ def test_non_run_keyword_handling(self) -> None:
+ """Test that non-run-keyword calls are handled normally."""
+ kw_token = Token(Token.KEYWORD, "Log", 1, 0)
+ arguments = [Token(Token.ARGUMENT, "Hello")]
+
+ # Regular keyword (not run keyword)
+ kw_doc = None
+ node = KeywordCall([])
+ namespace = type(
+ "MockNamespace",
+ (),
+ {
+ "find_keyword": lambda self, name, **kwargs: None,
+ "languages": None,
+ },
+ )()
+
+ tokens = list(self.analyzer.generate_run_kw_tokens(namespace, None, kw_doc, kw_token, arguments, node))
+
+ # Should handle as regular keyword
+ assert len(tokens) >= 2 # keyword + argument
+
+
+class TestRealRobotFrameworkIntegration:
+ """Test with real Robot Framework code parsing - VERY IMPORTANT: Missing completely!"""
+
+ def test_keyword_call_semantic_tokens_real_ast(self) -> None:
+ """Test semantic tokens with real Robot Framework AST."""
+ robot_code = """*** Test Cases ***
+Example Test
+ Log message=Hello World level=INFO
+ Set Variable ${value} test_value
+"""
+
+ # Parse real Robot Framework code
+ model = get_model(robot_code)
+ generator = SemanticTokenGenerator()
+
+ # Find KeywordCall nodes in AST
+ keyword_calls = []
+ import ast
+
+ for node in ast.walk(model):
+ if hasattr(node, "tokens") and any(t.type == Token.KEYWORD for t in getattr(node, "tokens", [])):
+ keyword_calls.append(node)
+
+ assert len(keyword_calls) >= 2 # Log and Set Variable
+
+ # Create minimal namespace for testing
+ namespace = type(
+ "MockNamespace",
+ (),
+ {
+ "find_keyword": lambda self, name, **kwargs: None,
+ "languages": None,
+ },
+ )()
+
+ # Test that tokens are generated without errors
+ for kw_call in keyword_calls:
+ if hasattr(kw_call, "tokens"):
+ for token in getattr(kw_call, "tokens", []):
+ if token.type == Token.KEYWORD:
+ sem_tokens = list(generator.generate_sem_tokens(token, kw_call, namespace, None))
+ assert len(sem_tokens) >= 1
+ assert all(isinstance(st, SemTokenInfo) for st in sem_tokens)
+
+ def test_named_arguments_in_real_code(self) -> None:
+ """Test named arguments parsing in real Robot Framework code."""
+ robot_code = """*** Keywords ***
+Custom Keyword
+ Log message=Hello level=DEBUG console=True
+ Should Be Equal first=1 second=1 msg=Values should match
+"""
+
+ model = get_model(robot_code)
+ processor = NamedArgumentProcessor(SemanticTokenMapper())
+
+ # Find all ARGUMENT tokens with equals
+ argument_tokens = []
+ import ast
+
+ for node in ast.walk(model):
+ if hasattr(node, "tokens"):
+ for token in getattr(node, "tokens", []):
+ if token.type == Token.ARGUMENT and "=" in token.value:
+ argument_tokens.append(token)
+
+ # Test named argument parsing
+ named_args = []
+ for token in argument_tokens:
+ arg_info = processor.parse_named_argument(token.value)
+ if arg_info:
+ named_args.append(arg_info)
+
+ # Should find multiple named arguments
+ assert len(named_args) >= 4 # message=, level=, console=, first=, second=, msg=
+
+ # Verify structure
+ for arg_info in named_args:
+ assert isinstance(arg_info, NamedArgumentInfo)
+ assert arg_info.name_length > 0
+ assert arg_info.total_length > arg_info.name_length
+
+ def test_variable_expressions_in_real_code(self) -> None:
+ """Test variable expression handling in real code."""
+ robot_code = """*** Variables ***
+${SIMPLE_VAR} Hello
+@{LIST_VAR} item1 item2
+&{DICT_VAR} key=value another=test
+
+*** Test Cases ***
+Variable Test
+ Log ${SIMPLE_VAR}
+ Log Many @{LIST_VAR}
+ Log &{DICT_VAR}[key]
+"""
+
+ model = get_model(robot_code)
+ generator = SemanticTokenGenerator()
+
+ # Find variable tokens (declarations in *** Variables *** section)
+ variable_declarations = []
+ # Find argument tokens that contain variables (usage in test cases)
+ variable_usages = []
+
+ import ast
+
+ for node in ast.walk(model):
+ if hasattr(node, "tokens"):
+ for token in getattr(node, "tokens", []):
+ if token.type == Token.VARIABLE:
+ variable_declarations.append((token, node))
+ elif token.type == Token.ARGUMENT and any(pattern in token.value for pattern in ["${", "@{", "&{"]):
+ variable_usages.append((token, node))
+
+ # Should find 3 variable declarations and some variable usages
+ assert len(variable_declarations) == 3 # ${SIMPLE_VAR}, @{LIST_VAR}, &{DICT_VAR}
+ assert len(variable_usages) >= 3 # ${SIMPLE_VAR}, @{LIST_VAR}, &{DICT_VAR}[key]
+
+ # Test semantic token generation for variable declarations
+ namespace = type(
+ "MockNamespace",
+ (),
+ {
+ "find_keyword": lambda self, name, **kwargs: None,
+ "languages": None,
+ },
+ )()
+
+ for token, node in variable_declarations:
+ sem_tokens = list(generator.generate_sem_tokens(token, node, namespace, None))
+ assert len(sem_tokens) >= 1
+ assert any(st.sem_token_type == RobotSemTokenTypes.VARIABLE for st in sem_tokens)
+
+ # Test that variable usages in arguments are also processed
+ for token, node in variable_usages:
+ sem_tokens = list(generator.generate_sem_tokens(token, node, namespace, None))
+ assert len(sem_tokens) >= 1 # Should generate at least one token
+
+ def test_bdd_prefixes_in_real_code(self) -> None:
+ """Test BDD prefix detection in real Robot Framework code."""
+ robot_code = """*** Test Cases ***
+BDD Test Case
+ Given I have initial state
+ When I perform action
+ Then I should see result
+ And I should also see this
+ But not this other thing
+"""
+
+ model = get_model(robot_code)
+
+ # Find keyword tokens that might have BDD prefixes
+ keyword_tokens = []
+ import ast
+
+ for node in ast.walk(model):
+ if hasattr(node, "tokens"):
+ for token in getattr(node, "tokens", []):
+ if token.type == Token.KEYWORD:
+ keyword_tokens.append(token)
+
+ # Test BDD regex on actual keywords
+ bdd_matches = []
+ for token in keyword_tokens:
+ match = SemanticTokenMapper.BDD_TOKEN_REGEX.match(token.value)
+ if match:
+ bdd_matches.append((token.value, match.group(1)))
+
+ # Should find BDD prefixes
+ assert len(bdd_matches) >= 5 # Given, When, Then, And, But
+
+ # Verify expected prefixes
+ expected_prefixes = {"Given", "When", "Then", "And", "But"}
+ found_prefixes = {match[1] for match in bdd_matches}
+ assert expected_prefixes.issubset(found_prefixes)
+
+
+class TestSemanticTokenGenerator:
+ """Test cases for SemanticTokenGenerator class."""
+
+ def setup_method(self) -> None:
+ """Set up test fixtures."""
+ self.generator = SemanticTokenGenerator()
+
+ def test_initialization(self) -> None:
+ """Test SemanticTokenGenerator initialization."""
+ assert isinstance(self.generator.token_mapper, SemanticTokenMapper)
+ assert isinstance(self.generator.keyword_analyzer, KeywordTokenAnalyzer)
+
+ def test_get_tokens_after_with_valid_token(self) -> None:
+ """Test getting tokens after a specific token."""
+ token1 = Token(Token.KEYWORD, "Log", 1, 0)
+ token2 = Token(Token.ARGUMENT, "Hello", 1, 4)
+ token3 = Token(Token.ARGUMENT, "World", 1, 10)
+ tokens = [token1, token2, token3]
+
+ result = self.generator._get_tokens_after(tokens, token1)
+
+ assert len(result) == 2
+ assert result[0] is token2
+ assert result[1] is token3
+
+ def test_get_tokens_after_with_missing_token(self) -> None:
+ """Test getting tokens after a token that doesn't exist."""
+ token1 = Token(Token.KEYWORD, "Log", 1, 0)
+ token2 = Token(Token.ARGUMENT, "Hello", 1, 4)
+ missing_token = Token(Token.KEYWORD, "Missing", 1, 0)
+ tokens = [token1, token2]
+
+ result = self.generator._get_tokens_after(tokens, missing_token)
+
+ assert len(result) == 0
+
+ def test_get_tokens_after_with_last_token(self) -> None:
+ """Test getting tokens after the last token."""
+ token1 = Token(Token.KEYWORD, "Log", 1, 0)
+ token2 = Token(Token.ARGUMENT, "Hello", 1, 4)
+ tokens = [token1, token2]
+
+ result = self.generator._get_tokens_after(tokens, token2)
+
+ assert len(result) == 0
+
+ def test_generate_sem_sub_tokens_basic(self) -> None:
+ """Test generating semantic sub-tokens for basic token."""
+ token = Token(Token.KEYWORD, "Log", 1, 0)
+ node = KeywordCall([])
+
+ # Create minimal mocks
+ namespace = type("MockNamespace", (), {"find_keyword": lambda self, name, **kwargs: None, "languages": None})()
+
+ sem_tokens = list(self.generator.generate_sem_sub_tokens(namespace, None, token, node))
+
+ assert len(sem_tokens) >= 1
+ assert all(isinstance(st, SemTokenInfo) for st in sem_tokens)
+
+ def test_generate_sem_tokens_with_variable_token(self) -> None:
+ """Test generating semantic tokens for variable token."""
+ token = Token(Token.VARIABLE, "${var}", 1, 0)
+ node = Variable([])
+
+ namespace = type("MockNamespace", (), {"find_keyword": lambda self, name, **kwargs: None, "languages": None})()
+
+ sem_tokens = list(self.generator.generate_sem_tokens(token, node, namespace, None))
+
+ assert len(sem_tokens) >= 1
+ assert all(isinstance(st, SemTokenInfo) for st in sem_tokens)
+
+
+class TestSemTokenInfo:
+ """Test cases for SemTokenInfo dataclass."""
+
+ def test_from_token_basic(self) -> None:
+ """Test creating SemTokenInfo from basic token."""
+ token = Token(Token.KEYWORD, "Log", 1, 5)
+
+ sem_token = SemTokenInfo.from_token(token, RobotSemTokenTypes.KEYWORD)
+
+ assert sem_token.lineno == 1
+ assert sem_token.col_offset == 5
+ assert sem_token.length == 3 # len("Log")
+ assert sem_token.sem_token_type == RobotSemTokenTypes.KEYWORD
+ assert sem_token.sem_modifiers is None
+
+ def test_from_token_with_modifiers(self) -> None:
+ """Test creating SemTokenInfo with modifiers."""
+ token = Token(Token.KEYWORD, "Log", 1, 5)
+ modifiers = {RobotSemTokenModifiers.BUILTIN}
+
+ sem_token = SemTokenInfo.from_token(token, RobotSemTokenTypes.KEYWORD, modifiers) # type: ignore[arg-type]
+
+ assert sem_token.sem_modifiers == modifiers
+
+ def test_from_token_with_custom_offset_and_length(self) -> None:
+ """Test creating SemTokenInfo with custom offset and length."""
+ token = Token(Token.KEYWORD, "Long Keyword Name", 1, 0)
+
+ sem_token = SemTokenInfo.from_token(token, RobotSemTokenTypes.KEYWORD, None, 5, 7)
+
+ assert sem_token.col_offset == 5
+ assert sem_token.length == 7
+
+ def test_from_token_with_zero_length(self) -> None:
+ """Test creating SemTokenInfo with zero length."""
+ token = Token(Token.KEYWORD, "", 1, 5)
+
+ sem_token = SemTokenInfo.from_token(token, RobotSemTokenTypes.KEYWORD)
+
+ assert sem_token.length == 0
+
+
+class TestNamedArgumentInfo:
+ """Test cases for NamedArgumentInfo dataclass."""
+
+ def test_initialization(self) -> None:
+ """Test NamedArgumentInfo initialization."""
+ info = NamedArgumentInfo("name", "value", 4, 10, True)
+
+ assert info.name == "name"
+ assert info.value == "value"
+ assert info.name_length == 4
+ assert info.total_length == 10
+ assert info.is_valid is True
+
+ def test_equality(self) -> None:
+ """Test NamedArgumentInfo equality comparison."""
+ info1 = NamedArgumentInfo("name", "value", 4, 10, True)
+ info2 = NamedArgumentInfo("name", "value", 4, 10, True)
+ info3 = NamedArgumentInfo("name", "other", 4, 9, True)
+
+ assert info1 == info2
+ assert info1 != info3
+
+
+# Integration test fixtures
+@pytest.fixture
+def sample_namespace() -> Any:
+ """Create a sample namespace for testing."""
+ # This would need to be implemented based on the actual Namespace class
+ return type(
+ "MockNamespace",
+ (),
+ {
+ "find_keyword": lambda self, name, **kwargs: None,
+ "languages": None,
+ "get_imported_library_libdoc": lambda self, *args: None,
+ "get_variables_import_libdoc": lambda self, *args: None,
+ },
+ )()
+
+
+@pytest.fixture
+def sample_builtin_library_doc() -> LibraryDoc:
+ """Create a sample builtin library doc for testing."""
+ return LibraryDoc(name="BuiltIn")
+
+
+class TestIntegration:
+ """Integration tests for semantic tokens components."""
+
+ def test_complete_semantic_token_pipeline(
+ self,
+ sample_namespace: Any,
+ sample_builtin_library_doc: LibraryDoc,
+ ) -> None:
+ """Test complete pipeline from Robot Framework code to semantic tokens."""
+ robot_code = """*** Settings ***
+Library Collections
+
+*** Test Cases ***
+Integration Test
+ Log message=Hello World level=INFO
+ Create Dictionary key=value another=test
+
+*** Keywords ***
+Custom Keyword
+ [Arguments] ${arg1} ${arg2}=default
+ Log ${arg1}
+ RETURN ${arg2}
+"""
+
+ # Parse real Robot Framework code
+ model = get_model(robot_code)
+ generator = SemanticTokenGenerator()
+
+ # Find all tokens that should generate semantic tokens
+ all_tokens = []
+ import ast
+
+ for node in ast.walk(model):
+ if hasattr(node, "tokens"):
+ for token in getattr(node, "tokens", []):
+ if token.type not in [Token.SEPARATOR, Token.EOL, Token.EOS]:
+ all_tokens.append((token, node))
+
+ assert len(all_tokens) >= 10 # Should have many tokens
+
+ # Test semantic token generation for each token
+ successful_generations = 0
+ for token, node in all_tokens:
+ try:
+ sem_tokens = list(
+ generator.generate_sem_tokens(token, node, sample_namespace, sample_builtin_library_doc)
+ )
+ assert all(isinstance(st, SemTokenInfo) for st in sem_tokens)
+ successful_generations += 1
+ except Exception as e:
+ # Log but don't fail - some tokens might not be processable
+ print(f"Token generation failed for {token.type}:{token.value} - {e}")
+
+ # Most tokens should be successfully processed
+ assert successful_generations >= len(all_tokens) * 0.8 # 80% success rate
+
+ def test_semantic_token_consistency(self, sample_namespace: Any, sample_builtin_library_doc: LibraryDoc) -> None:
+ """Test that semantic token generation is consistent."""
+ generator = SemanticTokenGenerator()
+ token = Token(Token.KEYWORD, "Log", 1, 0)
+ node = KeywordCall([])
+
+ # Generate tokens multiple times
+ results = []
+ for _ in range(3):
+ sem_tokens = list(generator.generate_sem_tokens(token, node, sample_namespace, sample_builtin_library_doc))
+ results.append(sem_tokens)
+
+ # Results should be identical
+ assert len(set(len(result) for result in results)) == 1 # All same length
+
+ # Content should be the same
+ for i in range(1, len(results)):
+ assert len(results[0]) == len(results[i])
+ for j, (st1, st2) in enumerate(zip(results[0], results[i])):
+ assert st1.sem_token_type == st2.sem_token_type, f"Mismatch at position {j}"
+ assert st1.lineno == st2.lineno, f"Line mismatch at position {j}"
+ assert st1.col_offset == st2.col_offset, f"Column mismatch at position {j}"
+
+
+class TestRunKeywordVariantsComprehensive:
+ """Comprehensive tests for all Run Keyword variants - CRITICAL missing functionality."""
+
+ def setup_method(self) -> None:
+ """Set up test fixtures."""
+ self.token_mapper = SemanticTokenMapper()
+ self.analyzer = KeywordTokenAnalyzer(self.token_mapper)
+
+ # Create comprehensive namespace mock
+ self.namespace = type(
+ "MockNamespace",
+ (),
+ {
+ "find_keyword": self._mock_find_keyword,
+ "languages": None,
+ },
+ )()
+
+ def _mock_find_keyword(self, name: str, **kwargs: Any) -> Any:
+ """Mock keyword finder that returns appropriate docs for Run Keywords."""
+ if "Run Keyword If" in name:
+ return self._create_run_keyword_if_doc()
+ if "Run Keywords" in name:
+ return self._create_run_keywords_doc()
+ if "Run Keyword And" in name:
+ return self._create_run_keyword_with_condition_doc()
+ if "Run Keyword" in name:
+ return self._create_run_keyword_doc()
+ return None
+
+ def _create_run_keyword_if_doc(self) -> Any:
+ """Create mock doc for Run Keyword If."""
+ return type(
+ "MockKeywordDoc",
+ (),
+ {
+ "name": "Run Keyword If",
+ "source": "BuiltIn",
+ "is_any_run_keyword": lambda: True,
+ "is_run_keyword": lambda: False,
+ "is_run_keyword_with_condition": lambda: False,
+ "is_run_keyword_if": lambda: True,
+ "is_run_keywords": lambda: False,
+ },
+ )()
+
+ def _create_run_keywords_doc(self) -> Any:
+ """Create mock doc for Run Keywords."""
+ return type(
+ "MockKeywordDoc",
+ (),
+ {
+ "name": "Run Keywords",
+ "source": "BuiltIn",
+ "is_any_run_keyword": lambda self: True,
+ "is_run_keyword": lambda self: False,
+ "is_run_keyword_with_condition": lambda self: False,
+ "is_run_keyword_if": lambda self: False,
+ "is_run_keywords": lambda self: True,
+ },
+ )()
+
+ def _create_run_keyword_with_condition_doc(self) -> Any:
+ """Create mock doc for Run Keyword And Return/Continue/etc."""
+ return type(
+ "MockKeywordDoc",
+ (),
+ {
+ "name": "Run Keyword And Return",
+ "source": "BuiltIn",
+ "is_any_run_keyword": lambda self: True,
+ "is_run_keyword": lambda self: False,
+ "is_run_keyword_with_condition": lambda self: True,
+ "is_run_keyword_if": lambda self: False,
+ "is_run_keywords": lambda self: False,
+ "run_keyword_condition_count": lambda self: 1,
+ },
+ )()
+
+ def _create_run_keyword_doc(self) -> Any:
+ """Create mock doc for simple Run Keyword."""
+ return type(
+ "MockKeywordDoc",
+ (),
+ {
+ "name": "Run Keyword",
+ "source": "BuiltIn",
+ "is_any_run_keyword": lambda self: True,
+ "is_run_keyword": lambda self: True,
+ "is_run_keyword_with_condition": lambda self: False,
+ "is_run_keyword_if": lambda self: False,
+ "is_run_keywords": lambda self: False,
+ },
+ )()
+
+ def test_run_keyword_if_complex_structure(self) -> None:
+ """Test Run Keyword If with complex ELSE IF/ELSE structure."""
+ arguments = [
+ Token(Token.ARGUMENT, "${condition1}", 1, 16),
+ Token(Token.ARGUMENT, "Log", 1, 30),
+ Token(Token.ARGUMENT, "First Case", 1, 34),
+ Token(Token.ARGUMENT, "ELSE IF", 1, 45),
+ Token(Token.ARGUMENT, "${condition2}", 1, 53),
+ Token(Token.ARGUMENT, "Log", 1, 67),
+ Token(Token.ARGUMENT, "Second Case", 1, 71),
+ Token(Token.ARGUMENT, "ELSE IF", 1, 83),
+ Token(Token.ARGUMENT, "${condition3}", 1, 91),
+ Token(Token.ARGUMENT, "Log", 1, 105),
+ Token(Token.ARGUMENT, "Third Case", 1, 109),
+ Token(Token.ARGUMENT, "ELSE", 1, 120),
+ Token(Token.ARGUMENT, "Log", 1, 125),
+ Token(Token.ARGUMENT, "Default Case", 1, 129),
+ ]
+
+ node = KeywordCall([])
+
+ tokens = list(self.analyzer._generate_run_keyword_if_tokens(self.namespace, None, arguments, node))
+
+ # Should process all tokens correctly
+ assert len(tokens) >= len(arguments)
+
+ # Verify that separator tokens (ELSE IF, ELSE) are processed
+ separator_tokens = [t for t in tokens if t[0].value in ["ELSE IF", "ELSE"]]
+ assert len(separator_tokens) >= 3 # 2x ELSE IF, 1x ELSE
+
+ def test_run_keywords_with_multiple_and_separators(self) -> None:
+ """Test Run Keywords with multiple AND separators."""
+ arguments = [
+ Token(Token.ARGUMENT, "Log", 1, 13),
+ Token(Token.ARGUMENT, "First", 1, 17),
+ Token(Token.ARGUMENT, "arg1", 1, 23),
+ Token(Token.ARGUMENT, "AND", 1, 28),
+ Token(Token.ARGUMENT, "Log", 1, 32),
+ Token(Token.ARGUMENT, "Second", 1, 36),
+ Token(Token.ARGUMENT, "AND", 1, 43),
+ Token(Token.ARGUMENT, "Set Variable", 1, 47),
+ Token(Token.ARGUMENT, "${var}", 1, 60),
+ Token(Token.ARGUMENT, "value", 1, 67),
+ Token(Token.ARGUMENT, "AND", 1, 73),
+ Token(Token.ARGUMENT, "Log", 1, 77),
+ Token(Token.ARGUMENT, "Third", 1, 81),
+ ]
+
+ node = KeywordCall([])
+
+ tokens = list(self.analyzer._generate_run_keywords_tokens(self.namespace, None, arguments, node))
+
+ # Should process all tokens including AND separators
+ assert len(tokens) >= len(arguments)
+
+ # Verify AND separators are properly handled
+ and_tokens = [t for t in tokens if t[0].value == "AND"]
+ assert len(and_tokens) == 3
+
+ def test_run_keyword_and_return_variants(self) -> None:
+ """Test Run Keyword And Return/Continue/Ignore Error variants."""
+ variants = [
+ "Run Keyword And Return",
+ "Run Keyword And Continue On Failure",
+ "Run Keyword And Ignore Error",
+ "Run Keyword And Return If",
+ ]
+
+ for variant in variants:
+ arguments = [
+ Token(Token.ARGUMENT, "Log", 1, len(variant) + 1),
+ Token(Token.ARGUMENT, "Test Message", 1, len(variant) + 5),
+ ]
+
+ kw_doc = self._create_run_keyword_with_condition_doc()
+ kw_doc.name = variant
+ node = KeywordCall([])
+
+ tokens = list(
+ self.analyzer._generate_run_keyword_with_condition_tokens(self.namespace, None, kw_doc, arguments, node)
+ )
+
+ # Should process all tokens
+ assert len(tokens) >= len(arguments)
+
+ def test_run_keyword_executing_run_keywords(self) -> None:
+ """Test Run Keyword executing Run Keywords (one level nesting)."""
+ arguments = [
+ Token(Token.ARGUMENT, "Run Keywords", 1, 12), # Run Keywords as argument to Run Keyword
+ Token(Token.ARGUMENT, "Log", 1, 25),
+ Token(Token.ARGUMENT, "Nested1", 1, 29),
+ Token(Token.ARGUMENT, "AND", 1, 37),
+ Token(Token.ARGUMENT, "Log", 1, 41),
+ Token(Token.ARGUMENT, "Nested2", 1, 45),
+ ]
+
+ node = KeywordCall([])
+
+ tokens = list(self.analyzer._generate_run_keyword_tokens(self.namespace, None, arguments, node))
+
+ # Should handle Run Keyword → Run Keywords → Log structure
+ assert len(tokens) >= len(arguments)
+
+ # Verify that specific tokens are processed correctly
+ token_values = [token[0].value for token in tokens]
+
+ # Should contain the Run Keywords keyword (executed by Run Keyword)
+ assert "Run Keywords" in token_values
+
+ # Should contain both Log keywords (executed by Run Keywords)
+ assert token_values.count("Log") >= 2
+
+ # Should contain the AND separator
+ assert "AND" in token_values
+
+ # Should contain both argument values
+ assert "Nested1" in token_values
+ assert "Nested2" in token_values
+
+ def test_truly_nested_run_keywords(self) -> None:
+ """Test actual nested Run Keywords calling other Run Keywords."""
+ arguments = [
+ Token(Token.ARGUMENT, "Run Keywords", 1, 13), # First Run Keywords call
+ Token(Token.ARGUMENT, "Log", 1, 26),
+ Token(Token.ARGUMENT, "First", 1, 30),
+ Token(Token.ARGUMENT, "AND", 1, 36),
+ Token(Token.ARGUMENT, "Run Keywords", 1, 40), # Nested Run Keywords!
+ Token(Token.ARGUMENT, "Log", 1, 53),
+ Token(Token.ARGUMENT, "Nested1", 1, 57),
+ Token(Token.ARGUMENT, "AND", 1, 65),
+ Token(Token.ARGUMENT, "Log", 1, 69),
+ Token(Token.ARGUMENT, "Nested2", 1, 73),
+ ]
+
+ node = KeywordCall([])
+
+ tokens = list(self.analyzer._generate_run_keywords_tokens(self.namespace, None, arguments, node))
+
+ # Should handle Run Keywords → Run Keywords → Log structure
+ assert len(tokens) >= len(arguments)
+
+ # Verify that specific tokens are processed correctly
+ token_values = [token[0].value for token in tokens]
+
+ # Should contain multiple Run Keywords calls
+ assert token_values.count("Run Keywords") >= 2
+
+ # Should contain multiple Log keywords
+ assert token_values.count("Log") >= 3
+
+ # Should contain AND separators
+ assert token_values.count("AND") >= 2
+
+ def test_run_keyword_edge_cases(self) -> None:
+ """Test edge cases for Run Keyword variants."""
+ # Empty arguments
+ arguments: list[Token] = []
+ node = KeywordCall([])
+
+ tokens = list(self.analyzer._generate_run_keyword_tokens(self.namespace, None, arguments, node))
+
+ # Should handle empty arguments gracefully
+ assert len(tokens) == 0 # No tokens for empty arguments
+
+ # Single argument
+ arguments = [Token(Token.ARGUMENT, "Log", 1, 12)]
+ tokens = list(self.analyzer._generate_run_keyword_tokens(self.namespace, None, arguments, node))
+
+ assert len(tokens) == 1 # Just the keyword token
+
+
+class TestArgumentProcessorEdgeCases:
+ """Comprehensive edge case tests for ArgumentProcessor."""
+
+ def test_find_separator_from_current_position(self) -> None:
+ """Test find_separator_index respects current position."""
+ tokens = [
+ Token(Token.ARGUMENT, "arg1"),
+ Token(Token.ARGUMENT, "AND"),
+ Token(Token.ARGUMENT, "arg2"),
+ Token(Token.ARGUMENT, "OR"),
+ Token(Token.ARGUMENT, "arg3"),
+ ]
+ processor = ArgumentProcessor(tokens)
+
+ # Find first occurrence from start
+ index = processor.find_separator_index(frozenset({"AND", "OR"}))
+ assert index == 1 # Should find AND first
+
+ # The method should search from current index, not from a set position
+ # Let's test the actual behavior
+ processor.index = 0
+ first_separator = processor.find_separator_index(frozenset({"OR"}))
+ assert first_separator == 3 # Should find OR at index 3
+
+ def test_iter_until_separator_multiple_types(self) -> None:
+ """Test iter_until_separator with multiple separator types."""
+ tokens = [
+ Token(Token.ARGUMENT, "start"),
+ Token(Token.ARGUMENT, "arg1"),
+ Token(Token.ARGUMENT, "arg2"),
+ Token(Token.ARGUMENT, "ELSE IF"), # First separator
+ Token(Token.ARGUMENT, "condition"),
+ Token(Token.ARGUMENT, "ELSE"), # Second separator
+ Token(Token.ARGUMENT, "final"),
+ ]
+ processor = ArgumentProcessor(tokens)
+
+ # Consume start token
+ processor.consume()
+
+ # Iterate until any separator
+ collected = list(processor.iter_until_separator(["ELSE IF", "ELSE"]))
+
+ assert len(collected) == 2
+ assert collected[0].value == "arg1"
+ assert collected[1].value == "arg2"
+
+ # Should be positioned at separator
+ current = processor.peek()
+ assert current is not None
+ assert current.value == "ELSE IF"
+
+ def test_argument_processor_with_unicode(self) -> None:
+ """Test ArgumentProcessor with Unicode characters."""
+ tokens = [
+ Token(Token.ARGUMENT, "Ärg1"), # German umlaut
+ Token(Token.ARGUMENT, "测试"), # Chinese characters
+ Token(Token.ARGUMENT, "🤖"), # Emoji
+ Token(Token.ARGUMENT, "AND"),
+ Token(Token.ARGUMENT, "Ñoño"), # Spanish characters
+ ]
+ processor = ArgumentProcessor(tokens)
+
+ # Should handle Unicode properly
+ consumed = []
+ while processor.has_next():
+ token = processor.consume()
+ if token:
+ consumed.append(token)
+
+ assert len(consumed) == 5
+ assert consumed[0].value == "Ärg1"
+ assert consumed[1].value == "测试"
+ assert consumed[2].value == "🤖"
+
+ def test_skip_non_data_tokens_comprehensive(self) -> None:
+ """Test skip_non_data_tokens with various non-data token types."""
+ tokens = [
+ Token(Token.SEPARATOR, " "),
+ Token(Token.SEPARATOR, "\t"),
+ Token(Token.SEPARATOR, "\n"),
+ Token(Token.COMMENT, "# Comment"),
+ Token(Token.ARGUMENT, "first_arg"),
+ Token(Token.SEPARATOR, " "),
+ Token(Token.ARGUMENT, "second_arg"),
+ ]
+ processor = ArgumentProcessor(tokens)
+
+ # Skip all initial non-data tokens
+ skipped = processor.skip_non_data_tokens()
+
+ # Should skip separators and comments
+ assert len(skipped) >= 3 # At least the 3 separators
+
+ # Should be positioned at first argument
+ current = processor.peek()
+ assert current is not None
+ assert current.value == "first_arg"
+
+ def test_remaining_slice_performance(self) -> None:
+ """Test remaining_slice performance with large lists."""
+ # Create large token list
+ large_tokens = [Token(Token.ARGUMENT, f"arg{i}", 1, i * 10) for i in range(10000)]
+ processor = ArgumentProcessor(large_tokens)
+
+ # Advance to middle
+ for _ in range(5000):
+ processor.consume()
+
+ # Get remaining slice - should be efficient
+ import time
+
+ start_time = time.time()
+ remaining = processor.remaining_slice()
+ end_time = time.time()
+
+ # Should be fast (< 1ms) and correct length
+ assert (end_time - start_time) < 0.001 # Less than 1ms
+ assert len(remaining) == 5000
+
+
+class TestNamedArgumentValidationRobust:
+ """Robust tests for named argument validation and edge cases."""
+
+ def setup_method(self) -> None:
+ """Set up test fixtures."""
+ self.processor = NamedArgumentProcessor(SemanticTokenMapper())
+
+ def test_named_arguments_with_variables(self) -> None:
+ """Test named arguments containing variables."""
+ test_cases = [
+ "name=${variable}",
+ "${var_name}=value",
+ "${var1}=${var2}",
+ "name=${var.attribute}",
+ "name=${var}[index]",
+ "name=@{list_var}",
+ "name=&{dict_var}",
+ ]
+
+ for test_input in test_cases:
+ result = self.processor.parse_named_argument(test_input)
+ assert result is not None, f"Should parse: {test_input}"
+ assert isinstance(result, NamedArgumentInfo)
+
+ @pytest.mark.parametrize(
+ ("test_input", "expected_name", "expected_value"),
+ [
+ ("name=path/to/file.txt", "name", "path/to/file.txt"),
+ ("timeout=30s", "timeout", "30s"),
+ ("level=INFO", "level", "INFO"),
+ ("message=Hello World!", "message", "Hello World!"),
+ ("pattern=.*\\.robot$", "pattern", ".*\\.robot$"),
+ ("url=https://example.com?param=value", "url", "https://example.com?param=value"),
+ ],
+ )
+ def test_named_arguments_with_complex_values(
+ self, test_input: str, expected_name: str, expected_value: str
+ ) -> None:
+ """Test named arguments with complex values."""
+ result = self.processor.parse_named_argument(test_input)
+ assert result is not None
+ assert result.name == expected_name
+ assert result.value == expected_value
+
+ def test_validate_named_argument_comprehensive(self) -> None:
+ """Test comprehensive named argument validation scenarios."""
+ # Create mock keyword doc with various argument types
+ args = [
+ type("Arg", (), {"name": "required_arg", "kind": KeywordArgumentKind.POSITIONAL_OR_NAMED})(),
+ type("Arg", (), {"name": "optional_arg", "kind": KeywordArgumentKind.NAMED_ONLY})(),
+ type("Arg", (), {"name": "var_named", "kind": KeywordArgumentKind.VAR_NAMED})(),
+ ]
+
+ kw_doc = KeywordDoc(
+ name="Test Keyword",
+ line_no=1,
+ col_offset=0,
+ end_line_no=1,
+ end_col_offset=10,
+ source="test.robot",
+ arguments=args,
+ )
+
+ # Test valid arguments
+ assert self.processor._validate_named_argument("required_arg", kw_doc) is True
+ assert self.processor._validate_named_argument("optional_arg", kw_doc) is True
+
+ # Test VAR_NAMED (should accept any name)
+ assert self.processor._validate_named_argument("any_name", kw_doc) is True
+ assert self.processor._validate_named_argument("custom_param", kw_doc) is True
+
+ # Test invalid argument
+ kw_doc_no_var_named = KeywordDoc(
+ name="Test Keyword",
+ line_no=1,
+ col_offset=0,
+ end_line_no=1,
+ end_col_offset=10,
+ source="test.robot",
+ arguments=args[:-1], # Remove VAR_NAMED
+ )
+
+ assert self.processor._validate_named_argument("invalid_arg", kw_doc_no_var_named) is False
+
+ def test_generate_named_argument_tokens_edge_cases(self) -> None:
+ """Test token generation for edge cases."""
+ node = KeywordCall([])
+
+ # Test with special characters in name/value
+ token = Token(Token.ARGUMENT, "special_name=value with spaces", 1, 0)
+ arg_info = NamedArgumentInfo("special_name", "value with spaces", 12, 30, True)
+
+ tokens = list(self.processor.generate_named_argument_tokens(token, arg_info, node))
+
+ assert len(tokens) == 3
+ assert tokens[0][0].value == "special_name"
+ assert tokens[1][0].value == "="
+ assert tokens[2][0].value == "value with spaces"
+
+ # Test with empty value
+ token = Token(Token.ARGUMENT, "name=", 1, 0)
+ arg_info = NamedArgumentInfo("name", "", 4, 5, True)
+
+ tokens = list(self.processor.generate_named_argument_tokens(token, arg_info, node))
+
+ assert len(tokens) == 3
+ assert tokens[2][0].value == "" # Empty value
+
+
+class TestRegexPatternsComprehensive:
+ """Comprehensive tests for regex patterns used in semantic tokens."""
+
+ @pytest.mark.parametrize(
+ ("text", "expected"),
+ [
+ # Basic escapes that actually work
+ ("\\n", ["\\n"]),
+ ("\\t", ["\\t"]),
+ ("\\r", ["\\r"]),
+ ("\\\\", ["\\\\"]),
+ # Mixed content - test what the regex actually does
+ ("Hello\\nWorld", ["Hello", "\\n", "World"]),
+ ("Path\\\\file.txt", ["Path", "\\\\", "file.txt"]),
+ # Edge cases
+ ("", []),
+ ("no_escapes", ["no_escapes"]),
+ # Note: Single backslash doesn't match the escape regex pattern
+ ],
+ )
+ def test_escape_regex_comprehensive(self, text: str, expected: list[str]) -> None:
+ """Test ESCAPE_REGEX with realistic escape sequences."""
+ matches = list(SemanticTokenMapper.ESCAPE_REGEX.finditer(text))
+ actual = [match.group() for match in matches]
+ assert actual == expected, f"Failed for input: '{text}' - got {actual}, expected {expected}"
+
+ @pytest.mark.parametrize(
+ ("text", "should_match", "expected_prefix"),
+ [
+ # Valid BDD prefixes (require space)
+ ("Given I have something", True, "Given"),
+ ("When I do something", True, "When"),
+ ("Then I should see", True, "Then"),
+ ("And I also do", True, "And"),
+ ("But not this", True, "But"),
+ # Case insensitive
+ ("given lowercase", True, "given"),
+ ("WHEN UPPERCASE", True, "WHEN"),
+ ("aNd MiXeD", True, "aNd"),
+ # Invalid cases (no space after prefix)
+ ("Givenno space", False, None),
+ ("NotABDDPrefix", False, None),
+ ("", False, None),
+ ("Just text", False, None),
+ ("Given", False, None), # Just the prefix without space
+ (" Given something", False, None), # Leading spaces
+ ],
+ )
+ def test_bdd_token_regex_comprehensive(self, text: str, should_match: bool, expected_prefix: str | None) -> None:
+ """Test BDD_TOKEN_REGEX with comprehensive BDD patterns."""
+ # Test actual BDD patterns - the regex requires space after prefix
+ match = SemanticTokenMapper.BDD_TOKEN_REGEX.match(text)
+ if should_match:
+ assert match is not None, f"Should match: '{text}'"
+ assert match.group(1) == expected_prefix, f"Wrong prefix for: '{text}'"
+ else:
+ assert match is None, f"Should not match: '{text}'"
+
+ def test_builtin_matcher_patterns(self) -> None:
+ """Test builtin library name matching."""
+ # The BUILTIN_MATCHER should match BuiltIn library
+ assert SemanticTokenMapper.BUILTIN_MATCHER.name == "BuiltIn"
+ assert SemanticTokenMapper.BUILTIN_MATCHER._is_namespace is True
+
+ def test_all_run_keywords_matchers(self) -> None:
+ """Test ALL_RUN_KEYWORDS_MATCHERS patterns."""
+ # Import the matchers from where they're actually defined
+ from robotcode.robot.diagnostics.library_doc import ALL_RUN_KEYWORDS_MATCHERS
+
+ # Should contain patterns for various Run Keyword variants
+ matchers = ALL_RUN_KEYWORDS_MATCHERS
+ assert len(matchers) > 0
+
+ # Test that it matches expected patterns
+ test_keywords = [
+ "Run Keyword",
+ "Run Keywords",
+ "Run Keyword If",
+ "Run Keyword And Return",
+ "Run Keyword And Continue On Failure",
+ ]
+
+ for keyword in test_keywords:
+ # Test that it matches expected patterns - just verify structure
+ # Note: This tests the structure, actual matching depends on implementation
+ assert isinstance(matchers, (list, tuple)), "Should be a collection of matchers"
+ assert len(matchers) > 0, "Should have at least one matcher"
+
+
+class TestErrorHandling:
+ """Test error handling - Missing completely!"""
+
+ def test_malformed_named_arguments(self) -> None:
+ """Test handling of malformed named arguments."""
+ processor = NamedArgumentProcessor(SemanticTokenMapper())
+
+ # Test various malformed cases
+ test_cases = [
+ "=value", # Missing name
+ "name=", # Empty value (should be valid)
+ "name==value", # Double equals
+ "just_text", # No equals at all
+ "", # Empty string
+ "name=value=more", # Multiple equals
+ "name with spaces=value", # Spaces in name
+ ]
+
+ for test_input in test_cases:
+ try:
+ result = processor.parse_named_argument(test_input)
+ # Should return None or valid NamedArgumentInfo, never raise exception
+ assert result is None or isinstance(result, NamedArgumentInfo)
+ except Exception as e:
+ pytest.fail(f"Should not raise exception for input '{test_input}': {e}")
+
+ def test_empty_argument_processor_edge_cases(self) -> None:
+ """Test ArgumentProcessor with edge cases."""
+ # Empty processor
+ processor = ArgumentProcessor([])
+
+ assert not processor.has_next()
+ assert processor.peek() is None
+ assert processor.consume() is None
+ assert processor.find_separator_index(frozenset({"AND"})) is None
+ assert list(processor.iter_until_separator(["AND"])) == []
+ assert list(processor.iter_all_remaining()) == []
+
+ def test_semantic_token_generator_with_invalid_tokens(self) -> None:
+ """Test SemanticTokenGenerator with invalid/unusual tokens."""
+ generator = SemanticTokenGenerator()
+ namespace = type(
+ "MockNamespace",
+ (),
+ {
+ "find_keyword": lambda self, name, **kwargs: None,
+ "languages": None,
+ },
+ )()
+
+ # Test with unusual token types
+ unusual_tokens = [
+ Token("INVALID_TYPE", "test", 1, 0), # Invalid token type
+ Token(Token.KEYWORD, "", 1, 0), # Empty value
+ Token(Token.VARIABLE, "${}", 1, 0), # Malformed variable
+ Token(Token.ARGUMENT, "arg", -1, -1), # Negative positions
+ ]
+
+ for token in unusual_tokens:
+ try:
+ node = KeywordCall([])
+ sem_tokens = list(generator.generate_sem_tokens(token, node, namespace, None))
+ # Should handle gracefully
+ assert isinstance(sem_tokens, list)
+ except Exception as e:
+ # Some exceptions might be expected, but document them
+ print(f"Expected exception for {token}: {e}")
+
+ def test_semantic_token_mapper_with_unknown_tokens(self) -> None:
+ """Test SemanticTokenMapper with unknown token types."""
+ mapper = SemanticTokenMapper()
+
+ unknown_tokens = [
+ "COMPLETELY_UNKNOWN",
+ "", # Empty string
+ None, # None value
+ 123, # Invalid type
+ ]
+
+ for token_type in unknown_tokens:
+ try:
+ result = mapper.get_semantic_info(token_type) # type: ignore[arg-type]
+ # Should return None for unknown tokens
+ assert result is None
+ except Exception as e:
+ # Should not raise exceptions
+ pytest.fail(f"Should not raise exception for unknown token '{token_type}': {e}")
+
+
+class TestPerformanceScenarios:
+ """Performance tests for semantic token processing."""
+
+ def test_large_keyword_argument_lists(self) -> None:
+ """Test performance with large keyword argument lists."""
+ # Create keyword with many arguments
+ large_args = [Token(Token.ARGUMENT, f"arg{i}=value{i}", 1, i * 20) for i in range(1000)]
+ processor = ArgumentProcessor(large_args)
+
+ # Test that processing is efficient
+ import time
+
+ start_time = time.time()
+
+ processed_count = 0
+ while processor.has_next():
+ token = processor.consume()
+ if token:
+ processed_count += 1
+
+ end_time = time.time()
+
+ # Should process quickly (< 100ms for 1000 args)
+ assert (end_time - start_time) < 0.1
+ assert processed_count == 1000
+
+ def test_unicode_handling_performance(self) -> None:
+ """Test performance with Unicode characters in tokens."""
+ # Create tokens with various Unicode characters
+ unicode_tokens = [
+ Token(Token.ARGUMENT, f"测试参数{i}", 1, i * 15) # Chinese
+ for i in range(100) # Reduced to 100 for more realistic test
+ ]
+
+ processor = ArgumentProcessor(unicode_tokens)
+ generator = SemanticTokenGenerator()
+ namespace = type(
+ "MockNamespace",
+ (),
+ {
+ "find_keyword": lambda self, name, **kwargs: None,
+ "languages": None,
+ },
+ )()
+
+ # Test processing time
+ import time
+
+ start_time = time.time()
+
+ processed_tokens = []
+ while processor.has_next():
+ token = processor.consume()
+ if token:
+ node = KeywordCall([])
+ try:
+ sem_tokens = list(generator.generate_sem_tokens(token, node, namespace, None))
+ processed_tokens.extend(sem_tokens)
+ except Exception:
+ # Some tokens might not be processable, that's OK for performance test
+ pass
+
+ end_time = time.time()
+
+ # Should handle Unicode efficiently (< 200ms for 100 tokens)
+ assert (end_time - start_time) < 0.2
+ # At least some tokens should be processed
+ assert len(processed_tokens) >= 0 # Just ensure no crash
+
+ def test_memory_usage_large_robot_files(self) -> None:
+ """Test memory usage with large Robot Framework files."""
+ # Simulate large Robot file content
+ large_robot_content = """*** Test Cases ***
+"""
+ for i in range(100):
+ large_robot_content += f"""Test Case {i}
+ Log message=Test message {i} level=INFO
+ Set Variable ${{var{i}}} value{i}
+ Should Be Equal first=${{var{i}}} second=value{i}
+
+"""
+
+ # Parse with Robot Framework
+ model = get_model(large_robot_content)
+ generator = SemanticTokenGenerator()
+ namespace = type(
+ "MockNamespace",
+ (),
+ {
+ "find_keyword": lambda self, name, **kwargs: None,
+ "languages": None,
+ },
+ )()
+
+ # Collect all tokens
+ all_tokens = []
+ import ast
+
+ for node in ast.walk(model):
+ if hasattr(node, "tokens"):
+ for token in getattr(node, "tokens", []):
+ if token.type not in [Token.SEPARATOR, Token.EOL, Token.EOS]:
+ all_tokens.append((token, node))
+
+ # Process all tokens and measure memory (simplified)
+ import time
+
+ start_time = time.time()
+ processed_semantic_tokens = []
+
+ for token, node in all_tokens:
+ try:
+ sem_tokens = list(generator.generate_sem_tokens(token, node, namespace, None))
+ processed_semantic_tokens.extend(sem_tokens)
+ except Exception:
+ pass # Ignore processing errors for this performance test
+
+ end_time = time.time()
+
+ # Should process large files reasonably quickly
+ assert (end_time - start_time) < 2.0 # 2 seconds max
+ assert len(processed_semantic_tokens) >= len(all_tokens) * 0.5 # At least 50% processed
+
+
+class TestRealWorldIntegration:
+ """Real-world integration tests with actual Robot Framework patterns."""
+
+ def test_complex_library_imports_and_usage(self) -> None:
+ """Test semantic tokens with complex library imports and usage."""
+ robot_code = """*** Settings ***
+Library Collections
+Library String
+Library OperatingSystem WITH NAME OS
+
+*** Variables ***
+${GLOBAL_VAR} global_value
+@{LIST_VAR} item1 item2 item3
+&{DICT_VAR} key1=value1 key2=value2
+
+*** Test Cases ***
+Complex Integration Test
+ # Collections library usage
+ Create Dictionary key=value another=test third=${GLOBAL_VAR}
+ Create List @{LIST_VAR} additional
+
+ # String library usage
+ Should Match Regexp ${GLOBAL_VAR} ^global.*
+
+ # OS library with alias
+ OS.File Should Exist /tmp
+
+ # Complex variable usage
+ Log Dictionary: &{DICT_VAR}[key1]
+ Log Many @{LIST_VAR}
+
+ # Nested keywords
+ Run Keyword If '${GLOBAL_VAR}' == 'global_value'
+ ... Log Condition met
+ ... ELSE
+ ... Fail Unexpected value
+
+*** Keywords ***
+Custom Keyword With Complex Args
+ [Arguments] ${required} ${optional}=default @{varargs} &{kwargs}
+ Log Required: ${required}
+ Log Optional: ${optional}
+ Log Many @{varargs}
+ Log &{kwargs}
+ RETURN ${required}
+"""
+
+ # Parse real Robot Framework code
+ model = get_model(robot_code)
+ generator = SemanticTokenGenerator()
+
+ # Create more comprehensive namespace mock
+ namespace = type(
+ "MockNamespace",
+ (),
+ {
+ "find_keyword": lambda self, name, **kwargs: None,
+ "languages": None,
+ "get_imported_library_libdoc": lambda self, *args: None,
+ "get_variables_import_libdoc": lambda self, *args: None,
+ },
+ )()
+
+ # Process all tokens
+ successful_tokens = 0
+ total_tokens = 0
+
+ import ast
+
+ for node in ast.walk(model):
+ if hasattr(node, "tokens"):
+ for token in getattr(node, "tokens", []):
+ if token.type not in [Token.SEPARATOR, Token.EOL, Token.EOS, Token.COMMENT]:
+ total_tokens += 1
+ try:
+ sem_tokens = list(generator.generate_sem_tokens(token, node, namespace, None))
+ if sem_tokens:
+ successful_tokens += 1
+ # Verify semantic token structure
+ for sem_token in sem_tokens:
+ assert isinstance(sem_token, SemTokenInfo)
+ assert sem_token.lineno >= 1
+ assert sem_token.col_offset >= 0
+ assert sem_token.length >= 0
+ except Exception as e:
+ print(f"Token processing failed: {token.type}:{token.value} - {e}")
+
+ # Should process most tokens successfully
+ assert total_tokens >= 50 # Should have many tokens in this complex example
+ assert successful_tokens >= total_tokens * 0.7 # 70% success rate minimum
+
+
+if __name__ == "__main__":
+ pytest.main([__file__])
diff --git a/vscode-client/extension/index.ts b/vscode-client/extension/index.ts
index 887c45c5b..b4b0e34fe 100644
--- a/vscode-client/extension/index.ts
+++ b/vscode-client/extension/index.ts
@@ -7,6 +7,7 @@ import { KeywordsTreeViewProvider } from "./keywordsTreeViewProvider";
import { LanguageToolsManager } from "./languageToolsManager";
import { NotebookManager } from "./notebook";
import path from "path";
+import { GetDocumentImportsTool, GetEnvironmentDetails, GetKeywordInfoTool, GetLibraryInfoTool } from "./lmTools";
class TerminalLink extends vscode.TerminalLink {
constructor(
@@ -153,6 +154,22 @@ export async function activateAsync(context: vscode.ExtensionContext): Promise {
if (this._cancelationSource?.token.isCancellationRequested) {
diff --git a/vscode-client/extension/languageclientsmanger.ts b/vscode-client/extension/languageclientsmanger.ts
index 6299bcbd0..6b803427a 100644
--- a/vscode-client/extension/languageclientsmanger.ts
+++ b/vscode-client/extension/languageclientsmanger.ts
@@ -27,6 +27,11 @@ import { getAvailablePort } from "./net_utils";
const LANGUAGE_SERVER_DEFAULT_TCP_PORT = 6610;
const LANGUAGE_SERVER_DEFAULT_HOST = "127.0.0.1";
+// Language Server Configuration Constants
+const CLIENT_DISPOSE_TIMEOUT = 5000;
+const CLIENT_SLEEP_DURATION = 500;
+const LANGUAGE_CLIENT_PREFIX = "$robotCode:";
+
export function toVsCodeRange(range: Range): vscode.Range {
return new vscode.Range(
new vscode.Position(range.start.line, range.start.character),
@@ -43,6 +48,13 @@ export interface Keyword {
documentation?: string;
}
+export interface LibraryDocumentation {
+ name: string;
+ documentation?: string;
+ keywords?: Keyword[];
+ initializers?: Keyword[];
+}
+
export interface DocumentImport {
name: string;
alias?: string;
@@ -106,6 +118,9 @@ export interface ProjectInfo {
robotVersionString?: string;
robocopVersionString?: string;
tidyVersionString?: string;
+ pythonVersionString?: string;
+ pythonExecutable?: string;
+ robotCodeVersionString?: string;
}
interface RobotCodeContributions {
@@ -136,39 +151,52 @@ export class LanguageClientsManager {
}
private _supportedLanguages?: string[];
+ private _fileExtensions?: string[];
- public get supportedLanguages(): string[] {
- if (this._supportedLanguages === undefined) {
- this._supportedLanguages = ["robotframework"];
-
- vscode.extensions.all.forEach((extension) => {
- if (this._supportedLanguages !== undefined && extension.packageJSON !== undefined) {
- const ext = (extension.packageJSON as RobotCodeContributions)?.contributes?.robotCode?.languageIds;
+ /**
+ * Invalidate cached extension data when extensions change
+ */
+ private invalidateExtensionCaches(): void {
+ this._supportedLanguages = undefined;
+ this._fileExtensions = undefined;
+ }
- if (ext !== undefined) {
- this._supportedLanguages.push(...ext);
- }
+ /**
+ * Helper method to collect extension contributions from all VS Code extensions
+ */
+ private static collectExtensionContributions(
+ propertyPath: "languageIds" | "fileExtensions",
+ defaultValues: string[],
+ ): string[] {
+ const result: string[] = [...defaultValues];
+
+ vscode.extensions.all.forEach((extension) => {
+ if (extension.packageJSON) {
+ const ext = (extension.packageJSON as RobotCodeContributions)?.contributes?.robotCode?.[propertyPath];
+ if (ext !== undefined) {
+ result.push(...ext);
}
- });
+ }
+ });
+
+ return result;
+ }
+
+ public get supportedLanguages(): string[] {
+ if (this._supportedLanguages === undefined) {
+ this._supportedLanguages = LanguageClientsManager.collectExtensionContributions("languageIds", [
+ "robotframework",
+ ]);
}
return this._supportedLanguages;
}
- private _fileExtensions?: string[];
-
public get fileExtensions(): string[] {
if (this._fileExtensions === undefined) {
- this._fileExtensions = ["robot", "resource"];
-
- vscode.extensions.all.forEach((extension) => {
- if (this._fileExtensions !== undefined && extension.packageJSON !== undefined) {
- const ext = (extension.packageJSON as RobotCodeContributions)?.contributes?.robotCode?.fileExtensions;
-
- if (ext !== undefined) {
- this._fileExtensions.push(...ext);
- }
- }
- });
+ this._fileExtensions = LanguageClientsManager.collectExtensionContributions("fileExtensions", [
+ "robot",
+ "resource",
+ ]);
}
return this._fileExtensions;
}
@@ -179,14 +207,21 @@ export class LanguageClientsManager {
public readonly outputChannel: vscode.OutputChannel,
) {
const fileWatcher1 = vscode.workspace.createFileSystemWatcher(
- `**/{pyproject.toml,robot.toml,.robot.toml,.gitignore,.robotignore}`,
+ `**/{pyproject.toml,robot.toml,.robot.toml,robocop.toml,.gitignore,.robotignore,robocop.toml}`,
);
fileWatcher1.onDidCreate((uri) => this.restart(vscode.workspace.getWorkspaceFolder(uri)?.uri));
fileWatcher1.onDidDelete((uri) => this.restart(vscode.workspace.getWorkspaceFolder(uri)?.uri));
fileWatcher1.onDidChange((uri) => this.restart(vscode.workspace.getWorkspaceFolder(uri)?.uri));
+ // Listen for extension changes to invalidate caches
+ const extensionChangeListener = vscode.extensions.onDidChange(() => {
+ this.logger.debug("Extensions changed, invalidating caches");
+ this.invalidateExtensionCaches();
+ });
+
this._disposables = vscode.Disposable.from(
fileWatcher1,
+ extensionChangeListener,
this.pythonManager.onActivePythonEnvironmentChanged(async (event) => {
if (event.resource !== undefined) {
@@ -218,16 +253,37 @@ export class LanguageClientsManager {
);
}
+ private readonly logger = {
+ info: (message: string) => this.outputChannel.appendLine(`[INFO] ${message}`),
+ warn: (message: string) => this.outputChannel.appendLine(`[WARN] ${message}`),
+ error: (message: string) => this.outputChannel.appendLine(`[ERROR] ${message}`),
+ debug: (message: string) => this.outputChannel.appendLine(`[DEBUG] ${message}`),
+ };
+
public async clearCaches(uri?: vscode.Uri): Promise {
+ this.logger.info("Clearing language server caches...");
+
if (uri !== undefined) {
const client = await this.getLanguageClientForResource(uri);
if (client) {
- await client.sendRequest("robot/cache/clear");
+ try {
+ await client.sendRequest("robot/cache/clear");
+ this.logger.info(`Cache cleared for ${uri.toString()}`);
+ } catch (error) {
+ this.logger.error(`Failed to clear cache for ${uri.toString()}: ${error}`);
+ }
}
} else {
- for (const client of this.clients.values()) {
- await client.sendRequest("robot/cache/clear");
- }
+ const clearPromises = Array.from(this.clients.values()).map(async (client) => {
+ try {
+ await client.sendRequest("robot/cache/clear");
+ } catch (error) {
+ this.logger.error(`Failed to clear cache for client: ${error}`);
+ }
+ });
+
+ await Promise.allSettled(clearPromises);
+ this.logger.info("Cache clearing completed for all clients");
}
}
@@ -238,9 +294,9 @@ export class LanguageClientsManager {
this.clients.clear();
for (const client of clients) {
- promises.push(client.dispose(5000));
+ promises.push(client.dispose(CLIENT_DISPOSE_TIMEOUT));
}
- await sleep(500);
+ await sleep(CLIENT_SLEEP_DURATION);
return Promise.all(promises).then(
(r) => {
@@ -256,7 +312,7 @@ export class LanguageClientsManager {
dispose(): void {
this.stopAllClients().then(
(_) => undefined,
- (_) => undefined,
+ (error) => this.logger.error(`Error during dispose: ${error}`),
);
this._disposables.dispose();
}
@@ -544,16 +600,15 @@ export class LanguageClientsManager {
const clientOptions: LanguageClientOptions = {
documentSelector:
- // TODO: use SUPPORTED_LANGUAGES here
vscode.workspace.workspaceFolders?.length === 1
- ? [
- { scheme: "file", language: "robotframework" },
- { scheme: "untitled", language: "robotframework" },
- ]
- : [
- { scheme: "file", language: "robotframework", pattern: `${workspaceFolder.uri.fsPath}/**/*` },
- { scheme: "untitled", language: "robotframework", pattern: `${workspaceFolder.uri.fsPath}/**/*` },
- ],
+ ? this.supportedLanguages.flatMap((lang) => [
+ { scheme: "file", language: lang },
+ { scheme: "untitled", language: lang },
+ ])
+ : this.supportedLanguages.flatMap((lang) => [
+ { scheme: "file", language: lang, pattern: `${workspaceFolder.uri.fsPath}/**/*` },
+ { scheme: "untitled", language: lang, pattern: `${workspaceFolder.uri.fsPath}/**/*` },
+ ]),
synchronize: {
configurationSection: [CONFIG_SECTION],
},
@@ -646,7 +701,12 @@ export class LanguageClientsManager {
};
this.outputChannel.appendLine(`create Language client: ${name}`);
- result = new LanguageClient(`$robotCode:${workspaceFolder.uri.toString()}`, name, serverOptions, clientOptions);
+ result = new LanguageClient(
+ `${LANGUAGE_CLIENT_PREFIX}${workspaceFolder.uri.toString()}`,
+ name,
+ serverOptions,
+ clientOptions,
+ );
this.outputChannel.appendLine(`trying to start Language client: ${name}`);
@@ -726,12 +786,12 @@ export class LanguageClientsManager {
this.clients.delete(workspaceFolder.uri.toString());
if (client) {
- await client.dispose(5000);
- await sleep(500);
+ await client.dispose(CLIENT_DISPOSE_TIMEOUT);
+ await sleep(CLIENT_SLEEP_DURATION);
}
} else {
if (await this.stopAllClients()) {
- await sleep(500);
+ await sleep(CLIENT_SLEEP_DURATION);
}
}
});
@@ -882,10 +942,18 @@ export class LanguageClientsManager {
}
public async getDocumentImports(
- document: vscode.TextDocument,
+ document_or_uri: vscode.TextDocument | vscode.Uri | string,
+ noDocumentation?: boolean | undefined,
token?: vscode.CancellationToken | undefined,
): Promise {
- const client = await this.getLanguageClientForResource(document.uri);
+ const uri =
+ document_or_uri instanceof vscode.Uri
+ ? document_or_uri
+ : typeof document_or_uri === "string"
+ ? vscode.Uri.parse(document_or_uri)
+ : document_or_uri.uri;
+
+ const client = await this.getLanguageClientForResource(uri);
if (!client) return [];
@@ -893,13 +961,58 @@ export class LanguageClientsManager {
(await client.sendRequest(
"robot/keywordsview/getDocumentImports",
{
- textDocument: { uri: document.uri.toString() },
+ textDocument: { uri: uri.toString() },
+ noDocumentation: noDocumentation,
},
token ?? new vscode.CancellationTokenSource().token,
)) ?? []
);
}
+ public async getLibraryDocumentation(
+ workspace_folder: vscode.WorkspaceFolder,
+ libraryName: string,
+ token?: vscode.CancellationToken | undefined,
+ ): Promise {
+ const client = await this.getLanguageClientForResource(workspace_folder.uri);
+
+ if (!client) return undefined;
+
+ return (
+ (await client.sendRequest(
+ "robot/keywordsview/getLibraryDocumentation",
+ {
+ workspaceFolderUri: workspace_folder.uri.toString(),
+ libraryName: libraryName,
+ },
+ token ?? new vscode.CancellationTokenSource().token,
+ )) ?? undefined
+ );
+ }
+
+ public async getKeywordDocumentation(
+ workspace_folder: vscode.WorkspaceFolder,
+ libraryName: string,
+ keywordName: string,
+ token?: vscode.CancellationToken | undefined,
+ ): Promise {
+ const client = await this.getLanguageClientForResource(workspace_folder.uri);
+
+ if (!client) return undefined;
+
+ return (
+ (await client.sendRequest(
+ "robot/keywordsview/getKeywordDocumentation",
+ {
+ workspaceFolderUri: workspace_folder.uri.toString(),
+ libraryName: libraryName,
+ keywordName: keywordName,
+ },
+ token ?? new vscode.CancellationTokenSource().token,
+ )) ?? undefined
+ );
+ }
+
public async getDocumentKeywords(
document: vscode.TextDocument,
token?: vscode.CancellationToken | undefined,
diff --git a/vscode-client/extension/lmTools.tsx b/vscode-client/extension/lmTools.tsx
new file mode 100644
index 000000000..91bd346ce
--- /dev/null
+++ b/vscode-client/extension/lmTools.tsx
@@ -0,0 +1,251 @@
+/* eslint-disable class-methods-use-this */
+import * as vscode from "vscode";
+import { LanguageClientsManager } from "./languageclientsmanger";
+
+function resolveWorkspaceFolder(filepath?: string): vscode.WorkspaceFolder | undefined {
+ if (!filepath) {
+ return vscode.workspace.workspaceFolders ? vscode.workspace.workspaceFolders[0] : undefined;
+ }
+
+ try {
+ return vscode.workspace.getWorkspaceFolder(vscode.Uri.parse(filepath));
+ } catch {
+ return vscode.workspace.getWorkspaceFolder(vscode.Uri.file(filepath));
+ }
+}
+
+interface GetLibraryInfoToolParamters {
+ libraryName: string;
+ resourcePath?: string;
+}
+
+export class GetLibraryInfoTool implements vscode.LanguageModelTool {
+ constructor(
+ public readonly extensionContext: vscode.ExtensionContext,
+ public readonly languageClientsManager: LanguageClientsManager,
+ public readonly outputChannel: vscode.OutputChannel,
+ ) {}
+
+ async invoke(
+ options: vscode.LanguageModelToolInvocationOptions,
+ token: vscode.CancellationToken,
+ ): Promise {
+ const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath);
+
+ if (!workspaceFolder) {
+ return new vscode.LanguageModelToolResult([
+ new vscode.LanguageModelTextPart("No workspace folder found. Please open a Robot Framework project."),
+ ]);
+ }
+
+ const libdoc = await this.languageClientsManager.getLibraryDocumentation(
+ workspaceFolder,
+ options.input.libraryName,
+ token,
+ );
+ if (!libdoc) {
+ return new vscode.LanguageModelToolResult([
+ new vscode.LanguageModelTextPart(
+ "Failed to retrieve library documentation. Ensure the Robot Framework extension is properly configured and the library is installed.",
+ ),
+ ]);
+ }
+
+ const keywords = libdoc.keywords
+ ? libdoc.keywords.map((kw) => `- ${kw.name}${kw.signature}`)
+ : [new vscode.LanguageModelTextPart("No keywords available.")];
+
+ const initializers = libdoc.initializers
+ ? libdoc.initializers.map((kw) => `- ${kw.name}${kw.signature}`)
+ : [new vscode.LanguageModelTextPart("No keywords available.")];
+
+ return new vscode.LanguageModelToolResult([
+ new vscode.LanguageModelTextPart(libdoc.documentation ?? "No documentation available."),
+ new vscode.LanguageModelTextPart(`## Initializers:\n${initializers.join("\n")}`),
+ new vscode.LanguageModelTextPart(`## Keywords:\n${keywords.join("\n")}`),
+ ]);
+ }
+
+ async prepareInvocation?(
+ options: vscode.LanguageModelToolInvocationPrepareOptions,
+ _token: vscode.CancellationToken,
+ ): Promise {
+ const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath);
+ if (!workspaceFolder) {
+ return {
+ invocationMessage: "No workspace folder found. Please open a Robot Framework project.",
+ };
+ }
+
+ return {
+ invocationMessage: `Retrieving Robot Framework Library details for library: '${options.input.libraryName}'`,
+ };
+ }
+}
+
+interface GetKeywordInfoToolParamters {
+ keywordName: string;
+ libraryName: string;
+ resourcePath?: string;
+}
+
+export class GetKeywordInfoTool implements vscode.LanguageModelTool {
+ constructor(
+ public readonly extensionContext: vscode.ExtensionContext,
+ public readonly languageClientsManager: LanguageClientsManager,
+ public readonly outputChannel: vscode.OutputChannel,
+ ) {}
+
+ async invoke(
+ options: vscode.LanguageModelToolInvocationOptions,
+ token: vscode.CancellationToken,
+ ): Promise {
+ const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath);
+
+ if (!workspaceFolder) {
+ return new vscode.LanguageModelToolResult([
+ new vscode.LanguageModelTextPart("No workspace folder found. Please open a Robot Framework project."),
+ ]);
+ }
+
+ const keyword = await this.languageClientsManager.getKeywordDocumentation(
+ workspaceFolder,
+ options.input.libraryName,
+ options.input.keywordName,
+ token,
+ );
+ if (!keyword) {
+ return new vscode.LanguageModelToolResult([
+ new vscode.LanguageModelTextPart(
+ "Failed to retrieve Keyword documentation. Ensure the Robot Framework extension is properly configured and the library is installed.",
+ ),
+ ]);
+ }
+
+ return new vscode.LanguageModelToolResult([
+ new vscode.LanguageModelTextPart(
+ `# Keyword: ${keyword.name}${keyword.signature}\n\n${keyword.documentation ?? "No documentation available."}`,
+ ),
+ ]);
+ }
+
+ async prepareInvocation?(
+ options: vscode.LanguageModelToolInvocationPrepareOptions,
+ _token: vscode.CancellationToken,
+ ): Promise {
+ const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath);
+ if (!workspaceFolder) {
+ return {
+ invocationMessage: "No workspace folder found. Please open a Robot Framework project.",
+ };
+ }
+
+ return {
+ invocationMessage: `Retrieving Robot Framework Keyword details for keyword: '${options.input.keywordName}' from library: '${options.input.libraryName}'`,
+ };
+ }
+}
+
+interface GetDocumentImportsToolParamters {
+ resourcePath: string;
+}
+
+export class GetDocumentImportsTool implements vscode.LanguageModelTool {
+ constructor(
+ public readonly extensionContext: vscode.ExtensionContext,
+ public readonly languageClientsManager: LanguageClientsManager,
+ public readonly outputChannel: vscode.OutputChannel,
+ ) {}
+
+ async invoke(
+ options: vscode.LanguageModelToolInvocationOptions,
+ token: vscode.CancellationToken,
+ ): Promise {
+ vscode.workspace.textDocuments.forEach((doc) => {
+ if (doc.uri.toString() === options.input.resourcePath) {
+ vscode.window.showTextDocument(doc, { preview: true });
+ }
+ });
+ const keyword = await this.languageClientsManager.getDocumentImports(options.input.resourcePath, true, token);
+
+ return new vscode.LanguageModelToolResult([new vscode.LanguageModelTextPart(JSON.stringify(keyword))]);
+ }
+
+ async prepareInvocation?(
+ options: vscode.LanguageModelToolInvocationPrepareOptions,
+ _token: vscode.CancellationToken,
+ ): Promise {
+ const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath);
+ if (!workspaceFolder) {
+ return {
+ invocationMessage: "No workspace folder found. Please open a Robot Framework project.",
+ };
+ }
+
+ return {
+ invocationMessage: `Retrieving Robot Framework Document Imports for '${options.input.resourcePath}'`,
+ };
+ }
+}
+
+interface GetEnvironmentDetailsParamters {
+ resourcePath?: string;
+}
+
+export class GetEnvironmentDetails implements vscode.LanguageModelTool {
+ constructor(
+ public readonly extensionContext: vscode.ExtensionContext,
+ public readonly languageClientsManager: LanguageClientsManager,
+ public readonly outputChannel: vscode.OutputChannel,
+ ) {}
+
+ async invoke(
+ options: vscode.LanguageModelToolInvocationOptions,
+ token: vscode.CancellationToken,
+ ): Promise {
+ const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath);
+
+ if (!workspaceFolder) {
+ return new vscode.LanguageModelToolResult([
+ new vscode.LanguageModelTextPart("No workspace folder found. Please open a Robot Framework project."),
+ ]);
+ }
+
+ const projectInfo = await this.languageClientsManager.getProjectInfo(workspaceFolder, token);
+ if (!projectInfo) {
+ return new vscode.LanguageModelToolResult([
+ new vscode.LanguageModelTextPart(
+ "Failed to retrieve project information. Ensure the Robot Framework extension is properly configured.",
+ ),
+ ]);
+ }
+
+ const message = [
+ "# Environment Details",
+ `**Workspace Folder:** ${workspaceFolder.name}`,
+ `**Python Interpreter Version:** ${projectInfo.pythonVersionString || "Not set"}`,
+ `**Python Executable:** ${projectInfo.pythonExecutable || "Not set"}`,
+ `**Robot Framework Version:** ${projectInfo.robotVersionString || "Not installed"}`,
+ `**RobotCode Version:** ${projectInfo.robotCodeVersionString || "Not set"}`,
+ `**Robocop Version:** ${projectInfo.robocopVersionString || "Not installed"}`,
+ `**Robotidy Version:** ${projectInfo.tidyVersionString || "Not installed"}`,
+ ];
+ return new vscode.LanguageModelToolResult([new vscode.LanguageModelTextPart(message.join("\n"))]);
+ }
+
+ async prepareInvocation?(
+ options: vscode.LanguageModelToolInvocationPrepareOptions,
+ _token: vscode.CancellationToken,
+ ): Promise {
+ const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath);
+ if (!workspaceFolder) {
+ return {
+ invocationMessage: "No workspace folder found. Please open a Robot Framework project.",
+ };
+ }
+
+ return {
+ invocationMessage: "Retrieving Robot Framework environment details",
+ };
+ }
+}
diff --git a/vscode-client/extension/pythonmanger.ts b/vscode-client/extension/pythonmanger.ts
index 75eaca236..869d767b1 100644
--- a/vscode-client/extension/pythonmanger.ts
+++ b/vscode-client/extension/pythonmanger.ts
@@ -70,10 +70,16 @@ export class PythonManager {
}
private doActiveEnvironmentPathChanged(event: ActiveEnvironmentPathChangeEvent): void {
- this.outputChannel.appendLine(
- `ActiveEnvironmentPathChanged: ${event.resource?.uri.toString() ?? UNKNOWN} ${event.id}`,
- );
- this._onActivePythonEnvironmentChangedEmitter.fire({ resource: event.resource });
+ const wsFolder =
+ event.resource === undefined
+ ? undefined
+ : event.resource instanceof vscode.Uri
+ ? vscode.workspace.getWorkspaceFolder(event.resource)
+ : event.resource;
+
+ this.outputChannel.appendLine(`ActiveEnvironmentPathChanged: ${wsFolder?.uri ?? UNKNOWN} ${event.id}`);
+
+ this._onActivePythonEnvironmentChangedEmitter.fire({ resource: wsFolder });
}
async getPythonExtension(): Promise {
diff --git a/vscode-client/extension/testcontrollermanager.ts b/vscode-client/extension/testcontrollermanager.ts
index e304fdb68..7a5dc7bc8 100644
--- a/vscode-client/extension/testcontrollermanager.ts
+++ b/vscode-client/extension/testcontrollermanager.ts
@@ -23,8 +23,16 @@ function diagnosticsSeverityToVsCode(severity?: DiagnosticSeverity): vscode.Diag
}
}
+enum RobotItemType {
+ WORKSPACE = "workspace",
+ SUITE = "suite",
+ TEST = "test",
+ TASK = "task",
+ ERROR = "error",
+}
+
interface RobotTestItem {
- type: string;
+ type: RobotItemType;
id: string;
uri?: string;
relSource?: string;
@@ -77,6 +85,8 @@ interface RobotExecutionEvent {
id: string;
attributes: RobotExecutionAttributes | undefined;
failedKeywords: RobotExecutionAttributes[] | undefined;
+ source: string | undefined;
+ lineno: number | undefined;
}
type RobotLogLevel = "FAIL" | "ERROR" | "WARN" | "INFO" | "DEBUG" | "TRACE";
@@ -125,6 +135,13 @@ class WorkspaceFolderEntry {
}
}
+class TestRunInfo {
+ public constructor(
+ public readonly run: vscode.TestRun,
+ public readonly startedEvents: Map = new Map(),
+ ) {}
+}
+
export class TestControllerManager {
private _disposables: vscode.Disposable;
public readonly testController: vscode.TestController;
@@ -133,10 +150,13 @@ export class TestControllerManager {
public runProfiles: vscode.TestRunProfile[] = [];
private readonly refreshMutex = new Mutex();
+ private readonly updateEditorsMutex = new Mutex();
private readonly debugSessions = new Set();
private readonly didChangedTimer = new Map();
private refreshWorkspaceChangeTimer: DidChangeEntry | undefined;
private diagnosticCollection = vscode.languages.createDiagnosticCollection("robotCode discovery");
+ private activeStepDecorationType: vscode.TextEditorDecorationType;
+ showEditorRunDecorations = false;
constructor(
public readonly extensionContext: vscode.ExtensionContext,
@@ -159,25 +179,38 @@ export class TestControllerManager {
(_) => undefined,
);
- const fileWatcher = vscode.workspace.createFileSystemWatcher(`**/[!._]*`);
+ const fileWatcher = vscode.workspace.createFileSystemWatcher(
+ `**/*.{${this.languageClientsManager.fileExtensions.join(",")}}`,
+ );
- fileWatcher.onDidCreate((uri) => {
- this.refreshUri(uri, "create");
+ fileWatcher.onDidCreate(async (uri) => {
+ await this.refreshUri(uri, "create");
+ });
+ fileWatcher.onDidDelete(async (uri) => {
+ await this.refreshUri(uri, "delete");
});
- fileWatcher.onDidDelete((uri) => {
- this.refreshUri(uri, "delete");
+ fileWatcher.onDidChange(async (uri) => {
+ await this.refreshUri(uri, "change");
});
- fileWatcher.onDidChange((uri) => {
- this.refreshUri(uri, "change");
+
+ this.activeStepDecorationType = vscode.window.createTextEditorDecorationType({
+ isWholeLine: true,
+ backgroundColor: { id: "editor.rangeHighlightBackground" },
+ borderColor: { id: "editor.rangeHighlightBorder" },
+ after: {
+ color: { id: "editorCodeLens.foreground" },
+ contentText: " \u231B",
+ },
});
this._disposables = vscode.Disposable.from(
this.diagnosticCollection,
fileWatcher,
- this.languageClientsManager.onClientStateChanged((event) => {
+ this.activeStepDecorationType,
+ this.languageClientsManager.onClientStateChanged(async (event) => {
switch (event.state) {
case ClientState.Running: {
- this.refresh().catch((_) => undefined);
+ await this.refresh();
break;
}
case ClientState.Stopped: {
@@ -187,10 +220,7 @@ export class TestControllerManager {
break;
}
}
- this.updateRunProfiles().then(
- (_) => undefined,
- (_) => undefined,
- );
+ await this.updateRunProfiles();
}),
vscode.workspace.onDidChangeConfiguration(async (event) => {
let refresh = false;
@@ -224,7 +254,7 @@ export class TestControllerManager {
vscode.debug.onDidStartDebugSession((session) => {
if (session.configuration.type === "robotcode" && session.configuration.runId !== undefined) {
- if (this.testRuns.has(session.configuration.runId)) {
+ if (this.testRunInfos.has(session.configuration.runId)) {
this.debugSessions.add(session);
}
}
@@ -234,42 +264,45 @@ export class TestControllerManager {
this.debugSessions.delete(session);
if (session.configuration.runId !== undefined) {
- this.TestRunExited(session.configuration.runId);
+ this.testRunExited(session.configuration.runId);
}
}
}),
- vscode.debug.onDidReceiveDebugSessionCustomEvent((event) => {
+ vscode.debug.onDidReceiveDebugSessionCustomEvent(async (event) => {
if (event.session.configuration.type === "robotcode") {
switch (event.event) {
case "robotExited": {
- this.TestRunExited(event.session.configuration.runId);
+ this.testRunExited(event.session.configuration.runId);
break;
}
case "robotStarted": {
- this.OnRobotStartedEvent(event.session.configuration.runId, event.body as RobotExecutionEvent);
+ await this.onRobotStartedEvent(event.session.configuration.runId, event.body as RobotExecutionEvent);
break;
}
case "robotEnded": {
- this.OnRobotEndedEvent(event.session.configuration.runId, event.body as RobotExecutionEvent);
+ await this.onRobotEndedEvent(event.session.configuration.runId, event.body as RobotExecutionEvent);
break;
}
case "robotSetFailed": {
- this.OnRobotSetFailed(event.session.configuration.runId, event.body as RobotExecutionEvent);
+ this.onRobotSetFailed(event.session.configuration.runId, event.body as RobotExecutionEvent);
break;
}
case "robotEnqueued": {
- this.TestItemEnqueued(event.session.configuration.runId, event.body?.items);
+ this.testItemEnqueued(event.session.configuration.runId, event.body?.items);
break;
}
case "robotLog": {
- this.OnRobotLogMessageEvent(event.session.configuration.runId, event.body as RobotLogMessageEvent, false);
+ this.onRobotLogMessageEvent(event.session.configuration.runId, event.body as RobotLogMessageEvent, false);
break;
}
case "robotMessage": {
- this.OnRobotLogMessageEvent(event.session.configuration.runId, event.body as RobotLogMessageEvent, true);
+ this.onRobotLogMessageEvent(event.session.configuration.runId, event.body as RobotLogMessageEvent, true);
break;
}
}
+ if (event.body?.synced) {
+ await event.session.customRequest("robot/sync");
+ }
}
}),
vscode.commands.registerCommand("robotcode.runCurrentFile", async (...args) => {
@@ -540,6 +573,14 @@ export class TestControllerManager {
}
dispose(): void {
+ this.didChangedTimer.forEach((entry) => entry.cancel());
+ this.didChangedTimer.clear();
+
+ if (this.refreshWorkspaceChangeTimer) {
+ this.refreshWorkspaceChangeTimer.cancel();
+ this.refreshWorkspaceChangeTimer = undefined;
+ }
+
this._disposables.dispose();
this.testController.dispose();
}
@@ -728,7 +769,6 @@ export class TestControllerManager {
folder: vscode.WorkspaceFolder,
token?: vscode.CancellationToken,
): Promise {
- // TODO do not use hardcoded file extensions
const robotFiles = await vscode.workspace.findFiles(
new vscode.RelativePattern(folder, `**/*.{${this.languageClientsManager.fileExtensions.join(",")}}`),
undefined,
@@ -776,7 +816,7 @@ export class TestControllerManager {
return [
{
name: folder.name,
- type: "workspace",
+ type: RobotItemType.WORKSPACE,
id: folder.uri.fsPath,
uri: folder.uri.toString(),
longname: folder.name,
@@ -856,7 +896,7 @@ export class TestControllerManager {
let tests = robotItem?.children;
- if (robotItem?.type === "suite" && item.uri !== undefined) {
+ if (robotItem?.type === RobotItemType.SUITE && item.uri !== undefined) {
if (robotItem.children === undefined) robotItem.children = [];
const openDoc = vscode.workspace.textDocuments.find((d) => d.uri.toString() === item.uri?.toString());
@@ -963,15 +1003,20 @@ export class TestControllerManager {
}
}
- testItem.canResolveChildren = robotTestItem.type === "suite" || robotTestItem.type === "workspace";
+ testItem.canResolveChildren =
+ robotTestItem.type === RobotItemType.SUITE || robotTestItem.type === RobotItemType.WORKSPACE;
if (robotTestItem.range !== undefined) {
testItem.range = toVsCodeRange(robotTestItem.range);
}
testItem.label = robotTestItem.name;
- if (robotTestItem.type == "test" || robotTestItem.type == "task") {
- testItem.description = robotTestItem.type + (robotTestItem.description ? ` - ${robotTestItem.description}` : "");
+ if (
+ robotTestItem.type == RobotItemType.TEST ||
+ robotTestItem.type == RobotItemType.TASK ||
+ robotTestItem.type == RobotItemType.SUITE
+ ) {
+ testItem.description = `${robotTestItem.type} ${robotTestItem.description ? ` - ${robotTestItem.description}` : ""}`;
} else {
testItem.description = robotTestItem.description;
}
@@ -1060,7 +1105,7 @@ export class TestControllerManager {
});
}
- private refreshUri(uri?: vscode.Uri, reason?: string) {
+ private async refreshUri(uri?: vscode.Uri, reason?: string) {
if (uri) {
if (uri?.scheme !== "file") return;
@@ -1078,10 +1123,7 @@ export class TestControllerManager {
if (exists) {
const testItem = this.findTestItemByUri(uri.toString());
if (testItem) {
- this.refreshItem(testItem).then(
- (_) => undefined,
- (_) => undefined,
- );
+ await this.refresh(testItem);
return;
}
}
@@ -1142,7 +1184,7 @@ export class TestControllerManager {
return undefined;
}
- private readonly testRuns = new Map();
+ private readonly testRunInfos = new Map();
private mapTestItemsToWorkspaceFolder(items: vscode.TestItem[]): Map {
const folders = new Map();
@@ -1153,7 +1195,7 @@ export class TestControllerManager {
folders.set(ws, []);
}
const ritem = this.findRobotItem(i);
- if (ritem?.type == "workspace") {
+ if (ritem?.type == RobotItemType.WORKSPACE) {
i.children.forEach((c) => {
folders.get(ws)?.push(c);
});
@@ -1186,7 +1228,7 @@ export class TestControllerManager {
if (request.include) {
request.include.forEach((v) => {
const robotTest = this.findRobotItem(v);
- if (robotTest?.type === "workspace") {
+ if (robotTest?.type === RobotItemType.WORKSPACE) {
v.children.forEach((v) => includedItems.push(v));
} else {
includedItems.push(v);
@@ -1195,9 +1237,9 @@ export class TestControllerManager {
} else {
this.testController.items.forEach((test) => {
const robotTest = this.findRobotItem(test);
- if (robotTest?.type === "error") {
+ if (robotTest?.type === RobotItemType.ERROR) {
return;
- } else if (robotTest?.type === "workspace") {
+ } else if (robotTest?.type === RobotItemType.WORKSPACE) {
test.children.forEach((v) => includedItems.push(v));
} else {
includedItems.push(test);
@@ -1214,7 +1256,7 @@ export class TestControllerManager {
let run_started = false;
token.onCancellationRequested(async (_) => {
- for (const e of this.testRuns.keys()) {
+ for (const e of this.testRunInfos.keys()) {
for (const session of this.debugSessions) {
if (session.configuration.runId === e) {
await vscode.debug.stopDebugging(session);
@@ -1232,7 +1274,7 @@ export class TestControllerManager {
continue;
const runId = TestControllerManager.runId.next().value;
- this.testRuns.set(runId, testRun);
+ this.testRunInfos.set(runId, new TestRunInfo(testRun));
const options: vscode.DebugSessionOptions = {
testRun: testRun,
@@ -1244,7 +1286,7 @@ export class TestControllerManager {
let workspaceItem = this.findTestItemByUri(folder.uri.toString());
const workspaceRobotItem = workspaceItem ? this.findRobotItem(workspaceItem) : undefined;
- if (workspaceRobotItem?.type == "workspace" && workspaceRobotItem.children?.length) {
+ if (workspaceRobotItem?.type == RobotItemType.WORKSPACE && workspaceRobotItem.children?.length) {
workspaceItem = workspaceItem?.children.get(workspaceRobotItem.children[0].id);
}
@@ -1267,7 +1309,7 @@ export class TestControllerManager {
const includedInWs = testItems
.map((i) => {
const ritem = this.findRobotItem(i);
- if (ritem?.type == "workspace" && ritem.children?.length) {
+ if (ritem?.type == RobotItemType.WORKSPACE && ritem.children?.length) {
return ritem.children[0].longname;
}
return ritem?.longname;
@@ -1278,7 +1320,7 @@ export class TestControllerManager {
.get(folder)
?.map((i) => {
const ritem = this.findRobotItem(i);
- if (ritem?.type == "workspace" && ritem.children?.length) {
+ if (ritem?.type == RobotItemType.WORKSPACE && ritem.children?.length) {
return ritem.children[0].longname;
}
return ritem?.longname;
@@ -1302,7 +1344,7 @@ export class TestControllerManager {
} else {
const ritem = this.findRobotItem(testItem);
let longname = ritem?.longname;
- if (ritem?.type == "workspace" && ritem.children?.length) {
+ if (ritem?.type == RobotItemType.WORKSPACE && ritem.children?.length) {
longname = ritem.children[0].longname;
}
if (longname) {
@@ -1314,7 +1356,7 @@ export class TestControllerManager {
let suiteName: string | undefined = undefined;
- if (workspaceRobotItem?.type == "workspace" && workspaceRobotItem.children?.length) {
+ if (workspaceRobotItem?.type == RobotItemType.WORKSPACE && workspaceRobotItem.children?.length) {
suiteName = workspaceRobotItem.children[0].longname;
}
@@ -1341,22 +1383,22 @@ export class TestControllerManager {
}
}
- private TestRunExited(runId: string | undefined) {
+ private testRunExited(runId: string | undefined) {
if (runId === undefined) return;
- const run = this.testRuns.get(runId);
- this.testRuns.delete(runId);
+ const run = this.testRunInfos.get(runId)?.run;
+ this.testRunInfos.delete(runId);
if (run !== undefined) {
- if (Array.from(this.testRuns.values()).indexOf(run) === -1) {
+ if (Array.from(this.testRunInfos.values()).findIndex((info) => info.run === run) === -1) {
run.end();
}
}
}
- private TestItemEnqueued(runId: string | undefined, items: string[] | undefined) {
+ private testItemEnqueued(runId: string | undefined, items: string[] | undefined) {
if (runId === undefined || items === undefined) return;
- const run = this.testRuns.get(runId);
+ const run = this.testRunInfos.get(runId)?.run;
if (run !== undefined) {
for (const id of items) {
@@ -1368,11 +1410,84 @@ export class TestControllerManager {
}
}
- private OnRobotStartedEvent(runId: string | undefined, event: RobotExecutionEvent) {
+ private async updateEditorDecorations(event: RobotExecutionEvent | undefined = undefined) {
+ if (!this.showEditorRunDecorations) return;
+
+ await this.updateEditorsMutex.dispatch(() => {
+ // Early exit if no test runs
+ if (this.testRunInfos.size === 0) return;
+
+ // Filter editors based on event
+ const editors =
+ event !== undefined
+ ? vscode.window.visibleTextEditors.filter((editor) => editor.document.uri.fsPath === event.source)
+ : vscode.window.visibleTextEditors;
+
+ if (editors.length === 0) return;
+
+ // Build a map of source paths to line numbers for efficient lookup
+ const sourceToLines = new Map>();
+
+ for (const info of this.testRunInfos.values()) {
+ for (const startedEvent of info.startedEvents.values()) {
+ if (startedEvent.source && startedEvent.lineno && startedEvent.lineno > 0) {
+ if (!sourceToLines.has(startedEvent.source)) {
+ sourceToLines.set(startedEvent.source, new Set());
+ }
+ sourceToLines.get(startedEvent.source)!.add(startedEvent.lineno);
+ }
+ }
+ }
+
+ // Apply decorations to editors
+ for (const editor of editors) {
+ const editorPath = editor.document.uri.fsPath;
+ const lineNumbers = sourceToLines.get(editorPath);
+
+ const decorations: vscode.DecorationOptions[] = [];
+ if (lineNumbers) {
+ for (const lineno of lineNumbers) {
+ decorations.push({
+ range: new vscode.Range(new vscode.Position(lineno - 1, 0), new vscode.Position(lineno - 1, 0)),
+ });
+ }
+ }
+
+ editor.setDecorations(this.activeStepDecorationType, decorations);
+ }
+ });
+ }
+
+ private async onRobotStartedEvent(runId: string | undefined, event: RobotExecutionEvent) {
+ if (runId) {
+ if (event.source !== undefined && event.lineno !== undefined && event.lineno > 0) {
+ // try {
+ // const editor = await vscode.window.showTextDocument(vscode.Uri.file(event.source));
+
+ // editor.revealRange(
+ // new vscode.Range(new vscode.Position(event.lineno - 1, 0), new vscode.Position(event.lineno - 1, 0)),
+ // vscode.TextEditorRevealType.Default,
+ // );
+ // } catch {
+ // // ignore
+ // }
+ await this.updateEditorsMutex.dispatch(() => {
+ const infos = this.testRunInfos.get(runId);
+ if (infos !== undefined) {
+ infos.startedEvents.set(event.id, event);
+ }
+ });
+ await this.updateEditorDecorations(event);
+ }
+ }
+
switch (event.type) {
- //case "suite":
+ case "suite":
+ break;
case "test":
- this.TestItemStarted(runId, event);
+ this.testItemStarted(runId, event);
+ break;
+ case "keyword":
break;
default:
// do nothing
@@ -1380,10 +1495,10 @@ export class TestControllerManager {
}
}
- private TestItemStarted(runId: string | undefined, event: RobotExecutionEvent) {
+ private testItemStarted(runId: string | undefined, event: RobotExecutionEvent) {
if (runId === undefined || event.attributes?.longname === undefined) return;
- const run = this.testRuns.get(runId);
+ const run = this.testRunInfos.get(runId)?.run;
if (run !== undefined) {
const item = this.findTestItemById(event.id);
@@ -1393,11 +1508,24 @@ export class TestControllerManager {
}
}
- private OnRobotEndedEvent(runId: string | undefined, event: RobotExecutionEvent) {
+ private async onRobotEndedEvent(runId: string | undefined, event: RobotExecutionEvent) {
+ if (runId) {
+ await this.updateEditorsMutex.dispatch(() => {
+ const infos = this.testRunInfos.get(runId);
+ if (infos !== undefined) {
+ infos.startedEvents.delete(event.id);
+ }
+ });
+
+ this.updateEditorDecorations(event);
+ }
switch (event.type) {
- //case "suite":
+ case "suite":
+ break;
case "test":
- this.TestItemEnded(runId, event);
+ this.testItemEnded(runId, event);
+ break;
+ case "keyword":
break;
default:
// do nothing
@@ -1405,11 +1533,11 @@ export class TestControllerManager {
}
}
- private OnRobotSetFailed(runId: string | undefined, event: RobotExecutionEvent) {
+ private onRobotSetFailed(runId: string | undefined, event: RobotExecutionEvent) {
switch (event.type) {
case "suite":
case "test":
- this.TestItemSetFailed(runId, event);
+ this.testItemSetFailed(runId, event);
break;
default:
// do nothing
@@ -1417,10 +1545,10 @@ export class TestControllerManager {
}
}
- private TestItemSetFailed(runId: string | undefined, event: RobotExecutionEvent) {
+ private testItemSetFailed(runId: string | undefined, event: RobotExecutionEvent) {
if (runId === undefined || event.attributes?.longname === undefined) return;
- const run = this.testRuns.get(runId);
+ const run = this.testRunInfos.get(runId)?.run;
if (run !== undefined) {
const item = this.findTestItemById(event.id);
@@ -1448,10 +1576,10 @@ export class TestControllerManager {
}
}
- private TestItemEnded(runId: string | undefined, event: RobotExecutionEvent) {
+ private testItemEnded(runId: string | undefined, event: RobotExecutionEvent) {
if (runId === undefined || event.attributes?.longname === undefined) return;
- const run = this.testRuns.get(runId);
+ const run = this.testRunInfos.get(runId)?.run;
if (run !== undefined) {
const item = this.findTestItemById(event.id);
@@ -1516,10 +1644,10 @@ export class TestControllerManager {
}
}
- private OnRobotLogMessageEvent(runId: string | undefined, event: RobotLogMessageEvent, isMessage: boolean): void {
+ private onRobotLogMessageEvent(runId: string | undefined, event: RobotLogMessageEvent, isMessage: boolean): void {
if (runId === undefined) return;
- const run = this.testRuns.get(runId);
+ const run = this.testRunInfos.get(runId)?.run;
let location: vscode.Location | undefined = undefined;
diff --git a/vscode-client/extension/tsconfig.json b/vscode-client/extension/tsconfig.json
index 17927e2e2..bc77facc8 100644
--- a/vscode-client/extension/tsconfig.json
+++ b/vscode-client/extension/tsconfig.json
@@ -14,7 +14,10 @@
"ES2022",
],
"outDir": "../../out/extension",
- "rootDir": "."
+ "rootDir": ".",
+ "jsx": "react",
+ "jsxFactory": "vscpp",
+ "jsxFragmentFactory": "vscppf"
},
"exclude": [
"../../node_modules",